/* Jimei Electric — ocean blue B2B design system */
:root {
  --ocean-950: #031525;
  --ocean-900: #062640;
  --ocean-800: #0a3a5c;
  --ocean-700: #0e5278;
  --ocean-600: #1474a8;
  --ocean-500: #1b8fc9;
  --ocean-400: #3aade0;
  --ocean-300: #7cccef;
  --ocean-200: #b8e4f7;
  --ocean-100: #e6f6fc;
  --ocean-50: #f3fbfe;
  --plasma-950: #06281a;
  --plasma-900: #0a3824;
  --plasma-800: #0d4a32;
  --plasma-700: #127a4c;
  --plasma-600: #1a9a5c;
  --plasma-500: #22b36a;
  --plasma-400: #4fd18a;
  --plasma-300: #8ad9ae;
  --plasma-200: #b8ebcf;
  --plasma-100: #e3f8ec;
  --plasma-50: #f2fbf6;
  --ozone-900: #2a2850;
  --ozone-800: #3f3c6e;
  --ozone-700: #56528f;
  --ozone-600: #6c66a9;
  --ozone-500: #8179bd;
  --ozone-400: #a49cd6;
  --ozone-300: #c4beea;
  --ozone-200: #ddd8f5;
  --ozone-100: #ebe8f8;
  --ozone-50: #f6f4fc;
  --glow: rgba(58, 173, 224, 0.45);
  --ink: #0b1c2c;
  --muted: #5a7388;
  --surface: #ffffff;
  --line: rgba(20, 116, 168, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px rgba(3, 21, 37, 0.12);
  --shadow-glow: 0 0 40px rgba(58, 173, 224, 0.25);
  --max: 1200px;
  --nav-h: 72px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(58, 173, 224, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(20, 116, 168, 0.12), transparent 55%),
    linear-gradient(180deg, var(--ocean-50) 0%, #fff 40%, var(--ocean-50) 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ocean-600);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
}

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

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(3, 21, 37, 0.78);
  border-bottom: 1px solid rgba(124, 204, 239, 0.15);
  box-shadow: 0 8px 32px rgba(3, 21, 37, 0.25);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  color: #fff;
}

.logo-mark {
  width: 77px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: visible;
}

.logo-mark img {
  width: 77px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  align-items: center;
  line-height: 1.15;
  /* Align with blue M band (~11px–56px within 64px mark), not the leaf above */
  margin-top: 6px;
}

.logo-text span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ocean-300);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-links .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--ocean-200);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

@media (min-width: 1100px) {
  .nav-links a,
  .nav-links .nav-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.nav-links a:hover,
.nav-links .nav-btn:hover,
.nav-links a:focus-visible,
.nav-links .nav-btn:focus-visible {
  color: #fff;
  background: rgba(58, 173, 224, 0.12);
  outline: none;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--ocean-400), var(--ocean-600)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 20px rgba(27, 143, 201, 0.4);
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(6, 38, 64, 0.96);
  border: 1px solid rgba(124, 204, 239, 0.2);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s var(--ease);
  list-style: none;
  margin: 0;
}

.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a,
.dropdown button[data-lang] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ocean-200);
  font-size: 13px;
  font-weight: 600;
  text-align: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.dropdown a:hover,
.dropdown button[data-lang]:hover,
.dropdown button[data-lang]:focus-visible {
  background: rgba(58, 173, 224, 0.15);
  color: #fff;
}

.dropdown button[data-lang][aria-pressed="true"] {
  background: rgba(27, 143, 201, 0.28);
  color: #fff;
}

.lang-dropdown {
  min-width: 148px;
}

html[dir="rtl"] .lang-dropdown {
  left: auto;
  right: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(124, 204, 239, 0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  overflow: hidden;
  color: #fff;
}

.hero-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: kenburns 14s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(3, 21, 37, 0.88) 0%, rgba(6, 38, 64, 0.55) 48%, rgba(3, 21, 37, 0.35) 100%),
    radial-gradient(600px 400px at 70% 40%, rgba(58, 173, 224, 0.22), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(124, 204, 239, 0.35);
  background: rgba(27, 143, 201, 0.15);
  color: var(--ocean-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-400);
  box-shadow: 0 0 12px var(--glow);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 540px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ocean-200);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--ocean-400);
  box-shadow: 0 0 10px var(--glow);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--ocean-300), var(--ocean-500) 40%, var(--ocean-600));
  color: var(--ocean-950);
  box-shadow: 0 10px 30px rgba(58, 173, 224, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(184, 228, 247, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots button[aria-selected="true"] {
  background: var(--ocean-300);
  box-shadow: 0 0 12px var(--glow);
}

.hero-glow {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 50%;
  height: 60%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle, rgba(58, 173, 224, 0.35), transparent 65%);
  animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-4%, -6%);
  }
}

/* —— Sections —— */
.section {
  padding: 88px 0;
  position: relative;
}

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--ocean-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 12px;
  display: block;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ocean-950);
  background: none;
  box-shadow: none;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(230, 246, 252, 0.7));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 32px calc(64px + 3em);
  align-items: stretch;
}

.about-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  height: 100%;
}

.about-copy {
  width: 100%;
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
  text-align-last: left;
  word-break: break-word;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-meta {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cert-badges {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.cert-badges li {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  color: var(--ocean-800);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.cert-badges li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ocean-500);
  transform: translateY(-50%);
  opacity: 0.85;
}

.about-qms {
  margin: 0;
  font-size: 17px;
  color: var(--ocean-800);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.about-capacity {
  list-style: none;
  margin: 36px 0 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border-radius: 18px;
  background: linear-gradient(
    165deg,
    rgba(214, 238, 248, 0.85) 0%,
    rgba(230, 246, 252, 0.7) 45%,
    rgba(243, 251, 254, 0.9) 100%
  );
  outline: 1px solid rgba(20, 116, 168, 0.1);
  box-shadow: none;
}

.about-capacity li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
  padding: 18px 12px 16px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 250, 0.92) 100%);
  border: 1px solid rgba(20, 116, 168, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 22px rgba(3, 21, 37, 0.08),
    0 2px 6px rgba(20, 116, 168, 0.08);
  transform: translateY(0);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.about-capacity li:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 143, 201, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 32px rgba(3, 21, 37, 0.12),
    0 4px 12px rgba(20, 116, 168, 0.14);
}

.about-capacity strong {
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ocean-800);
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-capacity span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .about-capacity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-capacity li {
    padding: 16px 12px;
  }
}

@media (max-width: 520px) {
  .about-capacity {
    grid-template-columns: 1fr;
  }
}

/* Right: photo top (3) + panel bottom (1) → panel ≈ 1/3 of photo */
.about-aside {
  display: grid;
  grid-template-rows: 3fr 1fr;
  gap: 12px;
  min-width: 0;
  min-height: 480px;
  height: 100%;
  align-self: stretch;
}

.about-photo {
  position: relative;
  margin: 0;
  min-height: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(3, 21, 37, 0.08);
  background: var(--ocean-950);
}

.about-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ocean-200);
  background: linear-gradient(transparent, rgba(3, 21, 37, 0.82));
  text-align: center;
}

.about-panel {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ocean-800), var(--ocean-950));
  color: var(--ocean-100);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: 10px;
  align-items: center;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}

.about-panel-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}

.about-panel h3 {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.2;
  color: #fff;
}

.about-panel p {
  margin: 0;
  color: var(--ocean-200);
  font-size: 11px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-panel ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.about-panel li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 11px;
  color: var(--ocean-200);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-panel li::before {
  content: "";
  margin-top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ocean-400);
  box-shadow: 0 0 8px var(--glow);
  flex-shrink: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.about-stats-panel {
  margin: 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.about-stats-panel .stat {
  padding: 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  white-space: nowrap;
}

.about-stats-panel .stat strong {
  display: inline;
  color: var(--ocean-300);
  font-size: 1.55rem;
}

.about-stats-panel .stat span {
  display: inline;
  color: var(--ocean-200);
  font-size: 0.95rem;
}

.stat {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.04);
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ocean-600);
  line-height: 1.1;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

/* Strength / capabilities gallery */
.strength {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(58, 173, 224, 0.1), transparent 55%),
    linear-gradient(180deg, var(--ocean-50) 0%, #fff 42%, var(--ocean-50) 100%);
  border-top: 1px solid var(--line);
}

.strength-block {
  margin-top: 2cm;
}

.strength-block:first-of-type {
  margin-top: 8px;
}

.strength-block-head {
  margin: 0 0 18px;
}

.strength-block-head h3 {
  margin: 0 0 6px;
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.strength-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.strength-certs {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
}

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

.strength-facility {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
  margin-inline: auto;
  width: 100%;
}

.strength-facility-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strength-facility-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean-600);
}


.strength-facility-sub {
  margin: -4px 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

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

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

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

.strength-tile-grid + .strength-tile-grid {
  margin-top: 12px;
}

.strength-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.strength-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #e8f0f5;
  outline: 1px solid rgba(20, 116, 168, 0.1);
}

.strength-tile figcaption {
  margin: 0;
  padding: 0 2px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ocean-700);
  text-align: center;
}

@media (max-width: 900px) {
  .strength-tile-grid--3,
  .strength-tile-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .strength-tile-grid--3,
  .strength-tile-grid--4 {
    grid-template-columns: 1fr;
  }
}

.strength-facility-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strength-facility-stack .strength-shot {
  width: 100%;
}

.strength-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  outline: 1px solid rgba(20, 116, 168, 0.12);
  box-shadow: 0 10px 28px rgba(3, 21, 37, 0.06);
}

.strength-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.strength-facility-stack .strength-shot img,
.strength-certs .strength-shot--wide img,
.strength-shot--team img {
  /* Sharper resampling for text-heavy composites */
  image-rendering: -webkit-optimize-contrast;
}

.strength-shot--cert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(165deg, #0e5278 0%, #1474a8 55%, #3aade0 100%);
  padding: 18px 18px 14px;
}

.strength-shot--cert img {
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(3, 21, 37, 0.28);
}

.strength-shot--cert figcaption {
  margin: 12px 0 0;
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.strength-shot--team {
  max-width: 820px;
  margin-inline: auto;
}

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

  .strength-gallery {
    grid-template-columns: 1fr;
  }

  .strength-shot--cert {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

/* Clients */
.clients {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 36px;
  align-items: stretch;
}

.client-logo-grid li,
.client-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 69px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--ocean-50) 100%);
  box-shadow: 0 6px 16px rgba(3, 21, 37, 0.06);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.client-logo-grid li:hover,
.client-brand:hover {
  border-color: rgba(27, 143, 201, 0.28);
  box-shadow: 0 10px 22px rgba(20, 116, 168, 0.1);
  transform: translateY(-3px);
}

.client-brand span {
  font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}

