@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter/inter-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter/inter-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter/inter-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter/inter-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/inter/inter-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111318;
  --muted: #616772;
  --line: #e6e8ec;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --night: #171a20;
  --green: #37c775;
  --blue: #2e83ff;
  --amber: #ffb037;
  --shadow: 0 18px 55px rgba(16, 20, 28, 0.14);
  --mobile-top: 64px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.is-menu-open {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.top-strip {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 42px;
  padding: 0 28px 0 10px;
  background: #111318;
  color: #fff;
  font-size: 14px;
  z-index: 30;
}

.top-strip a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.utility-strip {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 18px;
  background: #f5f6f8;
  color: #3b4048;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.utility-strip button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.strip-copy {
  justify-self: center;
  text-align: center;
  font-weight: 600;
}

.icon-btn,
.nav-icon,
.mobile-menu {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-btn {
  width: 32px;
  height: 32px;
  position: relative;
}

.icon-btn span::before,
.icon-btn span::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 8px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.icon-btn span::before {
  transform: rotate(45deg);
}

.icon-btn span::after {
  transform: rotate(-45deg);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 232, 236, 0.72);
  z-index: 25;
}

.nav-bar {
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
}

.brand {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.45vw, 22px);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a {
  padding: 22px 0;
  color: #22262d;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  position: relative;
  min-height: 38px;
  font-size: 13px;
  font-weight: 700;
}

.language-switcher-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.language-switcher-toggle:hover {
  background: #f8f9fb;
}

.language-flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.08);
  flex: 0 0 auto;
}

.language-switcher-caret {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.72;
}

.language-switcher-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.12);
  z-index: 30;
}

.language-switcher-menu li {
  margin: 0;
}

.language-switcher-menu button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-switcher-menu button:hover,
.language-switcher-menu button[aria-selected="true"] {
  background: #f3f6fa;
}

.language-switcher-menu button[aria-selected="true"] {
  font-weight: 800;
}

body.is-rtl {
  direction: rtl;
}

body.is-rtl .nav-bar,
body.is-rtl .hero-actions,
body.is-rtl .nav-actions {
  direction: ltr;
}

body.is-rtl main,
body.is-rtl footer,
body.is-rtl .mega {
  direction: rtl;
}

.nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.nav-icon:hover {
  background: var(--soft);
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  display: none;
  width: 38px;
  height: 38px;
}

.mobile-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  padding: 28px 34px 32px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.site-header.mega-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mega-grid.compact {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.mega-panel {
  display: none;
  max-width: 1220px;
  margin: 0 auto;
  min-height: 230px;
  grid-template-columns: minmax(270px, 0.72fr) 1.28fr;
  align-items: stretch;
  gap: 28px;
}

.mega-panel.active {
  display: grid;
  animation: menuPanelIn 220ms ease both;
}

.mega-copy {
  padding: 22px 0;
}

.mega-copy p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-copy h2 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.mega-copy a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 26px;
}

.mega-columns div {
  padding: 18px 0;
}

.mega-columns strong,
.mega-columns a {
  display: block;
}

.mega-columns strong {
  margin-bottom: 12px;
  color: #171a20;
}

.mega-columns a {
  padding: 9px 0;
  color: var(--muted);
  font-weight: 600;
}

.mega-columns a:hover {
  color: var(--ink);
}

.mega-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 30px;
  padding: 16px 0;
}

.mega-menu-list strong,
.mega-menu-list a {
  display: block;
}

.mega-menu-list strong {
  margin-bottom: 14px;
  color: #171a20;
  font-size: 15px;
}

.mega-menu-list a {
  padding: 10px 0;
  color: #4e5560;
  font-size: 14px;
  font-weight: 700;
}

.mega-menu-list em {
  margin-left: 6px;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.mega-product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 14px;
}

.mega-product {
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fb;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mega-product:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.1);
}

.mega-product .product-visual {
  transform: scale(0.72);
  transform-origin: center;
  margin: -8px auto 0;
}

