@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-800.woff2") format("woff2");
}

:root {
  --ink: #0b1117;
  --muted: #65717d;
  --line: #dfe5ea;
  --panel: #f5f8fa;
  --white: #ffffff;
  --cyan: #00b8e6;
  --teal: #00d0b4;
  --green: #70c843;
  --orange: #f5a524;
  --shadow: 0 22px 70px rgba(13, 25, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input {
  font: inherit;
}

.promo {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 8px 18px;
  color: #fff;
  background: #05080c;
  font-size: 14px;
  font-weight: 600;
}

.promo a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 45;
  display: grid;
  grid-template-columns: 260px 1fr 290px;
  align-items: center;
  min-height: 84px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 31, 43, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(12, 24, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.site-header .brand-logo {
  width: 210px;
  height: 69px;
}

.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.9) 43% 57%, transparent 58%),
    linear-gradient(135deg, var(--teal), var(--cyan) 55%, var(--green));
  box-shadow: inset 0 -8px 14px rgba(3, 39, 53, 0.18);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 23px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  position: relative;
  z-index: 5;
}

.language-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(11, 17, 23, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(12, 24, 34, 0.06);
}

.language-toggle::after {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.flag-icon {
  display: block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(11, 17, 23, 0.08);
  flex: 0 0 18px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(11, 17, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.language-menu a:hover {
  background: var(--panel);
}

.site-header .button {
  color: #fff;
  background: var(--ink);
}

.icon-button,
.menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
}

.icon-button:hover {
  background: var(--panel);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 108px);
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background: #02070d;
}

.hero-track,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 0 clamp(22px, 6vw, 94px);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 13, 0.78) 0%, rgba(3, 8, 13, 0.52) 36%, rgba(3, 8, 13, 0.07) 68%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease, transform 1.3s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  max-width: 620px;
  padding-top: 12vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.button.tiny {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
  box-shadow: none;
}

.button.primary {
  color: #071018;
  background: #fff;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-controls {
  position: absolute;
  right: clamp(24px, 6vw, 94px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 48px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 26px auto 0;
  padding: 0 clamp(18px, 5vw, 72px);
}

.category-strip a {
  min-height: 116px;
  padding: 28px;
  background: var(--panel);
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-strip a:hover {
  background: #eaf3f7;
  transform: translateY(-2px);
}

.category-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-strip strong {
  font-size: clamp(18px, 2vw, 26px);
}

.section {
  padding: 94px clamp(18px, 5vw, 72px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2,
.feature-copy h2,
.story-card h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.tab {
  min-width: 74px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.tab.is-active {
  color: #fff;
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(12, 23, 31, 0.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  height: 280px;
  object-fit: cover;
}

.product-copy {
  padding: 24px;
}

.product-copy p {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.product-copy h3 {
  min-height: 58px;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.15;
}

.product-copy span {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 36px clamp(18px, 5vw, 72px) 96px;
}

.feature-media img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-copy p:not(.eyebrow) {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.specs div {
  padding: 22px 18px;
  background: var(--panel);
}

.specs dt {
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: 850;
}

.specs dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.calculator {
  background: #eef5f7;
}

.calc-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
}

.appliance-list,
.runtime-card {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(13, 25, 35, 0.08);
}

.appliance-list {
  display: grid;
  gap: 12px;
}

.appliance-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
}

.appliance-list span {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.runtime-card label {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--cyan);
}

.runtime-value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 18px;
}

.runtime-value strong {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
}

.runtime-value span {
  color: var(--cyan);
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 850;
  line-height: 0.95;
}

#loadValue {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.split-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 96px clamp(18px, 5vw, 72px) 0;
}

.story-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}

.story-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 13, 0.1), rgba(4, 9, 13, 0.78));
  content: "";
}

.story-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-card:hover img {
  transform: scale(1.045);
}

.story-card div {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.why-card span {
  color: var(--cyan);
  font-weight: 850;
}

.why-card h3 {
  margin: 58px 0 14px;
  font-size: 28px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  color: #c8d2dc;
  background: #05080c;
}

.footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #8d98a4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: end;
  gap: 20px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 160px clamp(18px, 5vw, 72px) 72px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 13, 0.8), rgba(3, 8, 13, 0.35), rgba(3, 8, 13, 0.08)),
    var(--page-image);
  background-position: center;
  background-size: cover;
}

.page-hero h1,
.page-hero p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.page-hero.compact {
  min-height: 390px;
}