.client-brand--midea {
  background: linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
}
.client-brand--midea span { color: #0077c8; }

.client-brand--haier {
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
}
.client-brand--haier span { color: #0055a5; }

.client-brand--tcl {
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}
.client-brand--tcl span { color: #e60012; }

.client-brand--meiling {
  background: linear-gradient(180deg, #fff 0%, #f5f9f7 100%);
}
.client-brand--meiling span { color: #008a5b; }

.client-brand--bear {
  background: linear-gradient(180deg, #fff 0%, #fff9f2 100%);
}
.client-brand--bear span { color: #e87722; }

.client-brand--donlim {
  background: linear-gradient(180deg, #fff 0%, #fff7f5 100%);
}
.client-brand--donlim span { color: #e53935; }

.client-brand--airmate {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.client-brand--airmate span { color: #1b4f9c; }

.client-brand--kinte {
  background: linear-gradient(180deg, #fff 0%, #f3f7fb 100%);
}
.client-brand--kinte span { color: #1a4b8c; }

.client-brand--lianbai {
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
.client-brand--lianbai span { color: #243b53; }

.client-brand--kennede {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.client-brand--kennede span { color: #1e5aa8; }

.client-brand--yuto {
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
}
.client-brand--yuto span { color: #0b5cab; }

.client-brand--honorsta {
  background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}
.client-brand--honorsta span { color: #b8860b; }

.client-logo-grid img {
  width: 100%;
  max-width: 148px;
  height: 42px;
  object-fit: contain;
  display: block;
}

/* Scenarios */
.scenarios {
  background: #fff;
}

.scenario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 2cm;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.scenario:last-child {
  margin-bottom: 0;
}

.scenario:hover {
  border-color: var(--line);
  background: var(--ocean-50);
  box-shadow: var(--shadow);
}

.scenario:nth-child(even) {
  direction: rtl;
}

.scenario:nth-child(even) > * {
  direction: ltr;
}

.scenario-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(3, 21, 37, 0.12);
}

.scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.scenario:hover .scenario-media img {
  transform: scale(1.04);
}

.scenario-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 21, 37, 0.25));
  pointer-events: none;
}

.scenario-copy .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(27, 143, 201, 0.1);
  color: var(--ocean-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scenario-copy h3 {
  margin: 0 0 16px;
  display: block;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 0 0 12px;
  border-radius: 0;
  border-bottom: 3px solid var(--ocean-300);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--ocean-900);
  background: none;
  box-shadow: none;
}

.scenario-copy h4 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ocean-700);
}

.scenario-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.scenario-apps-short {
  font-size: 1.08rem !important;
  font-weight: 600;
  color: var(--ocean-800) !important;
  letter-spacing: 0.02em;
}

.scenario-apps-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.scenario-apps-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1em;
}

.scenario-apps-caption p {
  margin: 0;
}

.scenario-apps-caption .scenario-apps-short {
  margin: 0;
}

.scenario-apps-caption [data-i18n="sc1.stats"] {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.scenario-apps-side-lead {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scenario-apps-side-lead p {
  margin: 0;
}

.scenario-apps-side-lead [data-i18n="sc1.stats"] {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.scenario-highlight {
  margin: 0 0 14px !important;
  padding: 0;
  border-left: none;
  background: none;
  color: var(--ocean-700) !important;
  font-weight: 600;
  font-size: 0.98rem !important;
}

.scenario-copy ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.scenario-copy li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.scenario-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-500);
}

.scenario-ion,
.scenario-plasma,
.scenario-ozone {
  direction: ltr;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: stretch;
  padding: 28px 28px 44px;
  margin-bottom: 2cm;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  border-bottom: 1px solid transparent;
}

.scenario-ion {
  background: linear-gradient(
    165deg,
    rgba(230, 246, 252, 0.92) 0%,
    rgba(243, 251, 254, 0.55) 42%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-color: rgba(184, 228, 247, 0.55);
}

.scenario-plasma {
  background: linear-gradient(
    165deg,
    rgba(227, 248, 236, 0.92) 0%,
    rgba(242, 251, 246, 0.55) 42%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-color: rgba(167, 225, 190, 0.5);
}

.scenario-ozone {
  background: linear-gradient(
    165deg,
    rgba(235, 232, 248, 0.92) 0%,
    rgba(246, 244, 252, 0.55) 42%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-color: rgba(196, 188, 230, 0.5);
}

.scenario-ion:hover,
.scenario-plasma:hover,
.scenario-ozone:hover {
  box-shadow: none;
}

.scenario-ion .scenario-copy,
.scenario-plasma .scenario-copy,
.scenario-ozone .scenario-copy {
  padding: 18px 20px;
  border-radius: 14px;
}

.scenario-ion .scenario-copy {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 228, 247, 0.45);
}

.scenario-plasma .scenario-copy {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(167, 225, 190, 0.4);
}

.scenario-ozone .scenario-copy {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 188, 230, 0.4);
}

.scenario-ion-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.scenario-ion .scenario-media,
.scenario-plasma .scenario-media,
.scenario-ozone .scenario-media {
  flex: none;
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.06);
}

.scenario-ion .scenario-media.scenario-media-soft,
.scenario-plasma .scenario-media.scenario-media-soft,
.scenario-ozone .scenario-media.scenario-media-soft {
  width: 80%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.6em;
  align-self: center;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 18px rgba(3, 21, 37, 0.05);
}

.scenario-ion .scenario-copy,
.scenario-plasma .scenario-copy,
.scenario-ozone .scenario-copy {
  min-width: 0;
}

.scenario-ion .scenario-forest,
.scenario-ion .scenario-apps-block,
.scenario-ion .scenario-spec-block,
.scenario-plasma .scenario-forest,
.scenario-plasma .scenario-apps-block,
.scenario-plasma .scenario-spec-block,
.scenario-plasma .scenario-plasma-compare,
.scenario-ozone .scenario-apps-block,
.scenario-ozone .scenario-spec-block,
.scenario-ozone .scenario-ozone-about {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.scenario-ion .scenario-copy h3 {
  border-bottom-color: var(--ocean-400);
  color: var(--ocean-900);
}

.scenario-plasma .scenario-copy h3 {
  border-bottom-color: var(--plasma-400);
  color: var(--plasma-800);
  background: none;
  box-shadow: none;
}

.scenario-plasma .scenario-copy h4 {
  color: var(--plasma-700);
}

.scenario-plasma .scenario-highlight {
  border-left: none;
  background: none;
  color: var(--plasma-700) !important;
}

.scenario-plasma .scenario-copy li::before {
  background: var(--plasma-500);
}

.scenario-plasma-keywords {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--plasma-800);
  letter-spacing: 0.01em;
}

.scenario-plasma-compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  border-top: none;
}

.scenario-plasma-safety {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.scenario-plasma-qa {
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
  line-height: 1.6;
}

.scenario-plasma-qa strong {
  color: var(--plasma-800);
  font-size: 1rem;
}

.scenario-plasma-qa span {
  color: var(--plasma-700);
  font-weight: 600;
}

.scenario-plasma-safety > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.scenario-plasma-diff-title {
  margin: 40px 0 0;
  display: block;
  align-self: stretch;
  padding: 0 0 8px;
  border-radius: 0;
  background: none;
  color: var(--plasma-800) !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  border-bottom: 1px solid var(--plasma-100);
}

.scenario-plasma-diff-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
}

.scenario-plasma-diff-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

/* Align 功能对比 copy with AC/DC card content below */
.scenario-plasma .scenario-plasma-diff-card:last-child {
  padding-left: calc(14px + 2em);
  padding-right: 14px;
}

.scenario-plasma .scenario-apps-side {
  margin-left: 2em;
}

.scenario-plasma-diff-card h5 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--plasma-700);
  letter-spacing: 0.04em;
}

.scenario-plasma-diff-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
}

.scenario-plasma-diff-card p:last-child {
  margin-bottom: 0;
}

.scenario-plasma-pick {
  margin-top: 12px !important;
  padding: 0 !important;
  border-radius: 0;
  background: none !important;
  border: none !important;
  font-weight: 700 !important;
  color: var(--plasma-800) !important;
}

.scenario-plasma .scenario-apps-intro {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.scenario-plasma .scenario-apps-intro span,
.scenario-plasma .scenario-apps-intro strong {
  color: var(--plasma-800);
}

.scenario-plasma .scenario-apps-intro strong {
  color: var(--ink);
  opacity: 0.9;
}

.scenario-plasma .scenario-spec-card {
  border: none;
  border-left: none;
  background: transparent;
  padding: 0;
}

.scenario-plasma .scenario-spec-card h4 {
  border-bottom-color: var(--plasma-100);
  color: var(--plasma-800);
}

.scenario-plasma .scenario-spec-kind {
  color: var(--plasma-600);
}

.scenario-plasma .scenario-spec-card dd {
  color: var(--plasma-800);
}

.scenario-plasma .scenario-spec-notes {
  background: transparent;
  border: none;
  padding: 0;
}

.scenario-plasma .scenario-spec-notes h4 {
  color: var(--plasma-800);
}

.scenario-plasma .scenario-spec-notes li::marker {
  color: var(--plasma-600);
}

.scenario-plasma .scenario-apps-ranges {
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, rgba(232, 245, 233, 0.55), rgba(248, 252, 248, 0.35));
  border-color: var(--plasma-100, rgba(76, 175, 80, 0.18));
}

.scenario-plasma .scenario-apps-notes {
  background: #f7faf7;
  border-color: rgba(90, 115, 100, 0.12);
}

.scenario-plasma-copy-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
  margin-top: 20px;
}

.scenario-plasma-copy-row .scenario-apps-intro {
  margin: 0;
  max-width: none;
  align-self: start;
}

.scenario-plasma-copy-row .scenario-apps-notes {
  margin: 0;
  align-self: start;
}

.scenario-plasma-copy-row .scenario-apps-notes h4 {
  margin-top: 0;
}

/* Ozone — quieter surfaces, ocean family */
.scenario-ozone .scenario-copy h3 {
  border-bottom-color: var(--ozone-400);
  color: var(--ozone-800);
  background: none;
  box-shadow: none;
}

.scenario-ozone .scenario-copy h4 {
  color: var(--ozone-700);
  margin-left: 0;
}

.scenario-ozone .scenario-copy > p:not(.scenario-highlight),
.scenario-ozone .scenario-copy > .scenario-ozone-traits {
  margin-left: 3rem !important;
  padding-left: 0 !important;
}

.scenario-ozone .scenario-highlight {
  border-left: none;
  background: none;
  color: var(--ozone-700) !important;
  margin-left: 0;
}

.scenario-ozone-traits {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px 14px !important;
}

.scenario-ozone-traits li {
  margin: 0;
  padding: 0 !important;
  text-indent: 0;
  text-align: left;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--ocean-800) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  line-height: 1.4;
}

.scenario-ozone-traits li::before {
  display: none !important;
}

.scenario-ozone-traits li:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--ocean-300);
  font-weight: 400;
}

.scenario-ozone-about {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 0;
  border-top: none;
}

.scenario-ozone-about-title {
  margin: 0;
  display: block;
  padding: 0 0 8px;
  border-radius: 0;
  background: none;
  color: var(--ocean-900) !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  border-bottom: 1px solid var(--ocean-100);
}

.scenario-ozone-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.scenario-ozone-about-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.scenario-ozone-about-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
}

.scenario-ozone-about-card p:last-child {
  margin-bottom: 0;
}

.scenario-ozone-notes {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.scenario-ozone-notes h5 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ocean-800);
}

.scenario-ozone-notes ol {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink);
}

.scenario-ozone-notes li::marker {
  font-weight: 700;
  color: var(--ocean-600);
}

.scenario-ozone .scenario-apps-block {
  gap: 72px;
  align-items: stretch;
}

.scenario-ozone .scenario-apps-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  justify-content: flex-start;
  align-self: stretch;
  height: 100%;
}

.scenario-ozone .scenario-apps-ranges {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.scenario-ozone .scenario-apps-ranges .scenario-spec-card {
  padding: 10px 12px;
}

.scenario-ozone .scenario-apps-ranges .scenario-spec-card dl > div {
  font-size: 0.8rem;
  gap: 2px 8px;
}

.scenario-ozone .scenario-apps-intro {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}

.scenario-ozone .scenario-apps-intro span {
  color: var(--ocean-800);
}

.scenario-ozone .scenario-apps-intro strong {
  color: var(--ink);
}

.scenario-ozone .scenario-ozone-side-visual {
  margin: 0;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.scenario-ozone .scenario-ozone-side-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.scenario-ozone .scenario-spec-card {
  border: none;
  border-left: none;
  background: transparent;
  padding: 0;
}

.scenario-ozone .scenario-spec-card h4 {
  border-bottom-color: var(--ocean-100);
  color: var(--ocean-800);
}

.scenario-ozone .scenario-spec-kind {
  color: var(--ocean-600);
}

.scenario-ozone .scenario-spec-card dd {
  color: var(--ocean-900);
}

.scenario-ozone .scenario-spec-notes,
.scenario-ozone .scenario-ozone-apps-panel {
  background: transparent;
  border: none;
  padding: 0;
}

.scenario-ozone .scenario-spec-notes h4,
.scenario-ozone .scenario-ozone-apps-panel h4 {
  color: var(--ocean-800);
}

.scenario-ozone-app-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.scenario-ozone-app-list li {
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ocean-800);
}

.scenario-ozone-app-list li:not(:last-child)::after {
  content: "·";
  margin-left: 16px;
  color: var(--ocean-300);
  font-weight: 400;
}

.scenario-ozone .scenario-spec-block {
  border-top: none;
  padding-top: 0;
}



.scenario-spec-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 0;
  border-top: none;
}

.scenario-spec-ranges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.scenario-spec-card {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  border: none;
  box-shadow: none;
}

.scenario-spec-card h4 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ocean-800);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.scenario-spec-kind {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ocean-600);
}