.mega-product small {
  color: var(--muted);
  line-height: 1.35;
}

.mega-feature {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 230px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f2f5f8, #ffffff);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.mega-feature.cool {
  background: linear-gradient(145deg, #ecf6ff, #ffffff);
}

.mega-feature small {
  max-width: 270px;
  color: var(--muted);
  line-height: 1.45;
}

.mega-item {
  min-height: 150px;
  border: 1px solid var(--line);
  background: #f8f9fb;
  border-radius: 8px;
  padding: 18px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mega-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef5ff;
  color: #246fd8;
  font-size: 10px;
  font-weight: 900;
}

.mega-item:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.1);
}

.mega-item strong,
.mega-item small {
  display: block;
}

.mega-item small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.mega-thumb,
.quick-icon {
  display: inline-block;
}

.mega-thumb {
  width: 88px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef1f5;
  box-shadow: 0 8px 18px rgba(17, 19, 24, 0.08);
}

.mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes menuPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  overflow: hidden;
  background: #dfe5ec;
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(40px, 8vw, 96px);
  background-image: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.74) 32%, rgba(255,255,255,0.08) 68%), var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 680ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide.active .hero-content {
  animation: heroTextIn 620ms ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width: min(620px, 92vw);
}

.hero-content.dark {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,0.42);
}

.hero-slide:nth-child(2) {
  background-image: linear-gradient(90deg, rgba(9, 13, 19, 0.72) 0%, rgba(9,13,19,0.38) 42%, rgba(9,13,19,0.02) 72%), var(--hero-image);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1,
.hero h2.hero-headline {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: none;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  font-synthesis: none;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 460px;
  color: #3e444d;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
}

.dark .hero-copy {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-width: 132px;
  min-height: 46px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.btn.primary {
  color: #fff;
  background: var(--ink);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.btn,
.card-cta,
.product-card,
.deal-card,
.scenario,
.quick-links a {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.card-cta:hover {
  transform: translateY(-2px);
}

.product-card:hover,
.deal-card:hover,
.quick-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.1);
}

.scenario:hover {
  transform: scale(1.01);
}

.hero-controls {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(17, 19, 24, 0.32);
  cursor: pointer;
}

.dot.active {
  background: var(--ink);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: #fff;
  font-weight: 700;
}

.quick-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #222831;
  position: relative;
}

.quick-icon.sale {
  background: linear-gradient(135deg, #ffb037, #fa4e54);
  border-radius: 50%;
}

.quick-icon.station::after,
.quick-icon.house::after,
.quick-icon.plug::after,
.quick-icon.support::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.quick-icon.house {
  background: #37c775;
}

.quick-icon.plug {
  background: #2e83ff;
}

.quick-icon.support {
  background: #7b61ff;
}

.deal-band,
.products,
.membership {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 52px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px 28px;
  max-width: 1220px;
  margin: 0 auto 24px;
}

.section-heading h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  text-align: left;
}

.section-heading .eyebrow {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.section-heading > a {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

.section-heading h2,
.copy-block h2,
.membership h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.deal-grid,
.product-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.deal-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.deal-card,
.product-card {
  min-height: 332px;
  border-radius: 8px;
  background: #f5f6f8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.deal-card.feature {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17,19,24,0.9), rgba(17,19,24,0.34)),
    url("/assets/tuorde/hero-storage.webp") center/cover;
}

.deal-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature p,
.feature span {
  color: rgba(255,255,255,0.82);
}

.deal-card h3,
.product-card h3 {
  margin: 8px 0;
  font-size: 26px;
  line-height: 1.08;
}

.was {
  color: #8d929b;
  text-decoration: line-through;
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.product-visual {
  height: 160px;
  margin: 2px auto 22px;
  position: relative;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
}

.tower {
  width: 96px;
  background: linear-gradient(90deg, #20242b, #606873 55%, #191c22);
  border-radius: 12px;
  box-shadow: 0 22px 36px rgba(0,0,0,0.18);
}

.tower::before {
  inset: 20px 12px auto;
  height: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 34px rgba(255,255,255,0.2), 0 68px rgba(255,255,255,0.18), 0 102px rgba(255,255,255,0.16);
}

.cube,
.mini {
  width: 170px;
  height: 112px;
  margin-top: 36px;
  border-radius: 22px;
  background: linear-gradient(145deg, #4c545f, #16191f);
  box-shadow: 0 20px 34px rgba(0,0,0,0.16);
}

.cube::before,
.mini::before {
  width: 82px;
  height: 42px;
  left: 44px;
  top: 36px;
  border-radius: 6px;
  background: #0d1015;
  box-shadow: inset 0 0 0 7px #2d333b;
}

.mini {
  width: 130px;
  height: 88px;
}

.panel {
  width: 190px;
  height: 116px;
  margin-top: 36px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.2) 1px, transparent 1px),
    linear-gradient(145deg, #1f3349, #101820);
  background-size: 47px 38px, 47px 38px, auto;
  transform: perspective(520px) rotateX(12deg) rotateY(-16deg);
  box-shadow: 0 22px 36px rgba(0,0,0,0.14);
}

.split-showcase {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  background: #111318;
  color: #fff;
}

.copy-block {
  padding: clamp(48px, 7vw, 96px);
  align-self: center;
}

.copy-block p:not(.eyebrow),
.membership p {
  margin: 20px 0 28px;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

.showcase-image {
  min-height: 500px;
  background: url("/assets/tuorde/hero-storage.webp") center/cover;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  min-height: 390px;
  background: #fff;
  border: 1px solid var(--line);
}

.tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #246fd8;
  font-size: 12px;
  font-weight: 800;
}

.product-card button,
.card-cta {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17,19,24,0.82), rgba(17,19,24,0.22)),
    url("/assets/tuorde/hero-storage.webp") center/cover;
}

.page-hero.light {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.5)),
    url("/assets/tuorde/industrial-equipment.webp") center/cover;
}

.page-home-battery .page-hero,
.page-whole-home-backup .page-hero,
.page-product-delta-pro-ultra .page-hero {
  background:
    linear-gradient(90deg, rgba(17,19,24,0.82), rgba(17,19,24,0.2)),
    url("/assets/tuorde/company-profile.webp") center/cover;
}

.page-smart-living .page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17,19,24,0.72), rgba(17,19,24,0.12)),
    url("/assets/tuorde/road-lighting.webp") center/cover;
}