.page-hero-inner {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.page-hero h1 {
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.page-hero .eyebrow,
.breadcrumb {
  overflow-wrap: anywhere;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.content-band {
  padding: 86px clamp(18px, 5vw, 72px);
}

.content-band.alt {
  background: var(--panel);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.lead-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04;
}

.lead-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.detail-nav {
  position: sticky;
  top: 108px;
  z-index: 30;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.metric {
  min-width: 0;
  min-height: 150px;
  padding: 28px;
  background: #fff;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-tile,
.spec-table,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-tile {
  min-height: 250px;
  padding: 28px;
}

.feature-tile span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.feature-tile h3 {
  font-size: 25px;
}

.feature-tile p,
.faq-item p {
  color: var(--muted);
  line-height: 1.62;
}

.spec-table {
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  padding: 18px 22px;
}

.spec-row dt {
  color: var(--muted);
  font-weight: 800;
}

.spec-row dd {
  font-weight: 800;
}

.two-col.padded {
  margin-top: 42px;
}

.seo-copy {
  padding: 34px clamp(20px, 6vw, 92px) 80px;
  background: #fff;
}

.seo-copy > div {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.seo-copy h2 {
  color: var(--ink);
  font-size: 24px;
}

.list-hero {
  padding: 86px clamp(18px, 5vw, 72px) 0;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}

.solution-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.solution-card:hover img {
  transform: scale(1.04);
}

.solution-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 9, 13, 0.06), rgba(4, 9, 13, 0.8));
}

.solution-card div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.solution-card h3 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

.solution-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 26px;
}

.faq-item h3 {
  margin-bottom: 12px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.support-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.support-card h3 {
  margin-top: 42px;
}

.support-card p {
  color: var(--muted);
  line-height: 1.58;
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.notice-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.seo-answer {
  border-top: 1px solid var(--line);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(12, 23, 31, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-card-copy span,
.article-meta {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-copy h3 {
  min-height: 86px;
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.blog-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 76px clamp(18px, 5vw, 72px);
}

.article-body {
  min-width: 0;
  max-width: 900px;
}

.article-body figure {
  margin: 0 0 34px;
}

.article-body figure img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.article-body h3 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.article-body p,
.article-body li {
  color: #34404b;
  font-size: 17px;
  line-height: 1.82;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--panel);
  font-weight: 850;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-aside {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.aside-box,
.article-cta,
.rich-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.aside-box,
.article-cta {
  padding: 24px;
}

.aside-box h3,
.article-cta h3 {
  margin-bottom: 14px;
}

.aside-box a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.aside-box a:last-child {
  border-bottom: 0;
}

.rich-note {
  margin: 30px 0;
  padding: 22px;
  background: #f8fbfc;
}

.rich-note p {
  margin: 0;
}

.article-cta {
  margin-top: 36px;
  color: #fff;
  background: var(--ink);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-cta .button {
  color: var(--ink);
  background: #fff;
}

[data-lang-content][hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 22px;
  }

  .site-header .brand-logo {
    width: 148px;
    height: 49px;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-list-grid,
  .support-grid,
  .blog-grid,
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band,
  .calc-shell,
  .two-col,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .feature-copy {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .promo {
    gap: 12px;
    font-size: 12px;
  }

  .promo span {
    display: none;
  }

  .site-header {
    top: 38px;
    min-height: 60px;
    grid-template-columns: 1fr auto;
  }

  .site-header .brand-logo {
    width: 132px;
    height: 44px;
  }

  .menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 22px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 15px 0;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 70px;
    display: flex;
    transform: translateY(-50%);
  }

  .header-actions .button {
    display: none;
  }

  .language-toggle {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .language-toggle span {
    display: none;
  }

  .language-menu {
    right: -6px;
  }

  .hero {
    height: 76svh;
    min-height: 590px;
  }

  .hero-slide {
    align-items: end;
    padding-bottom: 92px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 13, 0.08) 0%, rgba(3, 8, 13, 0.82) 64%),
      var(--hero-image-mobile, var(--hero-image));
    background-position: center;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .category-strip,
  .product-grid,
  .split-gallery,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .category-strip {
    margin-top: 14px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-head {
    display: block;
  }

  .tabs {
    margin-top: 22px;
    overflow-x: auto;
  }

  .product-card {
    min-height: 0;
  }

  .page-hero {
    min-height: 500px;
    padding-top: 120px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 13, 0.18), rgba(3, 8, 13, 0.88)),
      var(--page-image-mobile, var(--page-image));
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .detail-nav {
    top: 98px;
  }

  .product-list-grid,
  .solution-grid,
  .feature-grid,
  .blog-grid,
  .metric-row,
  .faq-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 430px;
  }

  .feature-band {
    padding-bottom: 70px;
  }

  .specs {
    grid-template-columns: 1fr;
  }

  .runtime-value {
    display: block;
  }

  .runtime-value span {
    display: block;
    margin-top: 14px;
  }

  .story-card {
    min-height: 460px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

.inquiry-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.case-grid {
  display: grid;
  gap: 28px;
}

.case-card {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.case-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.case-copy ul {
  margin: 12px 0 18px;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .case-card {
    grid-template-columns: 1fr;
  }
}

.contact-whatsapp {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  max-width: 220px;
}

.contact-whatsapp img {
  display: block;
  width: 168px;
  height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