.scenario-spec-card dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.scenario-spec-card dl > div {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) 1fr;
  gap: 8px 16px;
  align-items: baseline;
  font-size: 0.9rem;
  line-height: 1.5;
}

.scenario-spec-card dt {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.scenario-spec-card dd {
  margin: 0;
  font-weight: 700;
  color: var(--ocean-900);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.scenario-spec-bottom {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: start;
}

.scenario-spec-bottom:has(> :only-child) {
  grid-template-columns: 1fr;
}

.scenario-spec-notes {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.scenario-spec-notes h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean-800);
}

.scenario-spec-notes ol {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink);
}

.scenario-spec-notes li::marker {
  font-weight: 700;
  color: var(--ocean-600);
}

.scenario-spec-visual {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
  border: none;
}

.scenario-spec-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
}

.scenario-spec-visual--solid {
  min-height: 120px;
  max-height: 160px;
  background: var(--ocean-500);
  border: none;
}

.scenario-apps-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 40px;
  max-width: none;
  padding-bottom: 0;
}

.scenario-ion .scenario-apps-block {
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "media side"
    "intro intro";
  align-items: start;
  column-gap: calc(36px + 2em);
  row-gap: 36px;
}

.scenario-ion .scenario-apps-media {
  grid-area: media;
}

.scenario-ion .scenario-apps-side {
  grid-area: side;
}

.scenario-ion .scenario-apps-intro {
  grid-area: intro;
  margin-top: -3em;
}

.scenario-ion .scenario-apps-media {
  grid-area: media;
  height: auto;
  min-height: 0;
  justify-content: flex-start;
  gap: 0;
}

.scenario-ion .scenario-apps-grid {
  width: 100%;
  max-width: none;
  margin: 0;
}

.scenario-ion .scenario-apps-caption {
  margin-top: 1.2em;
  padding-top: 0;
  max-width: none;
}

.scenario-ion .scenario-apps-side {
  height: auto;
  justify-content: flex-start;
  gap: 28px;
}

.scenario-apps-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  padding: 4px 0 0;
}

.scenario-apps-intro {
  margin: 0;
  max-width: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.85;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--ocean-50) 0%, #fff 70%);
  border: 1px solid var(--ocean-100);
  border-left: 3px solid var(--ocean-500);
  box-shadow: none;
}

.scenario-apps-intro span {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ocean-800);
  letter-spacing: 0.01em;
}

.scenario-apps-intro strong {
  display: block;
  margin-top: 12px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--muted);
}

.scenario-ion .scenario-apps-intro {
  display: block;
  line-height: 1.75;
}

.scenario-ion .scenario-apps-intro > [data-i18n="sc1.apps.lead1"] {
  display: block;
  margin-bottom: 6px;
}

.scenario-ion .scenario-apps-intro-line {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean-800);
  line-height: 1.7;
}

.scenario-ion .scenario-apps-intro-line span,
.scenario-ion .scenario-apps-intro-line strong {
  display: inline;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
}

.scenario-ion .scenario-apps-intro-line strong {
  font-weight: 500;
  color: var(--muted);
}

.scenario-apps-notes {
  max-width: none;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7fafc;
  border: 1px solid rgba(90, 115, 136, 0.12);
}

.scenario-apps-notes h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--ocean-800);
}

.scenario-apps-notes ol {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  gap: 6px;
  color: var(--ink);
}

.scenario-apps-ranges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: none;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(230, 246, 252, 0.65), rgba(243, 251, 254, 0.35));
  border: 1px solid var(--ocean-100);
}

.scenario-apps-ranges .scenario-spec-card {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 228, 247, 0.55);
}

.scenario-apps-ranges .scenario-spec-card dl > div {
  grid-template-columns: minmax(4.5rem, auto) 1fr;
  font-size: 0.82rem;
  gap: 4px 10px;
}

.scenario-apps-ranges .scenario-spec-card h4 {
  font-size: 0.88rem;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom-color: var(--ocean-100);
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.scenario-apps-ranges .scenario-spec-card dd {
  color: var(--ocean-800);
}

.scenario-apps-grid {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: #fff;
}

.scenario-apps-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.scenario-apps-labels {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
}

.scenario-apps-labels li {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 12px;
}

.scenario-apps-labels span {
  display: inline-block;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(10, 58, 92, 0.78);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(3, 21, 37, 0.18);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .scenario-apps-labels li {
    padding: 6px 7px;
  }

  .scenario-apps-labels span {
    padding: 3px 7px;
    font-size: 10px;
  }
}

.scenario-forest {
  margin: 0;
  max-width: none;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: #fff;
}

.scenario-ion {
  border-bottom: none;
  margin-bottom: 2cm;
  padding-bottom: 24px;
}

.scenario-forest-bridge {
  margin: 0 0 2cm;
}

.scenario-forest-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.scenario-forest img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center 55%;
}

.scenario-forest-overlays {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 10px 14px;
  pointer-events: none;
  text-align: center;
}

.scenario-forest-stat,
.scenario-forest-slogan {
  margin: 0;
  max-width: min(92%, 42rem);
  line-height: 1.35;
}

.scenario-forest-stat {
  padding: 0.28em 0.75em;
  border-radius: 999px;
  background: rgba(55, 140, 195, 0.94);
  color: #fff;
  font-size: clamp(11px, 1.55vw, 14px);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(3, 21, 37, 0.25);
  box-shadow: 0 4px 14px rgba(3, 21, 37, 0.12);
}

.scenario-forest-slogan {
  padding: 0.4em 0.85em;
  border-radius: 12px;
  background: rgba(214, 236, 186, 0.96);
  color: #1f6b3c;
  font-size: clamp(15px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 2px #fff,
    0 1px 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(20, 60, 30, 0.12);
}

.scenario-forest figcaption {
  display: block;
  padding: 10px 0 0;
  background: none;
}

.scenario-forest figcaption strong {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.scenario-apps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.scenario-apps figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.scenario-apps img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: none;
  outline: none;
}

.scenario-hv-module {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  padding: 28px 28px 36px;
  margin-bottom: 2cm;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167, 225, 190, 0.55);
  background: linear-gradient(
    165deg,
    rgba(227, 248, 236, 0.95) 0%,
    rgba(242, 251, 246, 0.55) 45%,
    rgba(255, 255, 255, 0.4) 100%
  );
  direction: ltr;
}

.scenario-hv-module:hover {
  background: linear-gradient(
    165deg,
    rgba(227, 248, 236, 0.98) 0%,
    rgba(242, 251, 246, 0.65) 45%,
    rgba(255, 255, 255, 0.5) 100%
  );
  box-shadow: none;
}

.scenario-hv-module-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.scenario-hv-module-head h3 {
  margin: 0;
  padding: 0 0 12px;
  width: 100%;
  text-align: left;
  border-bottom: 3px solid var(--plasma-400);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--plasma-800);
}

.scenario-hv-module-head .scenario-highlight {
  margin: 0 !important;
  align-self: flex-start;
  text-align: left;
  color: var(--plasma-700) !important;
  font-weight: 700 !important;
}

.scenario-hv-module-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.scenario-hv-module .scenario-copy {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(167, 225, 190, 0.4);
}

.scenario-hv-module .scenario-copy h4 {
  color: var(--plasma-700);
}

.scenario-hv-apps {
  margin-top: 8px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.scenario-hv-apps span {
  display: block;
  font-weight: 700;
  color: var(--plasma-800);
}

.scenario-hv-apps strong {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  color: var(--ink);
}

.scenario-hv-ranges {
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, rgba(232, 245, 233, 0.7), rgba(248, 252, 248, 0.4));
  border-color: rgba(167, 225, 190, 0.45);
}