.page-product-solar-generator .page-hero,
.page-article-solar-generator .page-hero,
.page-power-stations .page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.48)),
    url("/assets/tuorde/solar-system.webp") center/cover;
}

.page-article-outage-prep .page-hero,
.page-explore .page-hero {
  background:
    linear-gradient(90deg, rgba(17,19,24,0.78), rgba(17,19,24,0.18)),
    url("/assets/tuorde/core-technology.webp") center/cover;
  color: #fff;
}

.page-product-delta-2-max .page-hero,
.page-scenarios .page-hero,
.page-deals .page-hero {
  background:
    linear-gradient(90deg, rgba(17,19,24,0.74), rgba(17,19,24,0.16)),
    url("/assets/tuorde/industrial-equipment.webp") center/cover;
  color: #fff;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.5;
  color: inherit;
}

.page-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 52px);
}

.page-section.alt {
  background: #f5f6f8;
}

.catalog-grid,
.article-grid,
.spec-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid,
.spec-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.article-card,
.spec-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-card.has-catalog-thumb,
.spec-card.has-catalog-thumb {
  min-height: 332px;
  padding: 0;
  overflow: hidden;
}

.catalog-card-thumb {
  width: 100%;
  height: 180px;
  background: #eef2f5;
  overflow: hidden;
}

.catalog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card.has-catalog-thumb h3,
.spec-card.has-catalog-thumb h3 {
  margin: 0;
  padding: 18px 24px 0;
}

.info-card.has-catalog-thumb p,
.spec-card.has-catalog-thumb p {
  padding: 0 24px 24px;
}

