:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-2: #eef5f2;
  --ink: #14211e;
  --muted: #5a6b66;
  --line: #d8e2dd;
  --brand: #0e7c66;
  --brand-dark: #095746;
  --accent: #d7a545;
  --danger: #9b3d2e;
  --shadow: 0 18px 55px rgba(20, 33, 30, 0.1);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--brand);
}

.btn.primary:hover,
.header-cta:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.btn.text {
  color: var(--brand-dark);
  padding-inline: 4px;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(120deg, rgba(14, 124, 102, 0.08), transparent 55%),
    var(--bg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-copy,
.section-head p,
.split p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.trust-list,
.quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span,
.quality-list span {
  padding: 7px 10px;
  color: var(--brand-dark);
  background: #e5f2ee;
  border: 1px solid #cce2da;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 36px;
  background: linear-gradient(150deg, #ffffff, #e7f2ef);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.battery-shell {
  position: relative;
  height: min(430px, 64vw);
  min-height: 300px;
  overflow: hidden;
  background: #182c28;
  border: 14px solid #30423e;
  border-radius: 8px;
}

.liquid {
  position: absolute;
  inset: 26% 0 0;
  background: linear-gradient(180deg, rgba(35, 188, 151, 0.72), rgba(16, 109, 99, 0.9));
}

.cell-grid {
  position: absolute;
  inset: 54px 44px 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cell-grid span {
  background: linear-gradient(180deg, #d8e2dd, #82948e);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.15);
}

.bms {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 900;
}

.port {
  position: absolute;
  top: 18px;
  right: 34px;
  width: 70px;
  height: 18px;
  background: var(--accent);
  border-radius: 4px;
}

.visual-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.section-head {
  max-width: 850px;
  margin-bottom: 30px;
}

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

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.resource-card,
.cert-card,
.faq-list details,
.lead-form,
.modal-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 33, 30, 0.05);
}

.card,
.resource-card {
  padding: 24px;
}

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

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--brand-dark);
  background: var(--surface-2);
  border-radius: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.compliance-note {
  padding: 18px;
  color: #563223 !important;
  background: #fff4df;
  border: 1px solid #ebd1a6;
  border-radius: 8px;
}

.steps,
.process-list {
  display: grid;
  gap: 14px;
}

.steps div,
.process-list li,
.feature-table div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 50%;
}

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

.feature-table div {
  grid-template-columns: 180px 1fr;
}

.feature-table span,
.process-list span {
  color: var(--muted);
}

.certification {
  background: #17332d;
}

.cert-card {
  max-width: 980px;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background: linear-gradient(135deg, rgba(14, 124, 102, 0.95), rgba(18, 54, 48, 0.96));
  border-color: rgba(255, 255, 255, 0.16);
}

.cert-card p {
  color: rgba(255, 255, 255, 0.82);
}

.cert-card .eyebrow {
  color: #c3efdf;
}

.cert-card .quality-list span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.application {
  border-top: 4px solid var(--brand);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.resources {
  background: var(--surface-2);
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.resource-card .btn {
  margin-top: auto;
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-hero {
  background: linear-gradient(120deg, rgba(14, 124, 102, 0.1), rgba(215, 165, 69, 0.09));
}

.article-layout {
  display: grid;
  justify-items: center;
  padding: clamp(36px, 6vw, 76px) clamp(18px, 4vw, 56px);
}

.article {
  width: min(940px, 100%);
}

.article h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
}

.article h2 {
  margin-top: 36px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.direct-answer {
  padding: 24px;
  margin: 28px 0;
  background: #e7f2ef;
  border: 1px solid #cce2da;
  border-radius: 8px;
}

.direct-answer h2 {
  margin-top: 0;
}

.key-points {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.article table {
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table-wrap th {
  color: var(--brand-dark);
  background: var(--surface-2);
}

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

.certificate-grid figure {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.certificate-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.certificate-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.media-strip figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-2);
}

.media-strip figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.evidence-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 18px;
  height: 18px;
  background: var(--brand);
  -webkit-mask: var(--icon-certificate) center / contain no-repeat;
  mask: var(--icon-certificate) center / contain no-repeat;
}

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

.resource-downloads .resource-card {
  min-height: 190px;
}

.review-box {
  padding: 18px 20px;
  margin-top: 28px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-box strong {
  color: var(--ink);
}

@media (max-width: 760px) {
  .media-strip,
  .evidence-list,
  .resource-downloads {
    grid-template-columns: 1fr;
  }
}

.article th,
.article td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article th {
  color: var(--brand-dark);
  background: var(--surface-2);
}

.article-faq details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.article-cta {
  padding: 28px;
  margin-top: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #16342f);
  border-radius: 8px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.article-cta .btn.primary {
  background: #fff;
  color: var(--brand-dark);
}

.article-grid h2,
.article-grid h3 {
  font-size: 20px;
}

.article-grid a {
  color: var(--brand-dark);
}

.admin-body {
  min-height: 100vh;
  background: #eef5f2;
}

.admin-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 44px);
}

.admin-login,
.admin-app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-login {
  width: min(460px, 100%);
  margin: 8vh auto;
  padding: 30px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.captcha-image {
  min-height: 64px;
}

.captcha-image svg {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-app {
  padding: 24px;
}

.admin-topbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.admin-language-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.admin-lang {
  padding: 9px 14px;
  color: var(--brand-dark);
  background: #eef5f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.admin-lang.active {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.admin-tab {
  padding: 10px 16px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.admin-tab.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.admin-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-list-wrap {
  display: grid;
  align-content: start;
  gap: 12px;
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.upload-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.upload-button input {
  display: none;
}

.admin-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-article-button {
  display: grid;
  gap: 4px;
  padding: 14px;
  text-align: left;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.admin-article-button:hover {
  border-color: var(--brand);
}

.admin-article-button span {
  color: var(--muted);
  font-size: 12px;
}

.admin-editor {
  display: grid;
  gap: 14px;
}

.admin-editor textarea[name="bodyHtml"] {
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.lead-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

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

.lead-rows {
  display: grid;
  gap: 12px;
}

.lead-card {
  padding: 16px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-card h3 {
  margin-bottom: 10px;
}

.lead-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.resource-admin-grid {
  display: grid;
  gap: 14px;
}

.resource-admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-admin-card h3 {
  margin-bottom: 8px;
}

.resource-admin-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.resource-admin-actions {
  display: grid;
  min-width: 180px;
  gap: 10px;
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .lead-admin-grid {
    grid-template-columns: 1fr;
  }

  .resource-admin-card {
    grid-template-columns: 1fr;
  }

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

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #f0f4ef;
}

.lead-form,
.download-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.download-form {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 124, 102, 0.12);
}

.span-2 {
  grid-column: 1 / -1;
}

.privacy,
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-message.success {
  color: var(--brand-dark);
  font-weight: 800;
}

.form-message.error {
  color: var(--danger);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 33, 30, 0.56);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 36px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #13231f;
}

.site-footer strong {
  color: #fff;
}

.site-footer div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer small {
  grid-column: 1 / -1;
}

.site-footer .icp-link {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-header.open .site-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .split,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .feature-table {
    grid-template-columns: 1fr;
  }

  .feature-table div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 46px;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

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

  .lead-form {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Polished public-site theme overrides */
:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-2: #eaf3ef;
  --ink: #10211d;
  --muted: #60716c;
  --line: #d9e4de;
  --brand: #0b7f68;
  --brand-dark: #064c3f;
  --brand-2: #0f9f8a;
  --accent: #c99a3a;
  --accent-soft: #fff4dc;
  --shadow: 0 18px 55px rgba(7, 39, 33, 0.12);
  --shadow-soft: 0 12px 30px rgba(7, 39, 33, 0.08);
}

body {
  background:
    linear-gradient(180deg, rgba(235, 246, 241, 0.9), rgba(244, 247, 244, 0.98) 360px),
    var(--bg);
  font-size: 16px;
}

.site-header {
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(9, 76, 63, 0.06);
}

.brand-mark {
  width: 46px;
  height: 46px;
  background:
    linear-gradient(135deg, #0b7f68, #10b09a);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 10px 20px rgba(11,127,104,.18);
  font-size: 13px;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
}

.site-nav {
  gap: 8px;
  font-size: 14px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--brand-dark);
  background: #edf6f2;
}

.header-cta,
.btn {
  min-height: 44px;
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn.primary,
.header-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 24px rgba(11, 127, 104, .2);
}

.btn.secondary {
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 33, 29, .06);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 72px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 159, 138, .18), transparent 34%),
    linear-gradient(135deg, #f8fbf8 0%, #edf6f2 52%, #f8f4e9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,127,104,.35), transparent);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201,154,58,.13);
}

h1 {
  max-width: 920px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  color: #0b1d19;
}

h2 {
  max-width: 980px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.18;
  color: #10211d;
}

h3 {
  line-height: 1.28;
}

.hero-copy,
.section-head p,
.split p,
.inquiry-copy p {
  max-width: 760px;
  color: #536863;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.82;
}

.trust-list {
  max-width: 760px;
  margin-top: 8px;
}

.trust-list span,
.quality-list span {
  padding: 8px 12px;
  background: rgba(255,255,255,.78);
  border-color: rgba(11,127,104,.18);
  box-shadow: 0 8px 18px rgba(11,127,104,.07);
}

.hero-visual {
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(233,246,241,.92));
  border: 1px solid rgba(11,127,104,.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "XGE Immersion Pack";
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  padding: 6px 10px;
  color: #fff;
  background: rgba(6, 76, 63, .86);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.battery-shell {
  border-width: 12px;
  border-color: #263d37;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #203b35, #10221e);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.liquid {
  background:
    linear-gradient(180deg, rgba(45, 211, 177, .82), rgba(10, 112, 103, .94));
}

.cell-grid span {
  border-radius: 18px;
  background:
    linear-gradient(180deg, #f2f6f4 0%, #a9bbb5 58%, #71847e 100%);
  box-shadow: inset 0 -10px 0 rgba(0,0,0,.13), 0 6px 12px rgba(0,0,0,.12);
}

.bms {
  background: linear-gradient(135deg, var(--accent), #e5bd60);
  color: #2e2106;
  border-radius: 8px;
}

.visual-notes span {
  padding: 8px 6px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(11,127,104,.12);
  border-radius: 8px;
  font-weight: 700;
}

.section-head {
  max-width: 920px;
}

.card,
.resource-card,
.cert-card,
.faq-list details,
.lead-form,
.modal-panel,
.direct-answer {
  border-radius: 12px;
}

.card,
.resource-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(11,127,104,.12);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card::after,
.resource-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: .75;
}

.card:hover,
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11,127,104,.32);
  box-shadow: 0 18px 42px rgba(7,39,33,.13);
}

.icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eaf7f3, #fff7e4);
  border: 1px solid rgba(11,127,104,.12);
  box-shadow: 0 10px 22px rgba(11,127,104,.08);
}

.feature-table div,
.steps div,
.process-list li {
  border-color: rgba(11,127,104,.13);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.feature-table strong {
  color: var(--brand-dark);
}

.feature-table div {
  min-width: 0;
}

.feature-table span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.certification {
  background:
    radial-gradient(circle at 82% 18%, rgba(15,159,138,.26), transparent 32%),
    linear-gradient(135deg, #09241f, #123d35);
}

.cert-card {
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}

.table-wrap {
  box-shadow: var(--shadow-soft);
}

.table-wrap th,
.article th {
  background: linear-gradient(180deg, #edf6f2, #e5f0eb);
}

.table-wrap tr:hover td,
.article tr:hover td {
  background: #fbfdfb;
}

.comparison-section {
  background:
    linear-gradient(180deg, #fff, #f0f6f3);
}

.resources {
  background:
    linear-gradient(180deg, #edf6f2, #f6f8f5);
}

.inquiry-section {
  background:
    linear-gradient(135deg, #0f302a 0%, #0d5145 48%, #f5f0e4 48%, #f5f0e4 100%);
}

.inquiry-copy {
  color: #fff;
}

.inquiry-copy h2,
.inquiry-copy .eyebrow {
  color: #fff;
}

.inquiry-copy p {
  color: rgba(255,255,255,.78);
}

.lead-form {
  border-color: rgba(11,127,104,.15);
  box-shadow: 0 24px 60px rgba(7,39,33,.15);
}

input,
select,
textarea {
  border-color: #d2ded8;
  background: #fbfdfc;
}

.site-footer {
  background:
    linear-gradient(135deg, #0b1d19, #123c35);
  border-top: 1px solid rgba(255,255,255,.08);
}

.article-layout {
  background:
    linear-gradient(180deg, rgba(237,246,242,.88), rgba(255,255,255,0));
}

.article {
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11,127,104,.12);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.article .direct-answer {
  background: linear-gradient(135deg, #e8f6f1, #fff6e2);
}

.certificate-grid figure {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .inquiry-section {
    background: linear-gradient(180deg, #0f302a 0%, #0d5145 36%, #f5f0e4 36%, #f5f0e4 100%);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  h2 {
    font-size: clamp(20px, 5.8vw, 26px);
  }

  .card,
  .resource-card {
    padding: 22px;
  }

  .hero-visual {
    padding: 18px;
  }

  .battery-shell {
    min-height: 260px;
  }
}

/* Icon-rich public UI layer */
:root {
  --icon-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
  --icon-battery: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='18' height='10' rx='2'/%3E%3Cpath d='M22 11v2'/%3E%3Cpath d='M6 11h2'/%3E%3Cpath d='M10 11h2'/%3E%3Cpath d='M14 11h2'/%3E%3C/svg%3E");
  --icon-bolt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l0-7Z'/%3E%3C/svg%3E");
  --icon-droplet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22a7 7 0 0 0 7-7c0-5-7-13-7-13S5 10 5 15a7 7 0 0 0 7 7Z'/%3E%3C/svg%3E");
  --icon-certificate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='m9 15 2 2 4-4'/%3E%3C/svg%3E");
  --icon-settings: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z'/%3E%3Cpath d='M19.4 15a1.7 1.7 0 0 0 .3 1.9l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.7 1.7 0 0 0-1.9-.3 1.7 1.7 0 0 0-1 1.6V21a2 2 0 1 1-4 0v-.1a1.7 1.7 0 0 0-1-1.6 1.7 1.7 0 0 0-1.9.3l-.1.1A2 2 0 1 1 4.2 17l.1-.1a1.7 1.7 0 0 0 .3-1.9 1.7 1.7 0 0 0-1.6-1H3a2 2 0 1 1 0-4h.1a1.7 1.7 0 0 0 1.6-1 1.7 1.7 0 0 0-.3-1.9l-.1-.1A2 2 0 1 1 7 4.2l.1.1a1.7 1.7 0 0 0 1.9.3 1.7 1.7 0 0 0 1-1.6V3a2 2 0 1 1 4 0v.1a1.7 1.7 0 0 0 1 1.6 1.7 1.7 0 0 0 1.9-.3l.1-.1A2 2 0 1 1 19.8 7l-.1.1a1.7 1.7 0 0 0-.3 1.9 1.7 1.7 0 0 0 1.6 1h.1a2 2 0 1 1 0 4H21a1.7 1.7 0 0 0-1.6 1Z'/%3E%3C/svg%3E");
  --icon-book: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5Z'/%3E%3C/svg%3E");
  --icon-send: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E");
  --icon-download: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M12 15V3'/%3E%3C/svg%3E");
  --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.28);
  border-radius: 50%;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav a::before,
.btn::before,
.trust-list span::before,
.quality-list span::before,
.feature-table div::before,
.article-grid .card::before,
.resource-card::before,
.faq-list summary::before,
.lead-form label::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  background: currentColor;
  -webkit-mask: var(--icon-shield) center / contain no-repeat;
  mask: var(--icon-shield) center / contain no-repeat;
}

.site-nav a[href*="products"]::before,
.site-nav a[href*="Products"]::before,
.site-nav a[href="/en/"]::before {
  -webkit-mask-image: var(--icon-battery);
  mask-image: var(--icon-battery);
}

.site-nav a[href*="technology"]::before {
  -webkit-mask-image: var(--icon-droplet);
  mask-image: var(--icon-droplet);
}

.site-nav a[href*="certification"]::before {
  -webkit-mask-image: var(--icon-certificate);
  mask-image: var(--icon-certificate);
}

.site-nav a[href*="custom"]::before {
  -webkit-mask-image: var(--icon-settings);
  mask-image: var(--icon-settings);
}

.site-nav a[href*="articles"]::before,
.site-nav a[href*="resources"]::before,
.site-nav a[href="#resources"]::before {
  -webkit-mask-image: var(--icon-book);
  mask-image: var(--icon-book);
}

.site-nav a[href="#applications"]::before,
.site-nav a[href="/"]::before {
  -webkit-mask-image: var(--icon-arrow);
  mask-image: var(--icon-arrow);
}

.header-cta::before,
.btn.primary::before {
  margin-right: 8px;
  background: currentColor;
  -webkit-mask-image: var(--icon-send);
  mask-image: var(--icon-send);
}

.btn.secondary::before,
.download-btn::before {
  margin-right: 8px;
  -webkit-mask-image: var(--icon-download);
  mask-image: var(--icon-download);
}

.btn.text::before {
  margin-right: 6px;
  -webkit-mask-image: var(--icon-arrow);
  mask-image: var(--icon-arrow);
}

.trust-list span,
.quality-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span:nth-child(1)::before,
.quality-list span:nth-child(1)::before {
  -webkit-mask-image: var(--icon-certificate);
  mask-image: var(--icon-certificate);
}

.trust-list span:nth-child(2)::before,
.quality-list span:nth-child(2)::before {
  -webkit-mask-image: var(--icon-shield);
  mask-image: var(--icon-shield);
}

.trust-list span:nth-child(3)::before,
.quality-list span:nth-child(3)::before {
  -webkit-mask-image: var(--icon-battery);
  mask-image: var(--icon-battery);
}

.trust-list span:nth-child(4)::before,
.quality-list span:nth-child(4)::before {
  -webkit-mask-image: var(--icon-bolt);
  mask-image: var(--icon-bolt);
}

.card .icon {
  color: transparent;
  font-size: 0;
}

.card .icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--brand-dark);
  -webkit-mask: var(--icon-shield) center / contain no-repeat;
  mask: var(--icon-shield) center / contain no-repeat;
}

.card:nth-child(3n + 1) .icon::before {
  -webkit-mask-image: var(--icon-shield);
  mask-image: var(--icon-shield);
}

.card:nth-child(3n + 2) .icon::before {
  -webkit-mask-image: var(--icon-bolt);
  mask-image: var(--icon-bolt);
}

.card:nth-child(3n) .icon::before {
  -webkit-mask-image: var(--icon-certificate);
  mask-image: var(--icon-certificate);
}

.feature-table div {
  position: relative;
  grid-template-columns: 42px minmax(140px, 180px) 1fr;
}

.feature-table div::before {
  width: 34px;
  height: 34px;
  place-self: start;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(11,127,104,.14);
  -webkit-mask: none;
  mask: none;
}

.feature-table div::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-mask: var(--icon-battery) center / contain no-repeat;
  mask: var(--icon-battery) center / contain no-repeat;
}

.feature-table div:nth-child(2)::after,
.feature-table div:nth-child(3)::after {
  -webkit-mask-image: var(--icon-bolt);
  mask-image: var(--icon-bolt);
}

.feature-table div:nth-child(4)::after,
.feature-table div:nth-child(6)::after {
  -webkit-mask-image: var(--icon-settings);
  mask-image: var(--icon-settings);
}

.feature-table div:nth-child(5)::after {
  -webkit-mask-image: var(--icon-certificate);
  mask-image: var(--icon-certificate);
}

.article-grid .card {
  padding-top: 64px;
}

.article-grid .card::before,
.resource-card::before {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 30px;
  height: 30px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 10px;
  -webkit-mask: none;
  mask: none;
}

.article-grid .card::after,
.resource-card::after {
  height: 4px;
}

.card::before,
.card::after,
.resource-card::before,
.resource-card::after,
.article-grid .card h3::before,
.article-grid .card h2::before,
.resource-card h3::before {
  pointer-events: none;
}

.article-grid .card {
  cursor: pointer;
}

.article-grid .card a {
  position: relative;
  z-index: 2;
  display: block;
}

.article-grid .card h3::before,
.article-grid .card h2::before,
.resource-card h3::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 30px;
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-mask: var(--icon-book) center / contain no-repeat;
  mask: var(--icon-book) center / contain no-repeat;
}

.article-grid .card:nth-child(3n + 2) h3::before,
.article-grid .card:nth-child(3n + 2) h2::before {
  -webkit-mask-image: var(--icon-droplet);
  mask-image: var(--icon-droplet);
}

.article-grid .card:nth-child(3n) h3::before,
.article-grid .card:nth-child(3n) h2::before {
  -webkit-mask-image: var(--icon-bolt);
  mask-image: var(--icon-bolt);
}

.resource-card h3::before {
  -webkit-mask-image: var(--icon-download);
  mask-image: var(--icon-download);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

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

.faq-list summary::before {
  width: 26px;
  height: 26px;
  padding: 5px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  -webkit-mask: none;
  mask: none;
}

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.lead-form label {
  position: relative;
  padding-left: 28px;
}

.lead-form label::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--brand);
  -webkit-mask-image: var(--icon-settings);
  mask-image: var(--icon-settings);
}

.lead-form label:nth-of-type(4n + 1)::before {
  -webkit-mask-image: var(--icon-certificate);
  mask-image: var(--icon-certificate);
}

.lead-form label:nth-of-type(4n + 2)::before {
  -webkit-mask-image: var(--icon-send);
  mask-image: var(--icon-send);
}

.lead-form label:nth-of-type(4n + 3)::before {
  -webkit-mask-image: var(--icon-battery);
  mask-image: var(--icon-battery);
}

.lead-form label:nth-of-type(4n)::before {
  -webkit-mask-image: var(--icon-book);
  mask-image: var(--icon-book);
}

@media (max-width: 980px) {
  .feature-table div {
    grid-template-columns: 42px 1fr;
  }

  .feature-table div span {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-nav a::before {
    width: 18px;
    height: 18px;
  }

  .feature-table div {
    grid-template-columns: 38px 1fr;
  }

  .feature-table div::before {
    width: 32px;
    height: 32px;
  }

  .feature-table div::after {
    top: 25px;
    left: 25px;
  }
}

/* Final title scale override */
body h1 {
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.14 !important;
}

body h2 {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.22 !important;
}

body h3 {
  font-size: 18px;
}

@media (max-width: 640px) {
  body h1 {
    font-size: clamp(25px, 7.2vw, 32px) !important;
  }

  body h2 {
    font-size: clamp(20px, 5.8vw, 26px) !important;
  }
}

/* Mobile readability and overflow guard */
img,
video,
iframe,
svg {
  max-width: 100%;
}

.article,
.article *,
.card,
.resource-card,
.section,
.site-header,
.site-footer {
  min-width: 0;
}

.article p,
.article li,
.article td,
.article th,
.card p,
.resource-card p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.article > section {
  max-width: 100%;
  overflow-x: auto;
}

.article table {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  white-space: normal;
}

.article table th,
.article table td,
.table-wrap th,
.table-wrap td {
  min-width: 120px;
}

.table-wrap {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding: 38px 14px;
  }

  .article-layout {
    padding: 22px 12px;
  }

  .article {
    width: 100%;
    padding: 18px 14px;
    border-radius: 10px;
  }

  .article h1 {
    max-width: 100%;
  }

  .direct-answer,
  .article-cta,
  .review-box {
    padding: 18px 14px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn,
  .header-cta {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .table-wrap {
    margin-inline: 0;
    border-radius: 8px;
  }

  .table-wrap table,
  .article table {
    min-width: 620px;
  }

  .article > section > table {
    margin-bottom: 8px;
  }

  .certificate-grid,
  .media-strip,
  .evidence-list,
  .resource-downloads,
  .lead-admin-grid,
  .card-grid,
  .card-grid.three,
  .card-grid.four {
    grid-template-columns: 1fr !important;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 150px;
  }

  .brand small {
    display: none;
  }

  .article {
    padding: 16px 12px;
  }

  .table-wrap table,
  .article table {
    min-width: 560px;
  }
}

/* Content page mobile fit */
.article-layout,
.article,
.article section,
.direct-answer,
.article-cta,
.review-box,
.site-footer > *,
.site-footer a,
.site-footer small {
  max-width: 100%;
}

.article h1,
.article h2,
.article h3,
.article p,
.article li,
.article th,
.article td,
.article .hero-copy,
.direct-answer p,
.site-footer strong,
.site-footer p,
.site-footer small {
  overflow-wrap: anywhere;
  word-break: normal;
}

.article .feature-table {
  min-width: 0;
}

.article .feature-table div {
  min-width: 0;
}

.article .feature-table strong,
.article .feature-table span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article .article-cta .btn {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 760px) {
  .article-layout {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .article {
    overflow: hidden;
  }

  .article section {
    overflow-x: hidden;
  }

  .article section:has(.table-wrap) {
    overflow-x: visible;
  }

  .article .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .article .table-wrap table {
    min-width: 560px;
  }

  .article .feature-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article .feature-table div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .article .feature-table div span {
    grid-column: 2;
  }

  .article .article-cta {
    display: block;
  }

  .article .article-cta .btn {
    display: inline-flex;
  }

  .site-footer {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .article .table-wrap table {
    min-width: 520px;
  }

  .article th,
  .article td,
  .table-wrap th,
  .table-wrap td {
    padding: 11px 10px;
  }
}