.scenario-hv-ranges .scenario-spec-card h4 {
  color: var(--plasma-800);
  border-bottom-color: rgba(167, 225, 190, 0.55);
}

.scenario-hv-ranges .scenario-spec-kind {
  color: var(--plasma-600);
}

.scenario-hv-ranges .scenario-spec-card dd {
  color: var(--plasma-800);
}

.scenario-hv-pack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 28px 28px 36px;
  margin-bottom: 2cm;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 228, 247, 0.55);
  background: linear-gradient(
    165deg,
    rgba(230, 246, 252, 0.95) 0%,
    rgba(243, 251, 254, 0.55) 45%,
    rgba(255, 255, 255, 0.4) 100%
  );
  direction: ltr;
}

.scenario-hv-pack:hover {
  box-shadow: none;
}

.scenario-hv-pack .scenario-hv-module-head h3 {
  border-bottom-color: var(--ocean-400);
  color: var(--ocean-900);
}

.scenario-hv-pack .scenario-hv-module-head .scenario-highlight {
  color: var(--ocean-700) !important;
}

.scenario-hv-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.scenario-hv-pack-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 228, 247, 0.5);
}

.scenario-hv-pack-card h4 {
  margin: 0;
  padding: 0 0 8px;
  border-bottom: 2px solid var(--ocean-200);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ocean-900);
}

.scenario-hv-pack-card h5 {
  margin: 6px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ocean-700);
}

.scenario-hv-pack-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
}

.scenario-hv-pack-use,
.scenario-hv-pack-features {
  color: var(--ocean-800) !important;
  font-weight: 600 !important;
}

.scenario-hv-pack-models {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.scenario-hv-pack-models li {
  position: relative;
  padding: 8px 10px 8px 14px;
  border-radius: 8px;
  background: rgba(230, 246, 252, 0.65);
  border-left: 3px solid var(--ocean-400);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink);
}

.scenario-hv-wire {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 28px 28px 36px;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167, 225, 190, 0.5);
  background: linear-gradient(
    165deg,
    rgba(227, 248, 236, 0.95) 0%,
    rgba(242, 251, 246, 0.55) 45%,
    rgba(255, 255, 255, 0.4) 100%
  );
  direction: ltr;
}

.scenario-hv-wire:hover {
  box-shadow: none;
}

.scenario-hv-wire .scenario-hv-module-head h3 {
  border-bottom-color: var(--plasma-400);
  color: var(--plasma-800);
}

.scenario-hv-wire .scenario-hv-module-head .scenario-highlight {
  color: var(--plasma-700) !important;
}

.scenario-hv-wire-body {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(167, 225, 190, 0.4);
  text-align: left;
}

.scenario-hv-wire-body .scenario-hv-wire-lead {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--plasma-800);
  font-weight: 600;
}

.scenario-hv-wire-body p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 500;
}

.scenario-hv-wire-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.scenario-hv-wire-body li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.scenario-hv-wire-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plasma-500);
}

.scenario-accessory-grid-1 {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.scenario-accessory {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}

.scenario-accessory-banner {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 220px;
  box-shadow: 0 12px 32px rgba(3, 21, 37, 0.1);
}

.scenario-accessory-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.scenario-accessory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.scenario-acc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  min-height: 100%;
}

.scenario-acc .tag {
  align-self: flex-start;
}

.scenario-acc h3 {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 3px solid transparent;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--ocean-900);
}

.scenario-acc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.scenario-acc ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.scenario-acc li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.5;
}

.scenario-acc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-500);
}

.scenario-acc-module {
  background: linear-gradient(
    165deg,
    rgba(235, 232, 248, 0.95) 0%,
    rgba(246, 244, 252, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border-color: rgba(196, 188, 230, 0.5);
}

.scenario-acc-module h3 {
  border-bottom-color: var(--ozone-400);
  color: var(--ozone-800);
}

.scenario-acc-module li::before {
  background: var(--ozone-500);
}

.scenario-acc-pack {
  background: linear-gradient(
    165deg,
    rgba(230, 246, 252, 0.95) 0%,
    rgba(243, 251, 254, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border-color: rgba(184, 228, 247, 0.55);
}

.scenario-acc-pack h3 {
  border-bottom-color: var(--ocean-400);
  color: var(--ocean-900);
}

.scenario-acc-wire {
  background: linear-gradient(
    165deg,
    rgba(227, 248, 236, 0.95) 0%,
    rgba(242, 251, 246, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border-color: rgba(167, 225, 190, 0.5);
}

.scenario-acc-wire h3 {
  border-bottom-color: var(--plasma-400);
  color: var(--plasma-800);
}

.scenario-acc-wire li::before {
  background: var(--plasma-500);
}

/* Products */
.products {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(58, 173, 224, 0.1), transparent 60%),
    var(--ocean-50);
}

.products-intro {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}

.products .products-head {
  flex: 0 1 auto;
  min-width: 0;
  max-width: none;
  margin-bottom: 0;
  padding-top: 4px;
}

.products .products-head h2 {
  margin-bottom: 0;
}


.products .product-lifestyle {
  flex: 0 0 auto;
  width: 168px;
  margin: 0 0 0 1.5cm;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(120, 210, 80, 0.85);
  background: #fff;
  box-shadow: 0 8px 20px rgba(3, 21, 37, 0.06);
}

.products .product-lifestyle img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  object-position: center 40%;
}

.product-category {
  margin-bottom: 3.5cm;
}

.product-category:last-child {
  margin-bottom: 0;
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}

.category-head h3 {
  margin: 0;
  display: inline-block;
  min-width: min(100%, 12rem);
  padding: 10px 22px 10px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: #fff;
  background: linear-gradient(90deg, var(--ocean-700) 0%, var(--ocean-500) 78%, var(--ocean-400));
  box-shadow: 0 6px 16px rgba(20, 116, 168, 0.16);
}

.category-head a {
  color: var(--ocean-500);
  font-size: 14px;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 88px;
  row-gap: calc(88px * 3 / 4);
  align-items: stretch;
}

/* Atmosphere panel: same outer chrome as product cards; image fills the frame */
.product-lifestyle-tile {
  position: relative;
  margin: 0;
  align-self: stretch;
  display: block;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 116, 168, 0.16);
  background: #e8f6fc;
  box-shadow: 0 8px 28px rgba(3, 21, 37, 0.05);
}

.product-lifestyle-tile-media {
  position: absolute;
  inset: 0;
}

.product-lifestyle-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-lifestyle-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 28px 16px 14px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(3, 21, 37, 0.45));
}

.product-lifestyle-tile figcaption strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(3, 21, 37, 0.35);
}

.product-lifestyle-tile--span3 {
  grid-column: 1 / -1;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(20, 116, 168, 0.16);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(3, 21, 37, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 173, 224, 0.45);
  box-shadow: 0 18px 40px rgba(20, 116, 168, 0.15), var(--shadow-glow);
}

/* Layout direction is controlled per card via product-card--image-left / --text-left */

/* Explicit layout overrides (beat row rhythm) */
@media (min-width: 641px) {
  .product-card.product-card--text-left {
    flex-direction: row-reverse;
  }

  .product-card.product-card--image-left {
    flex-direction: row;
  }

  .product-card.product-card--text-left .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(20, 116, 168, 0.55) 0%,
      rgba(58, 173, 224, 0.38) 22%,
      rgba(58, 173, 224, 0.16) 55%,
      rgba(58, 173, 224, 0.06) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(20, 116, 168, 0.28),
      0 -1px 0 rgba(124, 204, 239, 0.2);
  }

  .product-card.product-card--image-left .product-visual.has-photo::after {
    background: linear-gradient(
      90deg,
      rgba(20, 116, 168, 0.55) 0%,
      rgba(58, 173, 224, 0.38) 22%,
      rgba(58, 173, 224, 0.16) 55%,
      rgba(58, 173, 224, 0.06) 100%
    );
    box-shadow:
      inset 3px 0 0 rgba(20, 116, 168, 0.28),
      0 -1px 0 rgba(124, 204, 239, 0.2);
  }
}

.product-visual {
  flex: 1.25 1 0;
  width: 0;
  min-width: 220px;
  min-height: 260px;
  align-self: stretch;
  background:
    linear-gradient(145deg, var(--ocean-800), var(--ocean-600) 50%, var(--ocean-400));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.product-visual.has-photo {
  background: #fff;
}

.product-visual.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px 8px;
  transition: transform 0.45s var(--ease);
}

.product-card:hover .product-visual.has-photo img {
  transform: scale(1.03);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(3, 21, 37, 0.25), transparent 50%);
}

.product-visual.has-photo::before {
  display: none;
}

/* Soft blue edge on bottom + bottom-left corner for depth */
.product-visual.has-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(20, 116, 168, 0.55) 0%,
    rgba(58, 173, 224, 0.38) 22%,
    rgba(58, 173, 224, 0.16) 55%,
    rgba(58, 173, 224, 0.06) 100%
  );
  box-shadow:
    inset 3px 0 0 rgba(20, 116, 168, 0.28),
    0 -1px 0 rgba(124, 204, 239, 0.2);
}

.product-card:hover .product-visual.has-photo img {
  transform: scale(1.03);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(3, 21, 37, 0.25), transparent 50%);
}

.product-visual.has-photo::before {
  display: none;
}

.product-visual span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}

/* Spec list inside standard product cards */
.product-specs {
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}

.product-specs > div {
  display: grid;
  grid-template-columns: 5.2em minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-specs dt {
  margin: 0;
  color: var(--ocean-300);
  font-weight: 700;
  white-space: nowrap;
}

.product-specs dd {
  margin: 0;
  color: #fff;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.product-use {
  margin: 0 0 10px !important;
  min-height: 0 !important;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px !important;
  font-weight: 600;
  color: var(--ocean-200) !important;
  line-height: 1.4 !important;
}

.product-body {
  position: relative;
  z-index: 1;
  flex: 0.85 1 0;
  width: 0;
  min-width: 0;
  align-self: stretch;
  padding: 18px 18px 20px;
  background:
    linear-gradient(145deg, var(--ocean-800), var(--ocean-600) 50%, var(--ocean-400));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.product-body h4,
.product-seo-title {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}

.product-name {
  margin: 0 0 12px !important;
  min-height: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  color: var(--ocean-200) !important;
  line-height: 1.35 !important;
  opacity: 0.92;
}

.product-body p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ocean-200);
  min-height: 0;
  line-height: 1.45;
}

/* Ion + plasma: slightly larger product photos (~0.5cm) */
#cat-ion .product-visual.has-photo img,
#cat-plasma .product-visual.has-photo img,
#cat-hv-module .product-visual.has-photo img,
#cat-hv-pack .product-visual.has-photo img {
  padding: 4px 2px;
}