.info-card h3,
.article-card h3,
.spec-card h3 {
  margin: 10px 0;
  font-size: 26px;
}

.info-card p,
.article-card p,
.spec-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  min-height: 620px;
}

.product-gallery {
  display: grid;
  place-items: stretch;
  background: #f5f6f8;
  padding: 0;
  overflow: hidden;
}

.product-gallery .product-visual.image-product.large {
  width: 100%;
  height: 100%;
  min-height: 620px;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-summary {
  padding: clamp(44px, 7vw, 84px);
  align-self: center;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.price-row strong {
  font-size: 32px;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.option-row span {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 18px;
}

.article-body h2 {
  margin-top: 34px;
  font-size: 32px;
}

.article-body p,
.article-body li {
  color: #3d434d;
  line-height: 1.72;
  font-size: 18px;
}

.detail-nav {
  position: sticky;
  top: var(--mobile-top, 64px);
  z-index: 12;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
}

.feature-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.feature-band.dark {
  background: #111318;
  color: #fff;
}

.feature-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.feature-inner.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.dark .feature-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.dark .feature-list span {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}

.mock-screen:not(.image-panel) {
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46,131,255,0.18), transparent 42%),
    linear-gradient(145deg, #f3f5f8, #ffffff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.dark .mock-screen:not(.image-panel) {
  background: linear-gradient(145deg, #242a33, #12161d);
  border-color: rgba(255,255,255,0.12);
}

.mock-screen.image-panel {
  min-height: 360px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dark .mock-screen.image-panel {
  border-color: rgba(255,255,255,0.12);
}

.stats-row {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.stat-cell {
  min-height: 150px;
  padding: 24px;
  background: #fff;
}

.stat-cell strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.stat-cell span {
  color: var(--muted);
  line-height: 1.45;
}

.compare-table {
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > * {
  padding: 18px;
}

.compare-row.head {
  background: #111318;
  color: #fff;
  font-weight: 800;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-hub {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contact-hub-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.inquiry-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.resource-hub {
  margin-top: 0;
}

@media (max-width: 900px) {
  .contact-hub,
  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }
}

.article-callout {
  padding: 24px;
  border-left: 4px solid var(--blue);
  background: #f4f8ff;
  border-radius: 8px;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.seo-breadcrumb a {
  color: #303640;
}

.seo-breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #9aa1ad;
}

.seo-related {
  padding: clamp(46px, 6vw, 72px) clamp(18px, 4vw, 52px);
  background: #f5f6f8;
}

.seo-related-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.seo-related h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seo-related-grid a {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seo-related-grid a:hover {
  border-color: rgba(21, 111, 216, 0.34);
  box-shadow: 0 18px 42px rgba(18, 24, 32, 0.12);
  transform: translateY(-2px);
}

.seo-resource-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8ecf2;
  overflow: hidden;
}

.seo-resource-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seo-resource-card > span:last-child {
  min-height: 64px;
  padding: 14px 16px 16px;
  display: flex;
  align-items: center;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1220px;
  margin: 18px auto 0;
}

.seo-keywords span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #246fd8;
  font-size: 12px;
  font-weight: 800;
}

.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #fff;
}

.scenario {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.scenario::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.62));
}

.scenario span,
.scenario strong {
  position: relative;
}

.scenario span {
  font-weight: 700;
  margin-bottom: 8px;
}

.scenario strong {
  font-size: 30px;
  line-height: 1.04;
}

.scenario.home {
  background-image: url("/assets/tuorde/hero-storage.webp");
}

.scenario.outdoor {
  background-image: url("/assets/tuorde/industrial-equipment.webp");
}

.scenario.work {
  background:
    linear-gradient(135deg, rgba(46,131,255,0.82), rgba(17,19,24,0.72)),
    radial-gradient(circle at 70% 20%, #ffb037, transparent 28%),
    #20242b;
}

.membership {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  align-items: center;
  gap: 32px;
  background: #20242b;
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 42px;
  padding: 54px clamp(18px, 4vw, 52px);
  background: #f5f6f8;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin: 0 0 12px;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-columns strong,
.footer-columns a {
  display: block;
}

.footer-columns strong {
  margin-bottom: 14px;
}

.footer-columns a {
  color: var(--muted);
  margin: 10px 0;
}

.footer-contact-name {
  display: block;
  margin: 10px 0 6px;
  color: var(--ink);
  font-weight: 700;
}

.search-panel {
  position: fixed;
  inset: 0;
  background: rgba(17,19,24,0.48);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 180ms ease;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-box {
  max-width: 760px;
  margin: 80px auto;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.close-search {
  position: absolute;
  top: 16px;
  right: 16px;
}

.search-box label span {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 24px;
}

.recommended-label {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  outline: 0;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.suggestions a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f3f6;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .nav-bar {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 0 18px;
    position: relative;
    z-index: 1;
  }

  .site-header {
    z-index: 26;
  }

  .mobile-menu {
    display: block;
    order: -1;
    position: relative;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-top, 106px);
    z-index: 24;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .nav-actions {
    justify-self: end;
  }

  .mega {
    position: fixed;
    top: var(--mobile-top, 106px);
    bottom: 0;
    overflow: auto;
    padding: 16px;
  }

  .site-header.mega-open .mega {
    display: block;
  }

  .mega-panel.active,
  .mega-columns,
  .mega-grid,
  .mega-grid.compact {
    grid-template-columns: 1fr;
  }

  .mega-panel {
    min-height: 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero-slide {
    padding: 54px 22px;
    align-items: start;
    background-position: center bottom;
  }

  .quick-links {
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .deal-grid,
  .product-grid,
  .scenarios,
  .split-showcase,
  .membership,
  .site-footer,
  .catalog-grid,
  .article-grid,
  .spec-grid,
  .product-detail,
  .seo-related-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .deal-card.feature,
  .split-showcase .copy-block,
  .membership > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .top-strip {
    grid-template-columns: 34px 1fr;
    gap: 6px;
    padding-right: 12px;
  }

  .top-strip a {
    display: none;
  }

  .nav-icon:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-slide {
    background-image: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 45%, rgba(255,255,255,0.05) 78%), var(--hero-image);
  }

  .hero-slide:nth-child(2) {
    background-image: linear-gradient(180deg, rgba(9,13,19,0.78) 0%, rgba(9,13,19,0.5) 42%, rgba(9,13,19,0.08) 80%), var(--hero-image);
  }

  .hero h1,
  .hero h2.hero-headline {
    font-size: clamp(30px, 8.2vw, 42px);
    line-height: 1.14;
  }

  .quick-links {
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .deal-grid,
  .product-grid,
  .scenarios,
  .split-showcase,
  .membership,
  .site-footer,
  .footer-columns,
  .catalog-grid,
  .article-grid,
  .spec-grid,
  .product-detail,
  .seo-related-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    top: var(--mobile-top, 106px);
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .quick-links a {
    min-height: 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading h2,
  .section-heading .eyebrow,
  .section-heading > a {
    grid-column: 1;
    text-align: left;
    justify-self: start;
    white-space: normal;
  }

  .section-heading .eyebrow {
    grid-row: 1;
  }

  .section-heading h2 {
    grid-row: 2;
  }

  .section-heading > a {
    grid-row: 3;
  }

  .section-heading > p:not(.eyebrow) {
    grid-row: 4;
  }

  .split-showcase {
    min-height: 0;
  }

  .showcase-image {
    min-height: 340px;
  }

  .scenario {
    min-height: 320px;
  }

  .search-box {
    margin: 58px 14px;
  }
}

.brand.with-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 182px;
}

.brand.with-logo img {
  width: 118px;
  height: auto;
  display: block;
}

.brand.with-logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.product-visual.image-product,
.image-panel,
.image-tile,
.showcase-image.tuorde-factory {
  background-color: #eef2f5;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17, 19, 24, 0.08);
}

.product-visual.image-product {
  width: min(220px, 70vw);
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 20, 28, 0.12);
}

.product-visual.image-product::before,
.product-visual.image-product::after {
  content: none;
}

.product-visual.image-product.large {
  width: min(480px, 84vw);
  height: min(480px, 84vw);
  margin: 0 auto;
}

.image-product.rept { background-image: url("/assets/tuorde/rept-50ah.jpg"); }
.image-product.telecom { background-image: url("/assets/tuorde/telecom-48v-200ah.jpg"); }
.image-product.cell18650 { background-image: url("/assets/tuorde/cell-18650-2500.jpg"); }
.image-product.agv { background-image: url("/assets/tuorde/agv-battery.jpg"); }
.image-product.storage { background-image: url("/assets/tuorde/power-storage.webp"); }

.image-panel {
  min-height: 390px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel.storage { background-image: url("/assets/tuorde/power-storage.webp"); }
.image-panel.solar { background-image: url("/assets/tuorde/solar-system.webp"); }
.image-panel.industrial { background-image: url("/assets/tuorde/industrial-equipment.webp"); }
.image-panel.medical { background-image: url("/assets/tuorde/medical-beauty-battery.jpg"); }
.image-panel.company { background-image: url("/assets/tuorde/company-profile.webp"); }
.image-panel.factory { background-image: url("/assets/tuorde/manufacturing-base.webp"); }
.image-panel.certification { background-image: url("/assets/tuorde/product-certification.webp"); }
.image-panel.core { background-image: url("/assets/tuorde/core-technology.webp"); }
.image-panel.telecom-bg { background-image: url("/assets/tuorde/telecom-48v-200ah.jpg"); }
.dark .mock-screen.image-panel.telecom-bg { background-image: url("/assets/tuorde/telecom-48v-200ah.jpg"); }
.showcase-image.tuorde-factory { background-image: url("/assets/tuorde/manufacturing-base.webp"); }

.mega-feature.image-feature {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  isolation: isolate;
}

.mega-feature.image-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.62));
  z-index: -1;
}

.mega-feature.image-feature small {
  color: rgba(255,255,255,0.86);
}

.mega-feature.industrial { background-image: url("/assets/tuorde/industrial-equipment.webp"); }
.mega-feature.core { background-image: url("/assets/tuorde/core-technology.webp"); }

.image-tile {
  min-height: 300px;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.72));
  z-index: -1;
}

.image-tile h3,
.image-tile p {
  margin: 0;
}

.image-tile h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.05;
}

.image-tile p {
  margin-top: 10px;
  color: rgba(255,255,255,0.86);
  line-height: 1.5;
}

.image-tile.industrial { background-image: url("/assets/tuorde/industrial-equipment.webp"); }
.image-tile.road { background-image: url("/assets/tuorde/road-lighting.webp"); }
.image-tile.storage { background-image: url("/assets/tuorde/power-storage.webp"); }
.image-tile.solar { background-image: url("/assets/tuorde/solar-system.webp"); }
.image-tile.robot { background-image: url("/assets/tuorde/robot-battery.webp"); }
.image-tile.uav { background-image: url("/assets/tuorde/uav-battery.webp"); }

.scenario.industrial { background-image: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.62)), url("/assets/tuorde/industrial-equipment.webp"); }
.scenario.road { background-image: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.62)), url("/assets/tuorde/road-lighting.webp"); }
.scenario.storage { background-image: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.62)), url("/assets/tuorde/power-storage.webp"); }