/* Plasma catalog: calm ink-jade panel (no corner glare) */
#cat-plasma .category-head h3 {
  background: linear-gradient(92deg, #0c2e24 0%, #155a42 55%, #1f7a58 100%);
  box-shadow: 0 6px 16px rgba(10, 36, 28, 0.2);
}

#cat-plasma .category-head a {
  color: #1a7a54;
}

#cat-plasma .product-card {
  border-color: rgba(26, 107, 74, 0.2);
  background: #fff;
  box-shadow:
    0 8px 28px rgba(10, 36, 28, 0.05),
    0 0 0 1px rgba(36, 149, 103, 0.04);
}

#cat-plasma .product-lifestyle-tile {
  border-color: rgba(26, 107, 74, 0.18);
  background: #eef7f2;
}

#cat-plasma .product-card:hover {
  border-color: rgba(36, 149, 103, 0.42);
  box-shadow:
    0 18px 42px rgba(10, 36, 28, 0.12),
    0 0 28px rgba(64, 180, 125, 0.1);
}

#cat-plasma .product-body {
  background: linear-gradient(
    165deg,
    #0c2e24 0%,
    #134836 42%,
    #1a6b4a 78%,
    #20825a 100%
  );
  box-shadow: none;
}

#cat-plasma .product-body::before,
#cat-plasma .product-body::after {
  content: none;
  display: none;
}

#cat-plasma .product-visual:not(.has-photo) {
  background: linear-gradient(165deg, #0c2e24 0%, #1a6b4a 55%, #20825a 100%);
}

#cat-plasma .product-specs dt {
  color: rgba(186, 230, 205, 0.88);
}

#cat-plasma .product-use {
  color: rgba(236, 250, 242, 0.96) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#cat-plasma .product-name {
  color: rgba(198, 236, 216, 0.95) !important;
}

#cat-plasma .product-body p {
  color: rgba(198, 236, 216, 0.95);
}

#cat-plasma .product-visual.has-photo::after {
  background: linear-gradient(
    90deg,
    rgba(6, 22, 17, 0.55) 0%,
    rgba(18, 79, 56, 0.36) 28%,
    rgba(46, 160, 110, 0.16) 62%,
    rgba(160, 230, 190, 0.08) 100%
  );
  box-shadow:
    inset 3px 0 0 rgba(15, 67, 50, 0.32),
    0 -1px 0 rgba(160, 230, 190, 0.18);
}

@media (min-width: 961px) {
  #cat-plasma .product-card:nth-child(n + 7) .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(6, 22, 17, 0.55) 0%,
      rgba(18, 79, 56, 0.36) 28%,
      rgba(46, 160, 110, 0.16) 62%,
      rgba(160, 230, 190, 0.08) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(15, 67, 50, 0.32),
      0 -1px 0 rgba(160, 230, 190, 0.18);
  }
}

@media (min-width: 641px) {
  #cat-plasma .product-card.product-card--text-left .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(6, 22, 17, 0.55) 0%,
      rgba(18, 79, 56, 0.36) 28%,
      rgba(46, 160, 110, 0.16) 62%,
      rgba(160, 230, 190, 0.08) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(15, 67, 50, 0.32),
      0 -1px 0 rgba(160, 230, 190, 0.18);
  }

  #cat-plasma .product-card.product-card--image-left .product-visual.has-photo::after {
    background: linear-gradient(
      90deg,
      rgba(6, 22, 17, 0.55) 0%,
      rgba(18, 79, 56, 0.36) 28%,
      rgba(46, 160, 110, 0.16) 62%,
      rgba(160, 230, 190, 0.08) 100%
    );
    box-shadow:
      inset 3px 0 0 rgba(15, 67, 50, 0.32),
      0 -1px 0 rgba(160, 230, 190, 0.18);
  }
}

/* Ozone catalog: soft mid navy (藏青) panel */
#cat-ozone .category-head h3 {
  background: linear-gradient(92deg, #243968 0%, #355686 55%, #4a6fa0 100%);
  box-shadow: 0 6px 16px rgba(36, 57, 104, 0.16);
}

#cat-ozone .category-head a {
  color: #5a7eb0;
}

#cat-ozone .product-card {
  border-color: rgba(74, 111, 160, 0.2);
  background: #fff;
  box-shadow:
    0 8px 28px rgba(36, 57, 104, 0.04),
    0 0 0 1px rgba(74, 111, 160, 0.03);
}

#cat-ozone .product-card:hover {
  border-color: rgba(90, 126, 176, 0.38);
  box-shadow:
    0 18px 42px rgba(36, 57, 104, 0.1),
    0 0 28px rgba(90, 126, 176, 0.08);
}

#cat-ozone .product-body {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #2a4572 0%,
    #355686 38%,
    #456896 72%,
    #5a7eb0 100%
  );
  box-shadow: none;
}

#cat-ozone .product-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(140, 168, 210, 0.18) 50%,
    rgba(180, 200, 230, 0.28) 100%
  );
}

#cat-ozone .product-body::after {
  content: none;
  display: none;
}

#cat-ozone .product-body > * {
  position: relative;
  z-index: 1;
}

#cat-ozone .product-visual:not(.has-photo) {
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(180, 200, 230, 0.24) 100%
    ),
    linear-gradient(160deg, #2a4572 0%, #456896 55%, #5a7eb0 100%);
}

#cat-ozone .product-specs dt {
  color: rgba(210, 224, 242, 0.92);
}

#cat-ozone .product-use {
  color: rgba(245, 248, 252, 0.96) !important;
  background: rgba(255, 255, 255, 0.14);
}

#cat-ozone .product-name {
  color: rgba(220, 230, 244, 0.95) !important;
}

#cat-ozone .product-body p {
  color: rgba(220, 230, 244, 0.95);
}

#cat-ozone .product-visual.has-photo::after {
  background: linear-gradient(
    90deg,
    rgba(42, 69, 114, 0.42) 0%,
    rgba(69, 104, 150, 0.26) 28%,
    rgba(90, 126, 176, 0.12) 62%,
    rgba(210, 224, 242, 0.06) 100%
  );
  box-shadow:
    inset 3px 0 0 rgba(53, 86, 134, 0.22),
    0 -1px 0 rgba(210, 224, 242, 0.14);
}

@media (min-width: 961px) {
  #cat-ozone .product-card:nth-child(n + 7) .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(42, 69, 114, 0.42) 0%,
      rgba(69, 104, 150, 0.26) 28%,
      rgba(90, 126, 176, 0.12) 62%,
      rgba(210, 224, 242, 0.06) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(53, 86, 134, 0.22),
      0 -1px 0 rgba(210, 224, 242, 0.14);
  }
}

@media (min-width: 641px) {
  #cat-ozone .product-card.product-card--text-left .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(42, 69, 114, 0.42) 0%,
      rgba(69, 104, 150, 0.26) 28%,
      rgba(90, 126, 176, 0.12) 62%,
      rgba(210, 224, 242, 0.06) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(53, 86, 134, 0.22),
      0 -1px 0 rgba(210, 224, 242, 0.14);
  }

  #cat-ozone .product-card.product-card--image-left .product-visual.has-photo::after {
    background: linear-gradient(
      90deg,
      rgba(42, 69, 114, 0.42) 0%,
      rgba(69, 104, 150, 0.26) 28%,
      rgba(90, 126, 176, 0.12) 62%,
      rgba(210, 224, 242, 0.06) 100%
    );
    box-shadow:
      inset 3px 0 0 rgba(53, 86, 134, 0.22),
      0 -1px 0 rgba(210, 224, 242, 0.14);
  }
}

/* Wire catalog: soft jade green panel */
#cat-wire .category-head h3 {
  background: linear-gradient(92deg, #145238 0%, #1f7a54 55%, #2f9a68 100%);
  box-shadow: 0 6px 16px rgba(20, 82, 56, 0.18);
}

#cat-wire .category-head a {
  color: #1f7a54;
}

#cat-wire .product-card {
  border-color: rgba(31, 122, 84, 0.2);
  background: #fff;
  box-shadow:
    0 8px 28px rgba(20, 82, 56, 0.05),
    0 0 0 1px rgba(47, 154, 104, 0.04);
}

#cat-wire .product-card:hover {
  border-color: rgba(47, 154, 104, 0.42);
  box-shadow:
    0 18px 42px rgba(20, 82, 56, 0.12),
    0 0 28px rgba(64, 180, 125, 0.1);
}

#cat-wire .product-body {
  background: linear-gradient(
    160deg,
    #145238 0%,
    #1a6544 38%,
    #228a5c 72%,
    #2f9a68 100%
  );
  box-shadow: none;
}

#cat-wire .product-body::before,
#cat-wire .product-body::after {
  content: none;
  display: none;
}

#cat-wire .product-visual:not(.has-photo) {
  background: linear-gradient(160deg, #145238 0%, #228a5c 55%, #2f9a68 100%);
}

#cat-wire .product-specs dt {
  color: rgba(186, 230, 205, 0.9);
}

#cat-wire .product-use {
  color: rgba(236, 250, 242, 0.96) !important;
  background: rgba(255, 255, 255, 0.12);
}

#cat-wire .product-name {
  color: rgba(198, 236, 216, 0.95) !important;
}

#cat-wire .product-body p {
  color: rgba(198, 236, 216, 0.95);
}

#cat-wire .product-visual.has-photo::after {
  background: linear-gradient(
    90deg,
    rgba(16, 64, 44, 0.48) 0%,
    rgba(34, 120, 84, 0.3) 28%,
    rgba(47, 154, 104, 0.14) 62%,
    rgba(186, 230, 205, 0.07) 100%
  );
  box-shadow:
    inset 3px 0 0 rgba(26, 100, 68, 0.28),
    0 -1px 0 rgba(186, 230, 205, 0.16);
}

@media (min-width: 961px) {
  #cat-wire .product-card:nth-child(n + 7) .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(16, 64, 44, 0.48) 0%,
      rgba(34, 120, 84, 0.3) 28%,
      rgba(47, 154, 104, 0.14) 62%,
      rgba(186, 230, 205, 0.07) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(26, 100, 68, 0.28),
      0 -1px 0 rgba(186, 230, 205, 0.16);
  }
}

@media (min-width: 641px) {
  #cat-wire .product-card.product-card--text-left .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(16, 64, 44, 0.48) 0%,
      rgba(34, 120, 84, 0.3) 28%,
      rgba(47, 154, 104, 0.14) 62%,
      rgba(186, 230, 205, 0.07) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(26, 100, 68, 0.28),
      0 -1px 0 rgba(186, 230, 205, 0.16);
  }

  #cat-wire .product-card.product-card--image-left .product-visual.has-photo::after {
    background: linear-gradient(
      90deg,
      rgba(16, 64, 44, 0.48) 0%,
      rgba(34, 120, 84, 0.3) 28%,
      rgba(47, 154, 104, 0.14) 62%,
      rgba(186, 230, 205, 0.07) 100%
    );
    box-shadow:
      inset 3px 0 0 rgba(26, 100, 68, 0.28),
      0 -1px 0 rgba(186, 230, 205, 0.16);
  }
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

/* Contact */
.contact {
  background:
    linear-gradient(160deg, var(--ocean-900), var(--ocean-950));
  color: #fff;
}

.contact .section-head h2,
.contact .section-kicker {
  color: var(--ocean-300);
}

.contact .section-head h2 {
  color: #fff;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.contact .section-head p {
  color: var(--ocean-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 204, 239, 0.18);
  backdrop-filter: blur(10px);
}

.contact-card dt {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-300);
}

.contact-card dd {
  margin: 0 0 20px;
  font-size: 1rem;
  color: #fff;
}

.contact-card dd:last-child {
  margin-bottom: 0;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--ocean-200);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(124, 204, 239, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(184, 228, 247, 0.45);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--ocean-300);
}

/* Footer */
.site-footer {
  padding: 40px 0 28px;
  background: #020e18;
  color: var(--ocean-200);
  border-top: 1px solid rgba(124, 204, 239, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  font-size: 13px;
  color: var(--ocean-300);
  max-width: 36ch;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-400);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--ocean-200);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(124, 204, 239, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.footer-visits {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.footer-visits[hidden] {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    padding: 16px 20px 24px;
    background: rgba(3, 21, 37, 0.96);
    border-bottom: 1px solid rgba(124, 204, 239, 0.15);
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.04);
  }

  .about-layout,
  .scenario,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scenario-accessory-grid {
    grid-template-columns: 1fr;
  }

  .scenario-accessory-grid-2 {
    grid-template-columns: 1fr;
  }

  .scenario-accessory-grid-1 {
    max-width: none;
  }

  .scenario-hv-module-main,
  .scenario-hv-pack-grid {
    grid-template-columns: 1fr;
  }

  .scenario-accessory-banner img {
    height: 160px;
  }

  .scenario-ion-main {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 28px;
  }

  .scenario-ion,
  .scenario-plasma,
  .scenario-ozone {
    gap: 40px;
    padding: 24px;
    margin-bottom: 2cm;
  }

  .scenario-ion .scenario-media,
  .scenario-plasma .scenario-media,
  .scenario-ozone .scenario-media {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .scenario-apps-grid {
    max-width: none;
  }

  .scenario-apps-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scenario-ion .scenario-apps-block {
    grid-template-areas:
      "media"
      "side"
      "intro";
  }

  .scenario-plasma-copy-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
  }

  .scenario-apps-ranges {
    grid-template-columns: 1fr;
  }

  .scenario-apps-intro {
    max-width: none;
    text-align: center;
  }

  .scenario-spec-ranges,
  .scenario-spec-bottom,
  .scenario-plasma-diff-grid,
  .scenario-ozone-about-grid {
    grid-template-columns: 1fr;
  }

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

  .scenario-spec-visual img {
    min-height: 160px;
    max-height: 180px;
  }

  .scenario-forest img {
    max-height: 220px;
  }

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

  .about-aside {
    min-height: 0;
    grid-template-rows: minmax(220px, 42vw) auto;
  }

  .about-photo {
    min-height: 220px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .about-panel p {
    -webkit-line-clamp: 3;
  }

  .about-panel li {
    white-space: normal;
  }

  .about-stats-panel {
    min-width: 0;
  }

  .scenario:nth-child(even) {
    direction: ltr;
  }

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

  /* Atmosphere tiles stay visible on narrow / Glass preview panes */
  .product-lifestyle-tile,
  .product-lifestyle-tile--span3,
  .product-atmosphere-banner {
    display: block !important;
  }

  .product-card {
    flex-direction: row;
  }

  /* 1-col: first 3 cards image|text, rest text|image */
  .product-card:nth-child(n + 4) {
    flex-direction: row-reverse;
  }

  .product-card:nth-child(n + 4) .product-visual.has-photo::after {
    background: linear-gradient(
      270deg,
      rgba(20, 116, 168, 0.55) 0%,
      rgba(58, 173, 224, 0.38) 22%,
      rgba(58, 173, 224, 0.16) 55%,
      rgba(58, 173, 224, 0.06) 100%
    );
    box-shadow:
      inset -3px 0 0 rgba(20, 116, 168, 0.28),
      0 -1px 0 rgba(124, 204, 239, 0.2);
  }

  .product-card.product-card--text-left {
    flex-direction: row-reverse;
  }

  .product-card.product-card--image-left {
    flex-direction: row;
  }

  .product-visual {
    min-width: 160px;
    min-height: 220px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

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

  .product-lifestyle {
    width: 120px;
  }

  .product-card {
    flex-direction: column;
  }

  .product-card:nth-child(n + 4) {
    flex-direction: column;
  }

  .product-visual {
    width: 100%;
    min-width: 0;
    min-height: 200px;
    flex: 0 0 auto;
    aspect-ratio: 5 / 4;
  }

  .product-body {
    width: 100%;
    flex: 1 1 auto;
  }

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

  .about-aside {
    grid-template-rows: 200px auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 64px 0 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide img,
  .hero-glow,
  .hero-eyebrow::before,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .chat-dock-panel {
    transition: none !important;
  }
}

/* Floating WhatsApp + WeChat dock */
.chat-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.chat-dock-btns,
.chat-dock-panel {
  pointer-events: auto;
}

.chat-dock-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-dock-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(3, 21, 37, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.chat-dock-btn svg {
  flex: 0 0 auto;
}

.chat-dock-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(3, 21, 37, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.chat-dock-btn:focus-visible {
  outline: 2px solid #1474a8;
  outline-offset: 3px;
}

.chat-dock-btn--wa {
  background: linear-gradient(165deg, #25d366 0%, #1da851 100%);
}

.chat-dock-btn--wx {
  background: linear-gradient(165deg, #2aae67 0%, #1f8f54 100%);
}

.chat-dock-btn--wa.is-active {
  filter: brightness(1.05);
  box-shadow:
    0 14px 32px rgba(29, 168, 81, 0.35),
    0 0 0 2px rgba(37, 211, 102, 0.35);
}

.chat-dock-btn--wx.is-active {
  filter: brightness(1.05);
  box-shadow:
    0 14px 32px rgba(31, 143, 84, 0.35),
    0 0 0 2px rgba(42, 174, 103, 0.35);
}

.chat-dock-phone {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #123;
  font-variant-numeric: tabular-nums;
}

.chat-dock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.chat-dock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(20, 116, 168, 0.18);
  background: #f4fafc;
  color: #1a3a4a;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.chat-dock-action--primary {
  border-color: transparent;
  background: linear-gradient(165deg, #25d366 0%, #1da851 100%);
  color: #fff;
}

.chat-dock-action:hover {
  filter: brightness(1.03);
}

.chat-dock-panel {
  width: min(220px, calc(100vw - 36px));
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 116, 168, 0.14);
  box-shadow: 0 16px 40px rgba(3, 21, 37, 0.18);
  text-align: center;
}

.chat-dock-panel[hidden] {
  display: none !important;
}

.chat-dock-panel-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 650;
  color: #1a3a4a;
}

.chat-dock-qr {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
}

.chat-dock-hint {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #5a7380;
}

.chat-dock-id {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #1f8f54;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .chat-dock {
    right: 12px;
    bottom: 12px;
  }

  .chat-dock-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .chat-dock-btn {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ========== Fresh / studio product layout (default) ========== */
.products-layout--fresh .products {
  --fresh-ink: #14212b;
  --fresh-muted: #4f6673;
  --fresh-line: rgba(20, 33, 43, 0.1);
  --fresh-card: #ffffff;
  --fresh-soft: #eef7fb;
  --fresh-panel: linear-gradient(165deg, #0e5278 0%, #1474a8 48%, #3aade0 100%);
  --fresh-panel-soft: linear-gradient(180deg, rgba(20, 116, 168, 0.1), rgba(20, 116, 168, 0.04));
  --fresh-use-bg: rgba(20, 116, 168, 0.1);
  --fresh-use-fg: #0e5278;
  --fresh-accent: #1b8fc9;
}

.products-layout--fresh .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: calc(56px + 5mm);
  align-items: stretch;
}

.products-layout--fresh .product-card,
.products-layout--fresh .product-card.product-card--text-left,
.products-layout--fresh .product-card.product-card--image-left {
  display: flex;
  flex-direction: column !important;
  align-items: stretch;
  align-self: stretch;
  height: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--fresh-card);
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.05);
  overflow: hidden;
  outline: 1px solid var(--fresh-line);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), outline-color 0.28s;
}

.products-layout--fresh .product-card:hover {
  transform: translateY(-5px);
  outline-color: transparent;
  box-shadow:
    0 18px 40px rgba(3, 21, 37, 0.1),
    0 0 0 1px rgba(20, 116, 168, 0.12);
}

.products-layout--fresh .product-visual,
.products-layout--fresh .product-visual.has-photo {
  flex: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  background: var(--fresh-soft) !important;
  border: 0;
}

.products-layout--fresh .product-visual.has-photo::after {
  display: none !important;
}

.products-layout--fresh .product-visual.has-photo img,
.products-layout--fresh #cat-ion .product-visual.has-photo img,
.products-layout--fresh #cat-plasma .product-visual.has-photo img,
.products-layout--fresh #cat-hv-module .product-visual.has-photo img,
.products-layout--fresh #cat-hv-pack .product-visual.has-photo img,
.products-layout--fresh #cat-ozone .product-visual.has-photo img,
.products-layout--fresh #cat-wire .product-visual.has-photo img {
  padding: 16px !important;
  object-fit: contain;
  background: transparent;
}

.products-layout--fresh .product-body,
.products-layout--fresh #cat-plasma .product-body,
.products-layout--fresh #cat-ozone .product-body,
.products-layout--fresh #cat-hv-module .product-body,
.products-layout--fresh #cat-hv-pack .product-body,
.products-layout--fresh #cat-wire .product-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto !important;
  width: auto !important;
  min-height: 0;
  padding: 12px 14px 14px !important;
  background: var(--fresh-panel) !important;
  color: #fff !important;
  box-shadow: none !important;
  justify-content: flex-start;
  isolation: isolate;
  overflow: hidden;
}

.products-layout--fresh .product-body::before,
.products-layout--fresh #cat-ozone .product-body::before,
.products-layout--fresh #cat-wire .product-body::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.products-layout--fresh .product-body::after,
.products-layout--fresh #cat-ozone .product-body::after,
.products-layout--fresh #cat-wire .product-body::after {
  display: none !important;
  content: none !important;
}