body.page-home-battery .page-hero,
body.page-whole-home-backup .page-hero,
body.page-product-delta-pro-ultra .page-hero,
body.page-smart-living .page-hero,
body.page-product-solar-generator .page-hero,
body.page-article-solar-generator .page-hero,
body.page-power-stations .page-hero,
body.page-article-outage-prep .page-hero,
body.page-explore .page-hero,
body.page-product-delta-2-max .page-hero,
body.page-scenarios .page-hero,
body.page-deals .page-hero {
  background-image: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.5)), url("/assets/tuorde/hero-cell.webp");
}

body.page-scenarios .page-hero.dark,
body.page-deals .page-hero.dark {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.66), rgba(0,0,0,0.24)), url("/assets/tuorde/hero-storage.webp");
}

.contact-table .compare-row span {
  overflow-wrap: anywhere;
}

.contact-whatsapp-row .contact-qr-cell img {
  display: block;
  width: 168px;
  height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1024px) {
  .brand.with-logo {
    min-width: auto;
  }

  .brand.with-logo img {
    width: 106px;
  }
}

@media (max-width: 680px) {
  .product-visual.image-product {
    height: 150px;
  }

  .product-visual.image-product.large {
    width: 100%;
    height: auto;
    min-height: 320px;
    aspect-ratio: 1 / 1;
  }

  .product-gallery .product-visual.image-product.large {
    min-height: 360px;
  }

  .image-panel {
    min-height: 260px;
  }

  .image-tile {
    min-height: 240px;
  }
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card,
.article-card img,
.article-detail img {
  max-width: 100%;
}

.article-card {
  width: auto;
  min-width: 0;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-detail {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 96px) clamp(22px, 5vw, 48px);
  overflow-x: hidden;
}

.article-detail > header,
.article-detail > figure,
.article-detail > aside,
.article-detail > section,
.article-detail > footer,
.article-detail > .article-inline-links,
.article-detail > .article-tags {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.article-detail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.product-detail {
  overflow-x: hidden;
}

.product-gallery,
.product-summary {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 680px) {
  .product-detail {
    width: 100%;
  }
}

.mega-product-strip {
  align-items: stretch;
}

.mega-product {
  grid-template-rows: 118px auto auto;
  justify-items: center;
  align-content: center;
}

.mega-product .product-visual.image-product {
  width: 128px;
  height: 108px;
  margin: 0 auto;
  transform: none;
  align-self: center;
  justify-self: center;
  box-shadow: 0 10px 24px rgba(16, 20, 28, 0.1);
}

.mega-product strong,
.mega-product small {
  max-width: 100%;
  overflow-wrap: anywhere;
}


















/* Blog 30 articles */
.blog-toolbar,
.blog-pagination {
  max-width: 1220px;
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-toolbar button,
.blog-pagination button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.blog-toolbar button.active,
.blog-pagination button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.blog-card[hidden] {
  display: none;
}

.article-card.blog-card {
  padding: 0;
  min-height: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-card.blog-card img {
  height: 200px;
  border-radius: 8px 8px 0 0;
}

.article-card.blog-card span {
  display: block;
  margin: 16px 20px 0;
  color: #246fd8;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-card.blog-card h3 {
  margin: 10px 20px 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card.blog-card p {
  margin: 10px 20px 20px;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blog .blog-toolbar {
  margin: 0 auto 24px;
}

.blog-pagination {
  margin-top: 28px;
  justify-content: center;
}

.article-media {
  margin: 28px 0;
}

.article-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.article-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.article-callout ul {
  margin-bottom: 0;
}

.article-faq {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-faq dt {
  font-weight: 850;
}

.article-faq dd {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.article-inline-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-inline-links div a,
.article-tags span {
  border-radius: 999px;
  padding: 8px 12px;
  background: #eef5ff;
  color: #246fd8;
  font-weight: 850;
  font-size: 13px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

[dir="rtl"] .seo-breadcrumb,
[dir="rtl"] .article-detail {
  text-align: right;
}

@media (max-width: 760px) {
  .blog-toolbar,
  .blog-pagination {
    justify-content: flex-start;
  }

  .blog-toolbar button,
  .blog-pagination button {
    flex: 0 0 auto;
  }
}

.tldr-callout {
  border-left: 4px solid #246fd8;
  background: #f4f8ff;
}

.tldr-callout p {
  margin: 8px 0 0;
  line-height: 1.65;
}

.article-media.inline {
  margin: 24px 0;
}

.article-media.hero img {
  max-height: 520px;
  object-fit: cover;
}