.products-layout--fresh .product-body > * {
  position: relative;
  z-index: 1;
}

.products-layout--fresh .product-seo-title,
.products-layout--fresh .product-body h4 {
  color: #fff !important;
  font-size: 0.88rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}

.products-layout--fresh .product-name,
.products-layout--fresh #cat-plasma .product-name,
.products-layout--fresh #cat-ozone .product-name,
.products-layout--fresh #cat-hv-module .product-name,
.products-layout--fresh #cat-hv-pack .product-name,
.products-layout--fresh #cat-wire .product-name {
  color: rgba(232, 244, 250, 0.92) !important;
  opacity: 1 !important;
  font-size: 0.74rem !important;
  line-height: 1.25 !important;
  margin: 0 0 8px !important;
}

.products-layout--fresh .product-specs {
  gap: 0;
  margin: 0 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.products-layout--fresh .product-specs > div {
  grid-template-columns: 4.6em minmax(0, 1fr);
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  line-height: 1.3;
}

.products-layout--fresh .product-specs dt,
.products-layout--fresh #cat-plasma .product-specs dt,
.products-layout--fresh #cat-ozone .product-specs dt,
.products-layout--fresh #cat-hv-module .product-specs dt,
.products-layout--fresh #cat-hv-pack .product-specs dt,
.products-layout--fresh #cat-wire .product-specs dt {
  color: rgba(210, 232, 242, 0.88) !important;
  font-weight: 650;
}

.products-layout--fresh .product-specs dd {
  color: #fff !important;
  line-height: 1.3;
}

.products-layout--fresh .product-use,
.products-layout--fresh #cat-plasma .product-use,
.products-layout--fresh #cat-ozone .product-use,
.products-layout--fresh #cat-hv-module .product-use,
.products-layout--fresh #cat-hv-pack .product-use,
.products-layout--fresh #cat-wire .product-use {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 4px 9px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 0;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  width: fit-content;
  max-width: 100%;
}

.products-layout--fresh .product-body p {
  color: rgba(232, 244, 250, 0.92) !important;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* Category color boards */
.products-layout--fresh #cat-ion {
  --fresh-soft: #e8f6fc;
  --fresh-panel: linear-gradient(165deg, #0e5278 0%, #1474a8 48%, #3aade0 100%);
  --fresh-accent: #1b8fc9;
}

.products-layout--fresh #cat-plasma {
  --fresh-soft: #eaf7f1;
  --fresh-panel: linear-gradient(165deg, #0c2e24 0%, #1a6b4a 48%, #2f9a68 100%);
  --fresh-accent: #2f9a68;
}

.products-layout--fresh #cat-ozone {
  --fresh-soft: #eef2f8;
  --fresh-panel: linear-gradient(165deg, #243968 0%, #355686 48%, #5a7eb0 100%);
  --fresh-accent: #5a7eb0;
}

.products-layout--fresh #cat-hv-module {
  --fresh-soft: #eaf7f1;
  --fresh-panel: linear-gradient(165deg, #145238 0%, #1f7a54 48%, #2f9a68 100%);
  --fresh-accent: #2f9a68;
}

.products-layout--fresh #cat-hv-pack {
  --fresh-soft: #eaf4fa;
  --fresh-panel: linear-gradient(165deg, #0e5278 0%, #1474a8 48%, #3aade0 100%);
  --fresh-accent: #1b8fc9;
}

.products-layout--fresh #cat-wire {
  --fresh-soft: #eaf7f1;
  --fresh-panel: linear-gradient(165deg, #145238 0%, #1f7a54 48%, #2f9a68 100%);
  --fresh-accent: #2f9a68;
}

.products-layout--fresh #cat-ion .product-visual.has-photo,
.products-layout--fresh #cat-plasma .product-visual.has-photo,
.products-layout--fresh #cat-ozone .product-visual.has-photo,
.products-layout--fresh #cat-hv-module .product-visual.has-photo,
.products-layout--fresh #cat-hv-pack .product-visual.has-photo,
.products-layout--fresh #cat-wire .product-visual.has-photo {
  background: var(--fresh-soft) !important;
}

.products-layout--fresh #cat-ion .product-body,
.products-layout--fresh #cat-plasma .product-body,
.products-layout--fresh #cat-ozone .product-body,
.products-layout--fresh #cat-hv-module .product-body,
.products-layout--fresh #cat-hv-pack .product-body,
.products-layout--fresh #cat-wire .product-body {
  background: var(--fresh-panel) !important;
}

.products-layout--fresh .category-head h3,
.products-layout--fresh #cat-plasma .category-head h3,
.products-layout--fresh #cat-ozone .category-head h3,
.products-layout--fresh #cat-hv-module .category-head h3,
.products-layout--fresh #cat-hv-pack .category-head h3,
.products-layout--fresh #cat-wire .category-head h3 {
  display: inline-block;
  background: var(--fresh-panel) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(3, 21, 37, 0.12) !important;
  padding: 8px 16px !important;
  border-radius: 10px;
  border-bottom: 0;
  min-width: 0;
  line-height: 1.25;
}

.products-layout--fresh #cat-ion .category-head h3,
.products-layout--fresh #cat-hv-pack .category-head h3 {
  background: linear-gradient(92deg, #0e5278 0%, #1b8fc9 100%) !important;
}

.products-layout--fresh #cat-hv-module .category-head h3 {
  background: linear-gradient(92deg, #145238 0%, #2f9a68 100%) !important;
}

.products-layout--fresh #cat-plasma .category-head h3 {
  background: linear-gradient(92deg, #0c2e24 0%, #2f9a68 100%) !important;
}

.products-layout--fresh #cat-ozone .category-head h3 {
  background: linear-gradient(92deg, #243968 0%, #5a7eb0 100%) !important;
}

.products-layout--fresh #cat-wire .category-head h3 {
  background: linear-gradient(92deg, #145238 0%, #2f9a68 100%) !important;
}


.products-layout--fresh #cat-wire .product-lifestyle-tile {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.products-layout--fresh #cat-wire .product-lifestyle-tile img {
  object-fit: cover;
  object-position: center 62%;
}

/* Ion atmosphere tile: same outer height as product cards; photo = 1:1 frame */
.products-layout--fresh #cat-ion .product-lifestyle-tile {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  outline: 1px solid var(--fresh-line);
  background: var(--fresh-card, #fff);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.05);
}

.products-layout--fresh #cat-ion .product-lifestyle-tile-media {
  position: relative;
  inset: auto;
  flex: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--fresh-soft);
}

.products-layout--fresh #cat-ion .product-lifestyle-tile img {
  object-fit: cover;
  object-position: center 40%;
}

.products-layout--fresh #cat-ion .product-lifestyle-tile figcaption {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 14px 16px;
  text-align: center;
  background: var(--fresh-panel);
}

.products-layout--fresh #cat-ion .product-lifestyle-tile figcaption strong {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: none;
}

.products-layout--fresh .product-lifestyle-tile,
.products-layout--fresh #cat-plasma .product-lifestyle-tile {
  border: 0;
  outline: 1px solid var(--fresh-line);
  background: var(--fresh-soft);
  border-radius: 18px;
  min-height: 0;
  aspect-ratio: 1 / 1.15;
}

/* Full-row atmosphere banner (never hidden by lifestyle-tile rules) */
.product-atmosphere-banner {
  grid-column: 1 / -1;
  position: relative;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  max-width: 100%;
  margin: 24px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: #c8e8f4;
  outline: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.06);
  min-height: 135px;
}

.product-category > .product-atmosphere-banner {
  margin-top: 28px;
}

/* Plasma only: space between last product row and the wide banner */
#cat-plasma > .product-atmosphere-banner {
  margin-top: 1.5cm;
}

.product-atmosphere-banner img {
  display: block !important;
  width: 100%;
  height: auto;
  max-height: none;
  /* Height reduced by 1/4 vs original 854×622 frame */
  aspect-ratio: 854 / 466.5;
  object-fit: cover;
  object-position: center 30%;
}

.product-atmosphere-banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(3, 21, 37, 0.5));
  z-index: 2;
}

.product-atmosphere-banner figcaption strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(3, 21, 37, 0.35);
}

.product-atmosphere-banner--breath .breath-overlays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.product-atmosphere-banner--breath .breath-line {
  position: absolute;
  margin: 0;
  max-width: min(42%, 16rem);
  line-height: 1.35;
  font-weight: 700;
  text-align: left;
  padding: 0;
  background: none;
}

.product-atmosphere-banner--breath .breath-line--tl,
.product-atmosphere-banner--breath .breath-line--tr {
  top: 7%;
  font-size: clamp(13px, 1.85vw, 20px);
  color: #fff;
  text-shadow:
    0 1px 2px rgba(3, 21, 37, 0.45),
    0 0 10px rgba(3, 21, 37, 0.2);
}

.product-atmosphere-banner--breath .breath-line--tl {
  left: 5%;
}

.product-atmosphere-banner--breath .breath-line--tr {
  right: 5%;
  left: auto;
  text-align: right;
}

.product-atmosphere-banner--breath .breath-line--main {
  left: 50%;
  top: 36%;
  transform: translateX(-50%) rotate(-5deg);
  max-width: min(78%, 28rem);
  text-align: center;
  font-size: clamp(18px, 2.8vw, 34px);
  font-weight: 800;
  color: #f5d76e;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  paint-order: stroke fill;
  text-shadow:
    0 2px 6px rgba(3, 21, 37, 0.5),
    0 1px 0 rgba(120, 80, 0, 0.35);
}

@media (max-width: 720px) {
  .product-atmosphere-banner--breath .breath-line--tl,
  .product-atmosphere-banner--breath .breath-line--tr {
    max-width: 46%;
    font-size: 12px;
  }

  .product-atmosphere-banner--breath .breath-line--main {
    top: 40%;
    font-size: 15px;
    max-width: 88%;
  }
}

@media (max-width: 960px) {
  .product-atmosphere-banner {
    display: block !important;
  }

  .product-atmosphere-banner img {
    aspect-ratio: 16 / 6.75;
  }
}

.products-layout--fresh .product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 0;
  background: var(--fresh-accent);
  opacity: 0.95;
  z-index: 2;
}

.products-layout--fresh #cat-plasma .product-card::before,
.products-layout--fresh #cat-wire .product-card::before {
  background: #2f9a68;
}

.products-layout--fresh #cat-ozone .product-card::before {
  background: #5a7eb0;
}

/* Featured SKU: full-row spotlight (ion / ozone) */
.products-layout--fresh #cat-ion .product-card--span-3,
.products-layout--fresh #cat-ozone .product-card--span-3 {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: stretch;
  min-height: 0;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-visual,
.products-layout--fresh #cat-ion .product-card--span-3 .product-visual.has-photo,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-visual,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-visual.has-photo {
  flex: 0 0 58% !important;
  width: 58% !important;
  max-width: 58%;
  aspect-ratio: auto;
  align-self: stretch;
  min-height: 260px;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-visual.has-photo img,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-visual.has-photo img {
  padding: 20px 24px !important;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-body,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-body {
  flex: 0 0 42%;
  width: 42%;
  max-width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 16px 18px 18px !important;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-seo-title,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-seo-title {
  -webkit-line-clamp: 2;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-name,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-name {
  font-size: 0.78rem !important;
  margin-bottom: 8px !important;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-specs,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-specs {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 0;
  margin-bottom: 8px;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-specs > div,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-specs > div {
  font-size: 0.8rem;
}

.products-layout--fresh #cat-ion .product-card--span-3 .product-use,
.products-layout--fresh #cat-ozone .product-card--span-3 .product-use {
  max-width: none;
  font-size: 0.78rem;
}

.products-layout--fresh #cat-ion .product-card--span-2,
.products-layout--fresh #cat-ozone .product-card--span-2 {
  grid-column: span 2;
}

/* Grid filler CTA when last row would otherwise leave a hole */
.products-layout--fresh #cat-ozone .product-grid-cta {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, #243968 0%, #355686 55%, #5a7eb0 100%);
  color: #fff;
  outline: 1px solid rgba(74, 111, 160, 0.2);
  box-shadow: 0 8px 24px rgba(3, 21, 37, 0.05);
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.products-layout--fresh #cat-ozone .product-grid-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(36, 57, 104, 0.16);
}

.products-layout--fresh #cat-ozone .product-grid-cta strong {
  font-family: var(--font-display, "Syne", sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.products-layout--fresh #cat-ozone .product-grid-cta span {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
}

.products-layout--fresh #cat-ozone .product-grid-cta--span-1 {
  grid-column: span 1;
}


/* Paired SKUs (e.g. ozone air pumps) share one full-width row */
.products-layout--fresh .product-pair-row {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.products-layout--fresh .product-pair-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-display, "Syne", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #3d5f86;
  background: linear-gradient(180deg, #eef4fb, #e4edf7);
  border: 1px solid rgba(90, 126, 176, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.products-layout--fresh .product-pair-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a7eb0;
  box-shadow: 0 0 0 2px rgba(90, 126, 176, 0.22);
}

.products-layout--fresh .product-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 26px;
  align-items: stretch;
}

/* Catalog sheet originals (ozone air pumps) — HTML rebuild with crisp type */
.products-layout--fresh .product-pair-row--sheets {
  gap: 22px;
  padding-top: 0;
}

.products-layout--fresh .pump-sheet {
  margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  outline: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 10px 28px rgba(3, 21, 37, 0.06);
}

.products-layout--fresh .pump-sheet-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55em;
  padding: 0.65rem 1.1rem;
  background: var(--ocean-600, #1474a8);
  color: #fff;
  font-family: var(--font-display, "Syne", sans-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.products-layout--fresh .pump-sheet-header-title {
  margin: 0;
  font: inherit;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.02em;
}

.products-layout--fresh .pump-sheet-header-zh {
  font-size: clamp(15px, 1.5vw, 18px);
}

.products-layout--fresh .pump-sheet-header-en {
  font-size: clamp(13px, 1.35vw, 16px);
  letter-spacing: 0.12em;
}

.products-layout--fresh .pump-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 18px 20px;
}

.products-layout--fresh .pump-sheet-info {
  display: grid;
  grid-template-columns: minmax(88px, 0.28fr) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
}

.products-layout--fresh .pump-sheet-badge {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  text-align: center;
}

.products-layout--fresh .pump-sheet-badge-star {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.products-layout--fresh .pump-sheet-badge strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display, "Syne", sans-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a2330;
  letter-spacing: 0.02em;
}

.products-layout--fresh .pump-sheet-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.products-layout--fresh .pump-sheet-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: clamp(11px, 1.15vw, 13px);
  color: #1a2330;
  line-height: 1.25;
}

.products-layout--fresh .pump-sheet-table th,
.products-layout--fresh .pump-sheet-table td {
  padding: 0.42em 0.35em;
  border: 1px solid rgba(30, 40, 55, 0.22);
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

.products-layout--fresh .pump-sheet-table thead th,
.products-layout--fresh .pump-sheet-table tbody th {
  background: #e8eaee;
  font-weight: 650;
}

.products-layout--fresh .pump-sheet-table thead th.is-corner {
  background: #e8eaee;
  width: 3.2em;
}

.products-layout--fresh .pump-sheet-table tbody th {
  width: 3.2em;
  font-weight: 650;
}

.products-layout--fresh .pump-sheet-table tbody tr.is-alt th,
.products-layout--fresh .pump-sheet-table tbody tr.is-alt td {
  background: #f3f4f6;
}

.products-layout--fresh .pump-sheet-table tbody tr:not(.is-alt) td {
  background: #fff;
}

.products-layout--fresh .pump-sheet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  align-items: end;
}

.products-layout--fresh .pump-sheet-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.products-layout--fresh .pump-sheet-photo-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.products-layout--fresh .pump-sheet-photo-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 168px;
  object-fit: contain;
  object-position: center;
}

.products-layout--fresh .pump-sheet-photo-cap {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em 0.55em;
  margin: 0;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  color: #1a2330;
  letter-spacing: 0.02em;
  text-align: center;
}

.products-layout--fresh .pump-sheet-photo--note .pump-sheet-photo-cap {
  position: relative;
  color: #c62828;
  font-size: clamp(12px, 1.15vw, 13px);
}

.products-layout--fresh .pump-sheet-photo--note .pump-sheet-photo-cap::before {
  content: "↗";
  margin-right: 0.2em;
  font-weight: 700;
}

/* 5L split: table left, photos right */
.products-layout--fresh .pump-sheet--split .pump-sheet-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 16px 20px;
  align-items: center;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-info {
  grid-template-columns: minmax(72px, 0.32fr) minmax(0, 1fr);
}

.products-layout--fresh .pump-sheet--split .pump-sheet-gallery {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-gallery::before {
  content: "";
  position: absolute;
  inset: 8% 18% 8% 28%;
  border: 1px dashed rgba(90, 100, 120, 0.35);
  border-radius: 4px;
  transform: skewY(-8deg);
  pointer-events: none;
  z-index: 0;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo {
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo:first-child {
  margin-left: 8%;
  margin-right: auto;
  padding-left: 0;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo:last-child {
  margin-left: auto;
  margin-right: 4%;
  padding-right: 0;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo-cap {
  order: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 0;
  flex: none;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo-media {
  flex: none;
  width: auto;
}

.products-layout--fresh .pump-sheet--split .pump-sheet-photo-media img {
  max-width: min(100%, 280px);
  max-height: 180px;
}

.products-layout--fresh .product-catalog-sheet {
  margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  outline: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 10px 28px rgba(3, 21, 37, 0.06);
}

.products-layout--fresh .product-catalog-sheet img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

html[dir="rtl"] .products-layout--fresh .product-pair-badge {
  align-self: flex-end;
}

@media (max-width: 1100px) {
  .products-layout--fresh .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: calc(48px + 5mm);
  }

  .products-layout--fresh .product-pair-grid {
    column-gap: 20px;
  }

  .products-layout--fresh .pump-sheet--split .pump-sheet-body {
    grid-template-columns: 1fr;
  }

  /* Featured becomes full-width band on 2-col */
  .products-layout--fresh #cat-ion .product-card--span-3,
  .products-layout--fresh #cat-ozone .product-card--span-3 {
    grid-column: 1 / -1;
    flex-direction: row !important;
  }

  .products-layout--fresh #cat-ion .product-card--span-3 .product-visual,
  .products-layout--fresh #cat-ion .product-card--span-3 .product-visual.has-photo,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-visual,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-visual.has-photo {
    flex: 0 0 55% !important;
    width: 55% !important;
    max-width: 55%;
    aspect-ratio: auto;
    min-height: 220px;
  }

  .products-layout--fresh #cat-ion .product-card--span-3 .product-body,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-body {
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
    padding: 14px 16px 16px !important;
  }

  .products-layout--fresh #cat-ion .product-card--span-2,
  .products-layout--fresh #cat-ozone .product-card--span-2,
  .products-layout--fresh #cat-ozone .product-grid-cta {
    grid-column: span 1;
  }

  .products-layout--fresh #cat-ozone .product-grid-cta {
    min-height: 160px;
  }
}

@media (max-width: 640px) {
  .products-layout--fresh .product-grid {
    grid-template-columns: 1fr;
  }

  .products-layout--fresh .product-pair-grid {
    grid-template-columns: 1fr;
  }

  .products-layout--fresh .product-pair-row--sheets {
    gap: 14px;
  }

  .products-layout--fresh #cat-ion .product-card--span-3,
  .products-layout--fresh #cat-ozone .product-card--span-3 {
    flex-direction: column !important;
  }

  .products-layout--fresh #cat-ion .product-card--span-3 .product-visual,
  .products-layout--fresh #cat-ion .product-card--span-3 .product-visual.has-photo,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-visual,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-visual.has-photo {
    flex: none !important;
    width: 100% !important;
    max-width: none;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .products-layout--fresh #cat-ion .product-card--span-3 .product-body,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-body {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }

  .products-layout--fresh #cat-ion .product-card--span-3 .product-specs,
  .products-layout--fresh #cat-ozone .product-card--span-3 .product-specs {
    grid-template-columns: 1fr;
  }

  .products-layout--fresh .pump-sheet,
  .products-layout--fresh .product-catalog-sheet {
    border-radius: 10px;
  }

  .products-layout--fresh .pump-sheet-info {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .products-layout--fresh .pump-sheet-gallery {
    grid-template-columns: 1fr;
  }

  .products-layout--fresh .pump-sheet--split .pump-sheet-photo {
    justify-content: center !important;
    padding: 0 !important;
  }

  .products-layout--fresh .product-card,
  .products-layout--fresh .product-card.product-card--text-left,
  .products-layout--fresh .product-card.product-card--image-left {
    flex-direction: column !important;
  }
}



/* One-line CTA under lifestyle photo (wire); image frame unchanged */
.product-lifestyle-tile--with-cta {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  aspect-ratio: auto !important;
  min-height: 0;
}

.product-lifestyle-tile--with-cta .product-lifestyle-tile-media {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  inset: auto;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.product-lifestyle-tile--with-cta figcaption {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  inset: auto;
  align-self: end;
  margin: 0;
  z-index: 2;
}

.product-lifestyle-cta {
  grid-row: 2;
  grid-column: 1;
  margin: 0;
  padding: 14px 12px 16px;
  text-align: center;
  font-family: var(--font-display, "Syne", sans-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #145238;
  background: #eaf7f1;
}
