:root {
  --black: #121719;
  --black-2: #1c2225;
  --cyan: #52c7d6;
  --cyan-dark: #339ead;
  --cyan-soft: #e9f8fb;
  --amber: #f4a51c;
  --green: #12b76a;
  --red: #f04438;
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --line-2: #d0d5dd;
  --surface: #f6f8fb;
  --white: #ffffff;
  --shadow-xs: 0 8px 20px rgba(16, 24, 40, .06);
  --shadow-sm: 0 14px 34px rgba(16, 24, 40, .09);
  --shadow-md: 0 22px 60px rgba(16, 24, 40, .14);
  --shadow-lg: 0 34px 90px rgba(18, 23, 25, .24);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(82, 199, 214, .10), transparent 28rem),
    var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

ul {
  list-style: none;
}

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

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

.topbar {
  background: var(--black);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 231, 236, .86);
  box-shadow: 0 10px 34px rgba(16, 24, 40, .06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-text strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--black);
  font-weight: 900;
}

.logo-text span {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > li {
  position: relative;
}

.nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--black);
  background: var(--cyan-soft);
}

.nav-cta {
  margin-left: 6px;
  color: var(--black) !important;
  background: linear-gradient(135deg, var(--cyan), #7fe5ef) !important;
  box-shadow: 0 12px 24px rgba(82, 199, 214, .28);
}

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

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(310px, 90vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 9px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}

.dropdown a {
  justify-content: flex-start;
  min-height: 40px;
  white-space: normal;
  padding: 10px 12px;
}

.nav > li:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--black);
  cursor: pointer;
  font-weight: 900;
  position: relative;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  position: absolute;
  left: 13px;
  transition: .2s ease;
}

.menu-btn span {
  top: 20px;
}

.menu-btn::before {
  top: 14px;
}

.menu-btn::after {
  top: 26px;
}

.menu-btn.active span {
  opacity: 0;
}

.menu-btn.active::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-btn.active::after {
  top: 20px;
  transform: rotate(-45deg);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #80e2ec);
  color: var(--black);
  box-shadow: 0 14px 28px rgba(82, 199, 214, .28);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(82, 199, 214, .34);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  box-shadow: 0 18px 36px rgba(18, 23, 25, .22);
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--black);
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
  color: #fff;
}

.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple .55s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.svg");
  background-size: cover;
  background-position: center;
  opacity: .78;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,23,25,.96) 0%, rgba(18,23,25,.80) 48%, rgba(18,23,25,.22) 100%),
    radial-gradient(circle at 24% 22%, rgba(82,199,214,.18), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent);
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  align-items: center;
  gap: 48px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbf8ff;
  background: rgba(82,199,214,.14);
  border: 1px solid rgba(82,199,214,.34);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero p {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.5vw, 18px);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  width: 100%;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 14px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.18));
}

.hero-panel h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.panel-list {
  display: grid;
  gap: 10px;
}

.panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.panel-list li:last-child {
  border-bottom: 0;
}

.panel-list strong {
  color: #fff;
  text-align: right;
}

.page-hero {
  position: relative;
  padding: 104px 0 96px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .78;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,23,25,.95), rgba(18,23,25,.70), rgba(18,23,25,.26)),
    radial-gradient(circle at 20% 20%, rgba(82,199,214,.18), transparent 30%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.page-hero p {
  max-width: 790px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.6vw, 18px);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 62px 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 9px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-title h2,
.copy h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.section-title p,
.copy p {
  color: var(--muted);
  font-size: 16.5px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  min-width: 0;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(228,231,236,.94);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(82,199,214,.35);
}

.icon-box {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--cyan-soft);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15.5px;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-image {
  height: 188px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,23,25,.32), transparent 62%);
}

.product-body {
  padding: 22px;
}

.product-body .btn-row .btn {
  flex: 1 1 135px;
}

.check-list {
  display: grid;
  gap: 8px;
}

.check-list li {
  color: #475467;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
}

.check-list li::before {
  content: "✓";
  color: var(--cyan-dark);
  font-weight: 900;
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 42px;
}

.media-card {
  min-height: 430px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,23,25,.50), transparent 60%);
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
}

.media-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
  font-size: 20px;
}

.feature-row {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--black);
  font-weight: 900;
}

.info-band {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(82,199,214,.28), transparent 28%),
    linear-gradient(135deg, var(--black), #0d2d35);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 20px;
  font-weight: 900;
}

.info-band h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.info-band p {
  color: rgba(255,255,255,.76);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(82,199,214,.26), transparent 28%),
    linear-gradient(135deg, var(--black), #0b2f38);
  box-shadow: var(--shadow-md);
}

.cta h2 {
  margin-bottom: 6px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.cta p {
  color: rgba(255,255,255,.74);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.product-photo {
  min-height: 460px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.product-summary {
  min-width: 0;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.product-summary h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.product-summary p {
  margin-bottom: 20px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

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

.spec-table th {
  width: 230px;
  color: var(--black);
  background: #f8fafc;
  font-size: 14px;
}

.spec-table td {
  color: #475467;
}

.reference-logo {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border: 1px dashed #bdd3d8;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fdfe);
  color: var(--black);
  font-weight: 900;
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-image {
  height: 205px;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 22px;
}

.meta {
  margin-bottom: 8px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.contact-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.74);
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.status-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.status-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.status-pill {
  color: #fff;
  font-weight: 900;
}

.progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--cyan);
  transition: width .35s ease;
}

.map-card {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.form-shell {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(82,199,214,.16);
}

.checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-row input {
  width: auto;
  margin-top: 5px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 58px 0 22px;
  background: var(--black);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 30px;
  margin-bottom: 34px;
}

.footer-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 17px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,.70);
  font-size: 14.5px;
  margin-bottom: 8px;
}

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

.socials {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.60);
  font-size: 13.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1160px) {
  .logo {
    min-width: auto;
  }

  .nav a {
    padding: 9px 8px;
    font-size: 13.2px;
  }

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

  .hero-inner,
  .split,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .menu-btn {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    padding: 14px 20px 22px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
    animation: navDrop .22s ease;
  }

  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav a {
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 15px;
  }

  .nav-cta {
    margin-left: 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    margin: 2px 0 8px;
    border-radius: 14px;
    background: #f8fbfc;
  }

  .nav > li:hover .dropdown {
    display: none;
  }

  .nav > li.open .dropdown,
  .nav > li.open:hover .dropdown {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 68px 0;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .page-hero {
    padding: 78px 0 72px;
  }

  .section {
    padding: 66px 0;
  }

  .section-tight {
    padding: 50px 0;
  }

  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band .btn {
    justify-self: flex-start;
  }

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

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

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo {
    gap: 9px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .logo-text strong {
    font-size: 17px;
  }

  .logo-text span {
    display: none;
  }

  .hero-inner {
    padding: 54px 0;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-logo {
    width: 78px;
    height: 78px;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .btn-row {
    width: 100%;
  }

  .product-body .btn-row .btn {
    flex: 1 1 100%;
  }

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

  .section-title {
    margin-bottom: 28px;
  }

  .card,
  .product-body,
  .form-shell,
  .contact-panel,
  .product-summary,
  .cta,
  .info-band {
    padding: 20px;
  }

  .product-image {
    height: 176px;
  }

  .product-photo,
  .media-card {
    min-height: 300px;
  }

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

  .spec-table {
    min-width: 560px;
  }

  .footer {
    padding-top: 46px;
  }
}


.contact-layout.upgraded {
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  align-items: start;
}

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

.quick-contact-grid .btn {
  width: 100%;
  min-height: 44px;
}

.contact-status-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  position: relative;
}

.contact-status-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(82,199,214,.18);
  filter: blur(6px);
  animation: statusGlow 4.5s ease-in-out infinite;
}

@keyframes statusGlow {
  0%, 100% { transform: scale(.9); opacity: .55; }
  50% { transform: scale(1.08); opacity: .95; }
}

.status-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.status-label {
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-weight: 800;
}

.status-value {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240,68,56,.14);
}

.status-dot.open {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(18,183,106,.14);
}

.status-time {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  text-align: right;
  max-width: 180px;
}

.status-progress-large {
  position: relative;
  z-index: 1;
  margin: 14px 0 12px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: rgba(255,255,255,.68);
  font-size: 12.5px;
  font-weight: 800;
}

.big-progress {
  height: 13px;
  background: rgba(255,255,255,.14);
  border-radius: 999px;
  overflow: hidden;
}

.big-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #95edf4);
  box-shadow: 0 0 18px rgba(82,199,214,.38);
  transition: width .7s cubic-bezier(.2,.8,.2,1);
}

.hours-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
  font-size: 13.5px;
}

.hours-row strong {
  color: #fff;
}

.location-stack {
  display: grid;
  gap: 18px;
}

.map-card.enhanced {
  min-height: 430px;
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.map-card.enhanced {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.route-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.route-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(82,199,214,.13);
}

.route-card > * {
  position: relative;
  z-index: 1;
}

.route-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.route-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.route-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.geo-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.animate-lift {
  transition: transform .22s ease, box-shadow .22s ease;
}

.animate-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}


.quote-builder {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-radius: var(--radius-lg);
  padding: 26px;
  background:
    radial-gradient(circle at 16% 10%, rgba(82,199,214,.22), transparent 30%),
    linear-gradient(135deg, var(--black), #0d2d35);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.quote-aside img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 16px;
}

.quote-aside h2 {
  font-size: 28px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.quote-aside p {
  color: rgba(255,255,255,.72);
}

.quote-steps {
  display: grid;
  gap: 16px;
}

.quote-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: opacity .24s ease, transform .24s ease, border-color .24s ease;
}

.quote-step.hidden {
  display: none;
}

.quote-step.active-step {
  border-color: rgba(82,199,214,.45);
  box-shadow: var(--shadow-sm);
}

.step-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.step-no {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--black);
  font-weight: 950;
}

.step-head h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.step-head p {
  color: var(--muted);
  font-size: 14.5px;
}

.dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-summary {
  border-radius: 18px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  padding: 16px;
  color: var(--text);
}

.quote-summary strong {
  color: var(--black);
}

.quote-progress-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quote-progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.quote-progress-bullet {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,.28);
}

.quote-progress-item.done {
  color: #fff;
}

.quote-progress-item.done .quote-progress-bullet {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(82,199,214,.13);
}

@media (max-width: 1160px) {
  .contact-layout.upgraded,
  .quote-builder {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: relative;
    top: 0;
  }
}

@media (max-width: 900px) {
  .quick-contact-grid,
  .map-actions,
  .route-input-row,
  .dynamic-fields {
    grid-template-columns: 1fr;
  }

  .status-card-top {
    flex-direction: column;
  }

  .status-time {
    text-align: left;
    max-width: none;
  }
}


.nav a.active {
  color: var(--black) !important;
  background: linear-gradient(135deg, var(--cyan-soft), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(82,199,214,.34);
}

.nav-cta.active {
  background: linear-gradient(135deg, var(--cyan), #7fe5ef) !important;
  color: var(--black) !important;
}

.dropdown {
  top: 100% !important;
  margin-top: 0 !important;
  padding-top: 10px;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav > li:hover .dropdown,
.nav > li:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.quick-contact-grid,
.map-actions {
  align-items: stretch;
}

.quick-contact-grid .btn,
.map-actions .btn {
  width: 100%;
  min-height: 46px;
  height: 100%;
}

.contact-layout.upgraded {
  align-items: stretch;
}

.location-stack {
  height: 100%;
}

.route-card {
  min-height: 100%;
}

.status-time {
  min-width: 190px;
}

.faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition: max-height .34s ease, opacity .24s ease, padding .24s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 20px 18px;
  opacity: 1;
}

.faq-question span {
  transition: transform .22s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.about-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.about-band .stat {
  min-height: 128px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--cyan), rgba(82,199,214,.08));
}

.timeline-item {
  position: relative;
  padding-left: 56px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: var(--shadow-xs);
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.timeline-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

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

.reference-section-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}

.reference-section-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.reference-section-card p {
  color: var(--muted);
}

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

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.process-step strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 14px;
  background: var(--cyan-soft);
  color: var(--black);
}

.compact-quote .quote-builder {
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
}

.compact-quote .quote-step {
  padding: 22px;
}

.compact-quote .dynamic-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-quote .form-grid {
  gap: 14px;
}

.compact-quote .quote-aside h2 {
  font-size: 25px;
}

@media (max-width: 1160px) {
  .about-band,
  .reference-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-quote .quote-builder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dropdown {
    padding-top: 9px;
  }

  .has-dropdown::after {
    display: none;
  }

  .status-time {
    min-width: 0;
  }

  .about-band,
  .reference-process,
  .compact-quote .dynamic-fields {
    grid-template-columns: 1fr;
  }
}


.map-actions.single {
  grid-template-columns: 1fr !important;
}

.map-actions.single .btn {
  width: 100%;
}

.route-card::after {
  display: none !important;
}

.route-shortcuts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.route-shortcuts button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .18s ease;
}

.route-shortcuts button:hover {
  border-color: rgba(82,199,214,.5);
  background: var(--cyan-soft);
  color: var(--black);
  transform: translateY(-1px);
}

.contact-status-card {
  transition: background .28s ease, border-color .28s ease;
}

.status-value {
  transition: color .28s ease;
}

.status-dot {
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}

.status-dot.open {
  animation: statusPulseGreen 1.8s ease-in-out infinite;
}

.status-dot.soon {
  background: #f59e0b !important;
  box-shadow: 0 0 0 6px rgba(245,158,11,.16) !important;
  animation: statusPulseOrange 1.4s ease-in-out infinite;
}

.status-dot.closed {
  background: var(--red) !important;
  box-shadow: 0 0 0 6px rgba(240,68,56,.16) !important;
}

@keyframes statusPulseGreen {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(18,183,106,.14); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(18,183,106,.06); }
}

@keyframes statusPulseOrange {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(245,158,11,.16); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(245,158,11,.06); }
}

.big-progress {
  position: relative;
}

.big-progress span {
  width: 0%;
  background: #ef4444;
  transition: width .75s cubic-bezier(.2,.8,.2,1), background .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.big-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-100%);
  animation: progressSheen 2s linear infinite;
}

@keyframes progressSheen {
  to { transform: translateX(100%); }
}

.big-progress span.closed {
  background: linear-gradient(90deg, #ef4444, #b91c1c) !important;
  box-shadow: 0 0 20px rgba(239,68,68,.25);
}

.big-progress span.soon {
  background: linear-gradient(90deg, #f59e0b, #f97316) !important;
  box-shadow: 0 0 20px rgba(245,158,11,.28);
}

.big-progress span.open-start {
  background: linear-gradient(90deg, #16a34a, #22c55e) !important;
  box-shadow: 0 0 20px rgba(34,197,94,.26);
}

.big-progress span.open-mid {
  background: linear-gradient(90deg, #16a34a, #eab308) !important;
  box-shadow: 0 0 20px rgba(234,179,8,.24);
}

.big-progress span.open-late {
  background: linear-gradient(90deg, #16a34a, #eab308, #f97316) !important;
  box-shadow: 0 0 20px rgba(249,115,22,.26);
}

.home-highlight {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xs);
}

.home-highlight h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.home-highlight p {
  color: var(--muted);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-box {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.metric-box strong {
  display: block;
  color: var(--black);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 7px;
}

.metric-box span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.home-process .process-step {
  min-height: 190px;
}

.home-info-list {
  display: grid;
  gap: 12px;
}

.home-info-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
}

.home-info-list li::before {
  content: "✓";
  color: var(--cyan-dark);
  font-weight: 900;
  flex: 0 0 auto;
}

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

.application-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.application-item strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  margin-bottom: 6px;
}

.application-item span {
  color: var(--muted);
  font-size: 14.5px;
}

@media (max-width: 1160px) {
  .metric-strip,
  .home-process {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

@media (max-width: 700px) {
  .metric-strip,
  .home-process,
  .application-grid {
    grid-template-columns: 1fr;
  }
}


.hero::after,
.hero-panel,
.status-dot.open,
.status-dot.soon,
.big-progress span::after,
.contact-status-card::before {
  animation: none !important;
}

.hero-bg {
  transform: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .38s ease, transform .38s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


body {
  background:
    radial-gradient(circle at 8% 4%, rgba(82,199,214,.13), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(18,23,25,.07), transparent 24rem),
    linear-gradient(180deg, #f8fbfd 0%, #f3f6fa 100%);
}

.header {
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(228,231,236,.72);
  box-shadow: 0 10px 28px rgba(16,24,40,.055);
}

.logo img {
  filter: drop-shadow(0 7px 12px rgba(18,23,25,.12));
}

.nav a {
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

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

.nav a.active {
  background: linear-gradient(135deg, rgba(82,199,214,.20), rgba(255,255,255,.95)) !important;
  color: var(--black) !important;
  box-shadow: inset 0 0 0 1px rgba(82,199,214,.32), 0 6px 16px rgba(82,199,214,.10);
}

.hero {
  min-height: 670px;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(18,23,25,.96) 0%, rgba(18,23,25,.77) 48%, rgba(18,23,25,.28) 100%),
    radial-gradient(circle at 22% 18%, rgba(82,199,214,.20), transparent 34%);
}

.hero h1,
.page-hero h1 {
  letter-spacing: -.05em;
}

.hero-panel,
.card,
.form-shell,
.contact-panel,
.route-card,
.map-card,
.home-highlight,
.metric-box,
.application-item,
.process-step,
.reference-section-card,
.timeline-card {
  border-color: rgba(208,213,221,.78);
  box-shadow: 0 14px 34px rgba(16,24,40,.075);
}

.card,
.home-highlight,
.metric-box,
.application-item,
.process-step,
.reference-section-card,
.timeline-card,
.form-shell,
.route-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}

.card:hover,
.metric-box:hover,
.application-item:hover,
.process-step:hover,
.reference-section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(16,24,40,.10);
  border-color: rgba(82,199,214,.38);
}

.btn {
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #47c2d1, #8be8ef);
  box-shadow: 0 12px 25px rgba(82,199,214,.24);
}

.btn-dark {
  background: linear-gradient(135deg, #111719, #242c30);
}

.info-band,
.cta {
  box-shadow: 0 24px 56px rgba(18,23,25,.20);
}

.contact-panel {
  background:
    radial-gradient(circle at 12% 8%, rgba(82,199,214,.16), transparent 28%),
    linear-gradient(145deg, #111719, #20282c);
}

.contact-status-card {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.12);
}

.big-progress {
  height: 12px;
}

.big-progress span {
  transition: width .48s ease, background .25s ease, box-shadow .25s ease;
}

.status-value {
  font-size: 22px;
}

.status-time {
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.footer-bottom a {
  color: #8be8ef;
  font-weight: 900;
}

.footer-bottom a:hover {
  color: #ffffff;
}


.route-card::after {
  display: none !important;
}


@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .nav a:hover {
    transform: none;
  }

  .card:hover,
  .metric-box:hover,
  .application-item:hover,
  .process-step:hover,
  .reference-section-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .card,
  .metric-box,
  .application-item,
  .process-step,
  .reference-section-card,
  .big-progress span {
    transition: none !important;
  }
}


.status-card-top {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.status-value {
  font-size: clamp(18px, 2vw, 22px) !important;
  line-height: 1.16 !important;
  max-width: 100% !important;
  word-break: normal;
}

.status-time {
  text-align: left !important;
  max-width: none !important;
  min-width: 0 !important;
  font-size: 13px !important;
}

.status-value span:last-child {
  display: inline;
}

.progress-meta {
  align-items: center;
}

.progress-meta span:last-child {
  white-space: nowrap;
}


.hero::after,
.hero-panel,
.status-dot.open,
.status-dot.soon,
.big-progress span::after,
.contact-status-card::before {
  animation: none !important;
}

.hero-bg {
  transform: none !important;
}

.reveal {
  transform: translateY(10px) !important;
  transition: opacity .32s ease, transform .32s ease !important;
}

.reveal.in {
  transform: translateY(0) !important;
}

.card,
.metric-box,
.application-item,
.process-step,
.reference-section-card,
.timeline-card,
.form-shell,
.route-card,
.home-highlight {
  box-shadow: 0 10px 24px rgba(16,24,40,.07) !important;
}

.card:hover,
.metric-box:hover,
.application-item:hover,
.process-step:hover,
.reference-section-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(16,24,40,.095) !important;
}

.blog-hero-mini {
  background:
    radial-gradient(circle at 10% 10%, rgba(82,199,214,.18), transparent 28%),
    linear-gradient(135deg, #111719, #243237);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.blog-hero-mini img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  justify-self: end;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.18));
}

.blog-hero-mini h2 {
  font-size: clamp(28px,4vw,42px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.blog-hero-mini p {
  color: rgba(255,255,255,.76);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}

.article-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-xs);
}

.article-content h2 {
  margin: 28px 0 10px;
  font-size: clamp(25px,3vw,34px);
  line-height: 1.16;
  color: var(--black);
}

.article-content h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  color: var(--black);
}

.article-content p {
  color: var(--text);
  margin-bottom: 14px;
}

.article-content ul,
.article-content ol {
  margin: 14px 0 18px 20px;
  color: var(--text);
}

.article-content li {
  margin-bottom: 8px;
}

.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}

.article-cover img {
  width: 100%;
  display: block;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 16px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.sidebar-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.sidebar-card a {
  display: block;
  padding: 9px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

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

.sidebar-card a:hover {
  color: var(--cyan-dark);
}

.seo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.seo-pill-list span {
  border: 1px solid rgba(82,199,214,.35);
  background: var(--cyan-soft);
  color: var(--black);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12.5px;
  font-weight: 850;
}

.blog-list-card .blog-body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.blog-list-card .btn {
  margin-top: auto;
}

@media (max-width: 1000px) {
  .article-grid,
  .blog-hero-mini {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .blog-hero-mini img {
    justify-self: start;
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 560px) {
  .article-content,
  .blog-hero-mini {
    padding: 22px;
  }

  .status-value {
    font-size: 19px !important;
  }
}


.logo {
  min-width: 230px;
  gap: 0;
}

.logo img {
  width: 225px !important;
  height: 62px !important;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
}

.logo .logo-text {
  display: none !important;
}

.header-inner {
  gap: 20px;
}

.nav {
  gap: 3px;
}

.nav a {
  font-size: 13.6px;
  padding-inline: 9px;
}

.footer-logo {
  width: 220px !important;
  height: auto !important;
  object-fit: contain;
  padding: 12px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.hero-logo {
  width: 150px !important;
  height: auto !important;
  padding: 10px 12px;
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  filter: none !important;
}


.blog-hero-mini {
  position: relative;
  overflow: hidden;
}

.blog-hero-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(82,199,214,.24), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 45%, transparent 75%);
  pointer-events: none;
}

.blog-hero-mini > * {
  position: relative;
  z-index: 1;
}

.blog-hero-mini img {
  background: rgba(255,255,255,.94);
  border-radius: 24px;
  padding: 14px;
  width: 205px;
  height: auto;
  filter: none;
}

.blog-list-card {
  position: relative;
  overflow: hidden;
}

.blog-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(82,199,214,.08), transparent 36%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.blog-list-card:hover::before {
  opacity: 1;
}

.blog-list-card .blog-image {
  min-height: 215px;
  position: relative;
  overflow: hidden;
}

.blog-list-card .blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(18,23,25,.38), transparent 65%),
    radial-gradient(circle at 18% 18%, rgba(82,199,214,.16), transparent 30%);
}

.blog-list-card:hover .blog-image {
  filter: saturate(1.05) contrast(1.02);
}

.blog-body h3 {
  letter-spacing: -.02em;
}

.seo-pill-list span {
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.seo-pill-list span:hover {
  transform: translateY(-1px);
  background: #dff7fb;
  border-color: rgba(82,199,214,.55);
}


.article-grid {
  gap: 34px;
}

.article-content {
  position: relative;
  overflow: hidden;
}

.article-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--cyan), #8be8ef, #111719);
}

.article-cover {
  position: relative;
  background: linear-gradient(135deg, #111719, #263238);
}

.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 16%, rgba(82,199,214,.18), transparent 35%);
  pointer-events: none;
}

.article-cover img {
  max-height: 420px;
  object-fit: cover;
}

.article-content > h2:first-of-type {
  margin-top: 18px;
}

.article-content h2 {
  position: relative;
  padding-left: 16px;
}

.article-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  bottom: .18em;
  width: 5px;
  border-radius: 999px;
  background: var(--cyan);
}

.article-content h3 {
  display: inline-block;
  padding: 8px 12px;
  background: var(--cyan-soft);
  border-radius: 999px;
  font-size: 18px;
}

.article-content ul li,
.article-content ol li {
  padding-left: 4px;
}

.article-content blockquote,
.article-callout {
  border-left: 5px solid var(--cyan);
  background: linear-gradient(135deg, var(--cyan-soft), #fff);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px 0;
  color: var(--text);
}

.article-sidebar {
  gap: 18px;
}

.sidebar-card {
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -95px;
  top: -95px;
  background: rgba(82,199,214,.12);
  border-radius: 50%;
}

.sidebar-card > * {
  position: relative;
  z-index: 1;
}

.sidebar-card h3 {
  color: var(--black);
}

.article-content .cta {
  position: relative;
  overflow: hidden;
}

.article-content .cta::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -110px;
  top: -110px;
  background: rgba(82,199,214,.18);
  border-radius: 50%;
}


.blog-list-card,
.article-content,
.sidebar-card {
  animation: softFade .42s ease both;
}

@keyframes softFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .logo {
    min-width: 190px;
  }

  .logo img {
    width: 190px !important;
    height: 56px !important;
  }

  .nav a {
    font-size: 12.8px;
    padding-inline: 7px;
  }
}

@media (max-width: 900px) {
  .logo {
    min-width: auto;
  }

  .logo img {
    width: 166px !important;
    height: 50px !important;
  }

  .footer-logo {
    width: 190px !important;
  }

  .hero-logo {
    width: 130px !important;
  }

  .blog-list-card,
  .article-content,
  .sidebar-card {
    animation: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 142px !important;
  }
}


.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
}

.faq-question {
  align-items: center;
  font-size: 15.5px;
}

.faq-answer {
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--black);
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.blog-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #111719, #23343a);
  color: #fff;
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
}

.blog-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .36;
  transform: scale(1.02);
}

.blog-feature-card > * {
  position: relative;
  z-index: 1;
}

.blog-feature-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.blog-feature-card p {
  color: rgba(255,255,255,.80);
  max-width: 720px;
}

.blog-side-list {
  display: grid;
  gap: 14px;
}

.blog-side-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-xs);
  transition: .18s ease;
}

.blog-side-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(82,199,214,.42);
}

.blog-side-mini .meta {
  margin-bottom: 6px;
}

.blog-side-mini h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

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

.product-spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.product-spec-card strong {
  display: block;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
}

.product-spec-card span {
  color: var(--muted);
}

.service-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-deep-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.service-deep-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.service-deep-card p {
  color: var(--muted);
}

.article-highlight {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(82,199,214,.28);
  background: linear-gradient(135deg, var(--cyan-soft), #fff);
  border-radius: 18px;
  padding: 18px;
  margin: 20px 0;
}

.article-highlight strong:first-child {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--black);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

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

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

.article-info-table th {
  background: #f8fafc;
  color: var(--black);
}

.article-info-table td {
  color: var(--text);
}

@media (max-width: 1000px) {
  .blog-featured-grid,
  .service-deep-grid,
  .product-spec-grid {
    grid-template-columns: 1fr;
  }
}


.footer-logo {
  width: 220px !important;
  height: auto !important;
  object-fit: contain;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-logo {
  width: 160px !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.24)) !important;
}

.blog-hero-mini img {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 220px !important;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.22)) !important;
}

@media (max-width: 900px) {
  .footer-logo {
    width: 190px !important;
  }

  .hero-logo {
    width: 135px !important;
  }

  .blog-hero-mini img {
    width: 180px !important;
  }
}


:root {
  --shadow-xs: 0 6px 16px rgba(16, 24, 40, .045);
  --shadow-sm: 0 10px 24px rgba(16, 24, 40, .065);
  --shadow-md: 0 16px 38px rgba(16, 24, 40, .10);
  --shadow-lg: 0 22px 56px rgba(18, 23, 25, .16);
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--surface);
}

.header,
.hero-panel {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header {
  background: rgba(255,255,255,.985);
}

.hero::after {
  animation: none !important;
  opacity: .42;
}

.hero-panel {
  animation: none !important;
}

.hero-bg {
  transform: none !important;
}

.section,
.section-tight {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.reveal {
  transform: translateY(10px);
  transition: opacity .32s ease, transform .32s ease;
}

.card,
.btn,
.product-card,
.reference-logo,
.reference-section-card,
.process-step {
  transition-duration: .16s !important;
}

@media (hover: none) {
  .card:hover,
  .btn:hover,
  .reference-section-card:hover,
  .process-step:hover {
    transform: none !important;
    box-shadow: var(--shadow-xs) !important;
  }
}


.slider-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.slider-card{display:grid;grid-template-columns:190px 1fr;gap:18px;align-items:center}.slider-card img{width:100%;height:140px;object-fit:contain;background:#f5fbff;border-radius:18px}.service-card img{width:100%;height:170px;object-fit:contain;background:#f7fbff;border-radius:18px;margin-bottom:16px}.reference-section-card img{width:100%;max-height:170px;object-fit:contain;background:#f8fbff;border-radius:18px;margin-bottom:16px}.faq-list{display:grid;gap:12px;max-width:920px;margin:0 auto}.faq-item{background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:0 10px 24px rgba(15,23,42,.06)}.faq-item summary{font-weight:800;cursor:pointer}.faq-item p{color:var(--muted);margin:12px 0 0}.search-box{display:flex;gap:12px;max-width:820px;margin:0 auto 28px}.search-box input{flex:1;padding:16px 18px;border:1px solid var(--line);border-radius:16px;font-size:16px}.search-results{display:grid;gap:14px}.search-results h3{margin:24px 0 4px}.search-result-card{display:block;padding:18px;border:1px solid var(--line);border-radius:18px;background:#fff;color:var(--text);box-shadow:0 10px 24px rgba(15,23,42,.06)}.search-result-card strong{display:block;margin-bottom:5px}.search-result-card span{color:var(--muted)}.metric-strip.vertical{display:grid;grid-template-columns:1fr;gap:14px}.btn-row.center{justify-content:center;margin-top:24px}
@media(max-width:800px){.slider-grid,.slider-card{grid-template-columns:1fr}.search-box{flex-direction:column}}


.wizard-shell{max-width:980px}.wizard-card{background:#fff;border:1px solid var(--line);border-radius:28px;padding:28px;box-shadow:var(--shadow-sm)}.wizard-progress{display:flex;gap:10px;margin-bottom:24px}.wizard-progress span{width:38px;height:38px;border-radius:999px;display:grid;place-items:center;background:#eef2f6;color:var(--muted);font-weight:900}.wizard-progress span.active{background:linear-gradient(135deg,var(--cyan),#8be8ef);color:var(--black)}.wizard-step{display:none}.wizard-step.active{display:block}.wizard-step h3{font-size:24px;margin-bottom:18px}.wizard-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:24px;flex-wrap:wrap}.form-full{grid-column:1/-1}.form-check{display:flex;align-items:center;gap:10px;color:var(--text);font-weight:700}.form-check input{width:auto}.selector-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:22px;align-items:start}.selector-grid--form-only{grid-template-columns:minmax(0,760px);justify-content:center}.selector-card,.selector-result{padding:28px}.selector-amp{margin:18px 0;padding:20px;border-radius:22px;background:linear-gradient(135deg,var(--cyan-soft),#fff);border:1px solid rgba(82,199,214,.24)}.selector-amp strong{display:block;font-size:52px;line-height:1;color:var(--black)}.selector-amp span{color:var(--muted);font-weight:800}.document-card img,.certificate-card img{height:160px;object-fit:contain;background:#f8fbff;border-radius:18px;margin-bottom:16px}.mini-list{display:grid;gap:6px;margin:14px 0;color:var(--muted)}
@media(max-width:900px){.selector-grid{grid-template-columns:1fr}.wizard-card{padding:20px}.wizard-actions{justify-content:stretch}.wizard-actions .btn{width:100%}}


.topbar-actions{display:inline-flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.language-switcher{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:900;color:rgba(255,255,255,.86)}
.language-switcher select{height:30px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.12);color:#fff;border-radius:999px;padding:0 28px 0 10px;font-size:12px;font-weight:900;outline:none;cursor:pointer}
.language-switcher select option{color:#111;background:#fff}
.google-translate-hidden{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden}
body > .skiptranslate, .goog-te-banner-frame, .goog-te-gadget-icon{display:none!important}
body{top:0!important}
.heno-chatbot{position:fixed;right:22px;bottom:22px;z-index:9999;font-family:inherit}
.heno-chatbot-toggle{width:156px;min-height:58px;border:0;border-radius:22px;background:linear-gradient(135deg,var(--cyan),#0f172a);color:#fff;box-shadow:0 22px 55px rgba(15,23,42,.28);cursor:pointer;display:grid;align-content:center;justify-content:center;text-align:left;padding:11px 18px 11px 47px;position:relative;overflow:hidden}
.heno-chatbot-toggle strong{font-size:14px;line-height:1.1;display:block}.heno-chatbot-toggle small{opacity:.85;font-weight:800;font-size:11px;display:block;margin-top:3px}.chatbot-pulse{position:absolute;left:18px;top:50%;width:15px;height:15px;border-radius:50%;background:#fff;transform:translateY(-50%);box-shadow:0 0 0 0 rgba(255,255,255,.65);animation:chatPulse 1.7s infinite}@keyframes chatPulse{70%{box-shadow:0 0 0 14px rgba(255,255,255,0)}100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}}
.heno-chatbot-panel{position:absolute;right:0;bottom:76px;width:min(365px,calc(100vw - 28px));height:520px;max-height:calc(100vh - 110px);background:#fff;border:1px solid rgba(15,23,42,.12);border-radius:24px;box-shadow:0 26px 75px rgba(15,23,42,.28);overflow:hidden;display:grid;grid-template-rows:auto 1fr auto auto;opacity:0;transform:translateY(12px) scale(.96);pointer-events:none;transition:.2s ease}
.heno-chatbot.open .heno-chatbot-panel{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}.heno-chatbot-panel header{background:linear-gradient(135deg,#0f172a,#111827);color:#fff;padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:14px}.heno-chatbot-panel header strong{display:block;font-size:16px}.heno-chatbot-panel header span{display:block;color:rgba(255,255,255,.72);font-size:12px;margin-top:2px}.heno-chatbot-panel header button{border:0;background:rgba(255,255,255,.12);color:#fff;width:31px;height:31px;border-radius:999px;font-size:22px;line-height:1;cursor:pointer}
.heno-chatbot-messages{padding:16px;display:flex;flex-direction:column;gap:10px;overflow:auto;background:#f8fafc}.bot-msg,.user-msg{max-width:88%;padding:11px 13px;border-radius:16px;font-size:13.5px;line-height:1.45;box-shadow:0 8px 18px rgba(15,23,42,.05)}.bot-msg{align-self:flex-start;background:#fff;border:1px solid #e5e7eb;color:#1f2937;border-bottom-left-radius:6px}.user-msg{align-self:flex-end;background:var(--cyan);color:#071318;border-bottom-right-radius:6px;font-weight:800}.chatbot-actions{display:flex;gap:6px;flex-wrap:wrap;margin-top:9px}.chatbot-actions a{display:inline-flex;padding:7px 9px;border-radius:999px;background:#eef9fc;color:#0f172a;font-size:12px;font-weight:900;border:1px solid #d7f2f6}.heno-chatbot-quick{display:flex;gap:7px;flex-wrap:wrap;padding:10px 12px;border-top:1px solid #e5e7eb;background:#fff}.heno-chatbot-quick button{border:1px solid #e5e7eb;background:#fff;border-radius:999px;padding:7px 9px;font-size:12px;font-weight:900;cursor:pointer}.heno-chatbot-panel form{display:grid;grid-template-columns:1fr auto;gap:8px;padding:12px;background:#fff;border-top:1px solid #e5e7eb}.heno-chatbot-panel input{border:1px solid #d0d5dd;border-radius:14px;padding:11px 12px;font:inherit;outline:none}.heno-chatbot-panel input:focus{border-color:var(--cyan);box-shadow:0 0 0 4px rgba(82,199,214,.14)}.heno-chatbot-panel form button{border:0;border-radius:14px;background:#0f172a;color:#fff;font-weight:900;padding:0 14px;cursor:pointer}
@media(max-width:680px){.topbar-actions{width:100%;justify-content:space-between}.heno-chatbot{right:14px;bottom:14px}.heno-chatbot-toggle{width:58px;height:58px;min-height:58px;border-radius:50%;padding:0}.heno-chatbot-toggle strong,.heno-chatbot-toggle small{display:none}.chatbot-pulse{left:50%;transform:translate(-50%,-50%)}.heno-chatbot-panel{right:-2px;bottom:72px;width:calc(100vw - 24px);height:min(520px,calc(100vh - 100px))}}


.header-inner{min-height:82px}.nav{align-items:center}.nav>li>a{letter-spacing:-.01em}.nav-language{display:flex;align-items:center}.language-switcher.in-header{gap:8px;color:#0f172a;background:#f8fafc;border:1px solid rgba(15,23,42,.10);border-radius:999px;padding:8px 10px;box-shadow:0 8px 20px rgba(15,23,42,.05)}.language-switcher.in-header span{font-size:11px;text-transform:uppercase;color:#64748b}.language-switcher.in-header select{height:34px;min-width:112px;background:#fff;color:#0f172a;border:1px solid #dbe3ea;border-radius:999px}.page-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#07111e,#102336);color:#fff}.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 20%,rgba(9,212,255,.26),transparent 32%),linear-gradient(90deg,rgba(7,17,30,.94),rgba(7,17,30,.74));z-index:0}.page-hero .container{position:relative;z-index:1;min-height:300px;display:grid;align-content:center}.page-hero h1{max-width:930px;font-size:clamp(34px,5vw,64px);letter-spacing:-.045em;line-height:.98}.page-hero p{max-width:780px;font-size:clamp(16px,2vw,20px);color:rgba(255,255,255,.78)}.page-hero-bg{opacity:.20;filter:saturate(1.1);background-size:contain;background-repeat:no-repeat;background-position:right 7% center}.breadcrumb a,.breadcrumb span{color:rgba(255,255,255,.82)}.section-title h2{letter-spacing:-.035em}.card,.reference-section-card,.process-step,.blog-hero-mini,.quote-step,.contact-panel,.route-card,.map-card,.cta{border:1px solid rgba(15,23,42,.08);box-shadow:0 18px 50px rgba(15,23,42,.08)}.card,.reference-section-card,.process-step{border-radius:26px}.grid-3,.grid-4{align-items:stretch}.product-card,.blog-card,.service-card,.document-card,.certificate-card{overflow:hidden}.product-image,.blog-image{background-size:contain!important;background-repeat:no-repeat!important;background-position:center!important;background-color:#f8fbff}.service-card img,.document-card img,.certificate-card img,.reference-section-card img{transition:transform .16s ease}.service-card:hover img,.document-card:hover img,.certificate-card:hover img,.reference-section-card:hover img{transform:translateY(-2px)}.quick-contact-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.contact-item a{color:inherit;font-weight:900}.hours-list{max-height:none}.route-input-row{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:end}.map-card.enhanced iframe{width:100%;min-height:390px;border:0;border-radius:24px}.chatbot-head-actions{position:relative;display:flex;align-items:center;gap:8px}.chatbot-menu-btn{font-size:20px!important}.chatbot-menu{position:absolute;right:42px;top:38px;min-width:190px;background:#fff;color:#0f172a;border:1px solid rgba(15,23,42,.12);border-radius:14px;padding:8px;box-shadow:0 18px 45px rgba(15,23,42,.20);z-index:3}.chatbot-menu button{width:100%!important;height:auto!important;border-radius:10px!important;background:#fff!important;color:#0f172a!important;font-size:13px!important;font-weight:900!important;text-align:left;padding:10px 12px!important}.chatbot-menu button:hover{background:#f1f5f9!important}.bot-msg.pending{opacity:.72}.heno-chatbot-panel{border-radius:28px}.heno-chatbot-messages{scrollbar-width:thin}.quote-builder{align-items:start}.quote-aside{position:sticky;top:106px}.quote-aside img{max-width:220px;height:auto;object-fit:contain}.form-group input[type="tel"]{font-variant-numeric:tabular-nums}.selector-card .btn,.selector-result .btn,.wizard-card .btn,.quote-steps .btn{min-height:48px}@media(max-width:1100px){.nav{gap:8px}.language-switcher.in-header{padding:7px 8px}.quote-aside{position:static}}@media(max-width:900px){.nav-language{width:100%;padding:8px 14px}.language-switcher.in-header{width:100%;justify-content:space-between}.language-switcher.in-header select{flex:0 0 150px}.page-hero .container{min-height:260px}.quick-contact-grid,.route-input-row{grid-template-columns:1fr}.map-card.enhanced iframe{min-height:300px}}@media(max-width:560px){.page-hero h1{font-size:32px}.topbar-inner{gap:8px}.contact-layout.upgraded{grid-template-columns:1fr}.heno-chatbot-panel{border-radius:22px}.quote-steps,.quote-aside{padding:18px!important}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}


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

.nav-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 82px;
  min-height: 42px;
  overflow: hidden;
  border-radius: 14px;
  transition: width .2s ease, background .18s ease, box-shadow .18s ease;
}

.nav-search.is-open {
  width: min(260px, 28vw);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.nav-search-toggle {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav-search-toggle:hover,
.nav-search-toggle.active,
.nav-search.is-open .nav-search-toggle {
  color: var(--black);
  background: var(--cyan-soft);
}

.nav-search-input {
  width: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: width .2s ease, opacity .16s ease, margin .2s ease;
}

.nav-search.is-open .nav-search-input {
  width: 160px;
  opacity: 1;
  pointer-events: auto;
  margin-left: 8px;
  margin-right: 10px;
}

.nav-search-input::placeholder {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-search-item,
  .nav-search {
    width: 100%;
  }

  .nav-search {
    justify-content: flex-start;
    padding: 0 14px;
    box-shadow: none;
  }

  .nav-search.is-open {
    width: 100%;
    background: transparent;
  }

  .nav-search-toggle {
    padding: 10px 12px;
  }

  .nav-search.is-open .nav-search-input {
    flex: 1;
    width: 100%;
    margin-right: 0;
  }
}

.heno-hp{position:absolute!important;left:-99999px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}


.header-inner {
  gap: 24px;
}

.nav {
  flex: 1;
  justify-content: flex-end;
  gap: 5px;
}

.nav > li {
  flex: 0 0 auto;
}

.nav a {
  min-height: 40px;
  padding: 9px 10px;
  font-size: 13.4px;
}

.nav-cta {
  margin-left: 4px;
  padding-inline: 15px !important;
}

.dropdown-divider {
  display: block;
  height: 1px;
  margin: 7px 6px;
  background: rgba(15, 23, 42, .08);
}

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

.nav-search-item {
  margin-left: 8px;
}

.nav-search {
  width: 198px !important;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 4px 5px 4px 12px;
  overflow: visible;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.nav-search:focus-within {
  border-color: rgba(82, 199, 214, .72);
  box-shadow: 0 0 0 4px rgba(82, 199, 214, .14);
}

.nav-search-input {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13.2px;
  font-weight: 800;
}

.nav-search-submit {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  transition: transform .16s ease, background .16s ease;
}

.nav-search-submit:hover {
  transform: translateY(-1px);
  background: var(--cyan);
}

.nav-language {
  margin-left: 4px;
  order: 99;
}

.language-switcher.in-header {
  min-height: 38px;
  padding: 4px 6px 4px 10px !important;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: none;
}

.language-switcher.in-header span {
  font-size: 10.5px;
  line-height: 1;
}

.language-switcher.in-header select {
  height: 30px;
  min-width: 88px;
  padding-left: 9px;
  padding-right: 24px;
  font-size: 12px;
}

@media (max-width: 1220px) {
  .logo {
    min-width: 196px;
  }

  .logo img {
    width: 198px !important;
  }

  .nav {
    gap: 3px;
  }

  .nav a {
    padding-inline: 8px;
    font-size: 12.9px;
  }

  .nav-search {
    width: 168px !important;
  }
}

@media (max-width: 1080px) {
  .nav-search {
    width: 145px !important;
  }

  .language-switcher.in-header span {
    display: none;
  }

  .language-switcher.in-header select {
    min-width: 78px;
  }
}

@media (max-width: 900px) {
  .nav {
    justify-content: flex-start;
    gap: 6px;
  }

  .nav > li,
  .nav-util,
  .nav-search-item,
  .nav-language {
    width: 100%;
    margin-left: 0;
  }

  .nav-search {
    width: 100% !important;
    min-height: 44px;
    padding: 6px 8px 6px 14px;
    background: #fff;
    box-shadow: none;
  }

  .nav-search-input {
    font-size: 15px;
  }

  .nav-search-submit {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .nav-language {
    order: 99;
    padding: 0;
  }

  .language-switcher.in-header {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 7px 10px 7px 14px !important;
  }

  .language-switcher.in-header span {
    display: inline;
  }

  .language-switcher.in-header select {
    flex: 0 0 132px;
    min-width: 132px;
  }
}


.nav-search-clean,
.nav-search.nav-search-clean {
  width: 242px !important;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 5px 5px 13px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .055);
  overflow: hidden;
}

.nav-search-clean:hover {
  border-color: rgba(82, 199, 214, .38);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .075);
}

.nav-search-clean:focus-within {
  border-color: rgba(82, 199, 214, .78);
  box-shadow: 0 0 0 4px rgba(82, 199, 214, .14), 0 12px 28px rgba(15, 23, 42, .075);
  background: #fff;
}

.nav-search-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #64748b;
}

.nav-search-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.nav-search-clean .nav-search-input {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  height: 32px;
  margin: 0 !important;
  padding: 0;
  opacity: 1 !important;
  pointer-events: auto !important;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.nav-search-clean .nav-search-input::placeholder {
  color: #94a3b8;
  font-weight: 700;
}

.nav-search-clean .nav-search-submit {
  flex: 0 0 auto;
  width: auto;
  min-width: 52px;
  height: 32px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #111719;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.nav-search-clean .nav-search-submit:hover {
  transform: translateY(-1px);
  background: #0f172a;
}

.nav-search-clean .nav-search-submit span {
  color: inherit;
  font: inherit;
}

@media (max-width: 1220px) {
  .nav-search.nav-search-clean {
    width: 210px !important;
  }

  .nav-search-clean .nav-search-input {
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  .nav-search.nav-search-clean {
    width: 180px !important;
  }

  .nav-search-clean .nav-search-submit {
    min-width: 44px;
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .nav-search.nav-search-clean {
    width: 100% !important;
    min-height: 46px;
    border-radius: 14px;
    box-shadow: none;
    padding: 6px 7px 6px 14px;
  }

  .nav-search-clean .nav-search-input {
    height: 34px;
    font-size: 15px;
  }

  .nav-search-clean .nav-search-submit {
    min-width: 58px;
    height: 34px;
  }
}


.heno-chatbot{right:24px;bottom:24px}.heno-chatbot-toggle{width:238px;min-height:76px;border-radius:28px;background:linear-gradient(135deg,#07111e 0%,#0f3344 48%,#09d4ff 130%);display:flex;align-items:center;justify-content:flex-start;gap:13px;padding:13px 16px;border:1px solid rgba(255,255,255,.22);box-shadow:0 24px 60px rgba(15,23,42,.34),0 0 0 7px rgba(9,212,255,.10);text-align:left;isolation:isolate;overflow:visible}.heno-chatbot-toggle::before{content:"";position:absolute;inset:-2px;border-radius:30px;background:linear-gradient(135deg,rgba(9,212,255,.55),rgba(255,255,255,0),rgba(9,212,255,.28));z-index:-1;opacity:.9;animation:chatGlow 2.2s ease-in-out infinite}.heno-chatbot-toggle::after{content:"";position:absolute;right:16px;top:12px;width:9px;height:9px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 5px rgba(34,197,94,.18)}@keyframes chatGlow{0%,100%{filter:blur(0);opacity:.62}50%{filter:blur(3px);opacity:1}}.chatbot-bot-icon,.chatbot-panel-avatar{position:relative;flex:0 0 auto;width:50px;height:50px;border-radius:18px;background:linear-gradient(180deg,#fff,#dffafe);border:2px solid rgba(255,255,255,.78);box-shadow:0 12px 26px rgba(0,0,0,.22),inset 0 -8px 14px rgba(9,212,255,.16)}.chatbot-bot-icon::before,.chatbot-panel-avatar::before{content:"";position:absolute;left:13px;top:18px;width:7px;height:7px;border-radius:50%;background:#0f172a;box-shadow:17px 0 0 #0f172a}.chatbot-bot-icon::after,.chatbot-panel-avatar::after{content:"";position:absolute;left:16px;right:16px;bottom:13px;height:4px;border-radius:999px;background:#09d4ff}.chatbot-toggle-copy{display:grid;gap:4px;min-width:0;padding-right:14px}.heno-chatbot-toggle .chatbot-toggle-copy strong{font-size:17px;line-height:1;font-weight:950;letter-spacing:-.025em;color:#fff;display:block}.heno-chatbot-toggle .chatbot-toggle-copy small{font-size:12px;line-height:1.15;color:rgba(255,255,255,.82);font-weight:850;display:block}.chatbot-live-dot{position:absolute;left:53px;bottom:14px;width:13px;height:13px;border-radius:50%;background:#22c55e;border:2px solid #fff;box-shadow:0 0 0 0 rgba(34,197,94,.55);animation:chatPulse 1.55s infinite}.heno-chatbot-panel{bottom:92px;border-radius:30px;border:1px solid rgba(9,212,255,.22);box-shadow:0 32px 88px rgba(15,23,42,.32)}.heno-chatbot-panel header{background:linear-gradient(135deg,#07111e,#12384b);justify-content:flex-start}.heno-chatbot-panel header .chatbot-panel-avatar{width:42px;height:42px;border-radius:15px;box-shadow:0 10px 24px rgba(0,0,0,.20);border-width:1px}.heno-chatbot-panel header .chatbot-panel-avatar::before{left:11px;top:16px;width:6px;height:6px;box-shadow:14px 0 0 #0f172a}.heno-chatbot-panel header .chatbot-panel-avatar::after{left:13px;right:13px;bottom:11px;height:3px}.heno-chatbot-panel header>div:first-of-type{flex:1}.heno-chatbot-quick button:hover{border-color:#09d4ff;background:#ecfeff}.heno-chatbot-panel form button{background:linear-gradient(135deg,#0f172a,#0e7490)}
@media(max-width:680px){.heno-chatbot{right:14px;bottom:14px}.heno-chatbot-toggle{width:72px;height:72px;min-height:72px;border-radius:24px;padding:10px;justify-content:center;box-shadow:0 20px 44px rgba(15,23,42,.34),0 0 0 6px rgba(9,212,255,.12)}.heno-chatbot-toggle .chatbot-toggle-copy{display:none}.chatbot-bot-icon{width:48px;height:48px}.chatbot-live-dot{left:auto;right:9px;bottom:10px}.heno-chatbot-panel{right:0;bottom:86px;width:calc(100vw - 24px);height:min(540px,calc(100vh - 108px));border-radius:24px}}


.home .grid-3,
main .grid-3 {
  align-items: stretch;
}

.blog-card,
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card > img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f8fbff;
  flex: 0 0 auto;
}

.blog-card > div:not(.blog-image) {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 24px 26px 26px;
}

.blog-card h3,
.product-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-card p,
.product-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .btn,
.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.product-card .product-image {
  height: 230px;
  background-size: cover !important;
  background-position: center !important;
  background-color: #f3f7fa;
}

.product-card .product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.product-card .product-body .btn-row,
.product-card .product-body > .btn {
  margin-top: auto;
}

@media (max-width: 980px) {
  .blog-card > img,
  .product-card .product-image {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .blog-card > img,
  .product-card .product-image {
    height: 200px;
  }
  .blog-card > div:not(.blog-image),
  .product-card .product-body {
    padding: 20px;
  }
}

.tech-docs-section {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.tech-docs-grid {
  display: grid;
  gap: 28px;
}

.tech-doc-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.25fr);
  gap: 26px;
  align-items: start;
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
}

.tech-doc-preview {
  display: block;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #eef6f9);
  border: 1px solid rgba(15, 23, 42, .08);
  min-height: 100%;
}

.tech-doc-preview img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.04);
}

.tech-doc-content {
  padding: 10px 8px 8px 0;
  min-width: 0;
}

.tech-doc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.tech-doc-head h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--ink);
}

.tech-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9, 212, 255, .12);
  border: 1px solid rgba(9, 212, 255, .32);
  color: #0f172a;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.tech-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.tech-spec-list div {
  min-width: 0;
  padding: 13px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .075);
}

.tech-spec-list dt {
  margin-bottom: 5px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.tech-spec-list dd {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.tech-subblock {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.tech-subblock h4 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.tech-check-list,
.tech-steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tech-check-list li,
.tech-steps li {
  position: relative;
  padding-left: 26px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.55;
}

.tech-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 212, 255, .14);
  color: #0e7490;
  font-size: 12px;
  font-weight: 950;
}

.tech-steps {
  counter-reset: techstep;
}

.tech-steps li {
  counter-increment: techstep;
}

.tech-steps li::before {
  content: counter(techstep);
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
}

.tech-table-details {
  margin-top: 18px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.tech-table-details summary {
  cursor: pointer;
  padding: 14px 16px;
  color: #0f172a;
  font-weight: 950;
  background: #f8fafc;
}

.tech-table-wrap {
  overflow: auto;
  max-height: 430px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.tech-data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 13px;
}

.tech-data-table th,
.tech-data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
  text-align: left;
  white-space: nowrap;
}

.tech-data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0f172a;
  color: #fff;
  font-weight: 950;
}

.tech-data-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.tech-doc-actions {
  margin-top: 20px;
}

.tech-faq-section {
  background: #fff;
}

.tech-faq-list {
  max-width: 1040px;
}

@media (max-width: 1080px) {
  .tech-doc-card {
    grid-template-columns: 1fr;
  }
  .tech-doc-preview img {
    height: 420px;
  }
  .tech-doc-content {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .tech-doc-card {
    padding: 14px;
    border-radius: 24px;
  }
  .tech-doc-preview img {
    height: 330px;
  }
  .tech-doc-head {
    display: grid;
  }
  .tech-badge {
    justify-self: start;
  }
  .tech-spec-list {
    grid-template-columns: 1fr;
  }
  .tech-data-table {
    min-width: 620px;
  }
}


.grid-3 > .service-card {
  height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 26px;
}

.service-card > img {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  min-height: 0;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  margin: 0 0 20px !important;
  padding: 0 !important;
  border-radius: 22px !important;
  background: #f8fbff;
}

.service-card .icon-box {
  flex: 0 0 auto;
  margin: 0 0 16px;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.025em;
}

.service-card > p {
  margin-bottom: 16px;
}

.service-card .article-content {
  flex: 1 1 auto;
  margin: 8px 0 20px;
  padding: 22px 24px;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.service-card .article-content::before {
  height: 5px;
}

.service-card .article-content p:last-child {
  margin-bottom: 0;
}

.service-card > .btn {
  margin-top: auto;
  align-self: flex-start;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(9,212,255,.34);
  box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  border: 0;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.faq-question span {
  line-height: 1.3;
}

.faq-question i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9,212,255,.13);
  color: #0f172a;
  font-style: normal;
  font-weight: 950;
  transition: transform .22s ease, background .22s ease;
}

.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr;
  padding: 0 22px;
  color: var(--muted);
  overflow: hidden;
  transition: grid-template-rows .28s ease, padding .28s ease;
}

.faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 22px 20px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(9,212,255,.24);
}

.home-faq-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

@media (max-width: 700px) {
  .service-card {
    padding: 20px;
  }
  .service-card > img {
    border-radius: 18px !important;
  }
  .service-card .article-content {
    padding: 18px;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-answer,
  .faq-item.open .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }
}


.grid-2.product-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.product-group-card .product-image,
.product-card .product-image {
  height: 260px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #f8fbff;
}
.product-card .product-image::after {
  background: linear-gradient(0deg, rgba(15, 23, 42, .04), transparent 65%);
  pointer-events: none;
}
.product-card .product-body {
  min-height: 260px;
}
.product-card .product-body .kicker {
  min-height: 1.2em;
}
.product-photo {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #f8fbff;
}
.product-view-chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 8px 0 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0e7490;
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 860px) {
  .grid-2.product-group-grid { grid-template-columns: 1fr; }
  .product-group-card .product-image,
  .product-card .product-image { height: 230px; }
}


.reference-grid.detailed-reference-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}
.detailed-reference-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  padding:0!important;
  background:#fff;
}
.reference-logo-frame{
  height:156px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px 30px;
  background:linear-gradient(135deg,#f8fbff,#eef9fc);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.reference-logo-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  margin:0!important;
  background:transparent!important;
  border-radius:0!important;
  max-height:none!important;
}
.reference-card-body{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:24px;
  flex:1;
}
.reference-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.reference-meta-row span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  background:#eafcff;
  color:#0d8b98;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.detailed-reference-card h3{
  margin:0;
  font-size:24px;
  line-height:1.12;
}
.detailed-reference-card p{
  margin:0;
  line-height:1.65;
}
.reference-role-box,
.reference-result-note{
  padding:16px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
}
.reference-role-box{
  margin-top:auto;
  border-top:4px solid #53d4df;
}
.reference-result-note{
  background:linear-gradient(135deg,#eefcff,#fff);
}
.reference-role-box strong,
.reference-result-note strong{
  display:block;
  margin-bottom:7px;
  color:#0f172a;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.reference-role-box p,
.reference-result-note p{
  color:#516079;
  font-size:15px;
}
@media(max-width:1100px){
  .reference-grid.detailed-reference-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:700px){
  .reference-grid.detailed-reference-grid{grid-template-columns:1fr;}
  .reference-logo-frame{height:135px;padding:22px;}
  .reference-card-body{padding:20px;}
}


.home-slider {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  background: linear-gradient(135deg, #07111e 0%, #0f2538 52%, #07111e 100%);
  color: #fff;
}
.home-slider-track,
.home-slide {
  position: absolute;
  inset: 0;
}
.home-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.home-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-slide-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 8% center;
  opacity: .16;
  filter: saturate(1.1);
}
.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(9,212,255,.26), transparent 32%), linear-gradient(90deg, rgba(7,17,30,.94), rgba(7,17,30,.70));
  z-index: 0;
}
.home-slide-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 48px;
  padding-bottom: 72px;
}
.home-slide-copy {
  max-width: 820px;
}
.home-slide-copy h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: .94;
  letter-spacing: -.055em;
  margin: 16px 0 20px;
}
.home-slide-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.80);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}
.home-slide-media {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  box-shadow: 0 30px 90px rgba(0,0,0,.30);
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}
.home-slide-media::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(9,212,255,.18);
  filter: blur(14px);
  right: -80px;
  bottom: -90px;
}
.home-slide-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.home-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.home-slider-arrow.prev { left: max(18px, calc((100vw - 1180px) / 2 - 72px)); }
.home-slider-arrow.next { right: max(18px, calc((100vw - 1180px) / 2 - 72px)); }
.home-slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.home-slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.home-slider-dots button.is-active {
  width: 34px;
  background: #09d4ff;
}
.home-slogan-section {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}
.home-slogan-card {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 28px 80px rgba(15,23,42,.14);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 28px;
  align-items: center;
}
.home-slogan-card span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  min-width: 132px;
  min-height: 132px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(9,212,255,.16), rgba(15,23,42,.06));
  color: #0f172a;
  font-weight: 900;
  text-align: center;
}
.home-slogan-card h2 {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -.045em;
  line-height: 1;
  color: #0f172a;
}
.home-slogan-card p {
  color: #64748b;
  font-size: 17px;
  max-width: 760px;
}
.empty-second-hand-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
}
.second-hand-category-grid .product-group-card .product-image {
  min-height: 230px;
}
@media (max-width: 1100px) {
  .home-slide-inner { grid-template-columns: 1fr; padding-top: 42px; }
  .home-slide-media { min-height: 260px; }
  .home-slider-arrow { top: auto; bottom: 24px; }
  .home-slider-arrow.prev { left: 18px; }
  .home-slider-arrow.next { right: 18px; }
}
@media (max-width: 720px) {
  .home-slider,
  .home-slide-inner { min-height: 690px; }
  .home-slide-inner { padding-bottom: 96px; }
  .home-slide-copy h1 { font-size: 40px; }
  .home-slide-media { display: none; }
  .home-slogan-card { grid-template-columns: 1fr; }
  .home-slogan-card span { grid-row: auto; min-width: 0; min-height: 72px; border-radius: 20px; }
}


.home-slide-inner {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-slide-copy {
  max-width: 760px;
}

.home-slide-media {
  display: none !important;
}

.home-slide-bg {
  background-size: cover;
  background-position: center;
  opacity: .24;
}

.home-slogan-logo-wrap {
  overflow: hidden;
}

.home-slogan-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-services-grid > .service-card {
  grid-column: span 2;
}

.home-services-grid > .service-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.home-services-grid > .service-card:nth-last-child(1):nth-child(3n + 2) {
  grid-column: 4 / span 2;
}

.faq-question {
  align-items: flex-start;
}

.faq-question span {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  transform: none !important;
}


@media (max-width: 980px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-services-grid > .service-card,
  .home-services-grid > .service-card:nth-last-child(2):nth-child(3n + 1),
  .home-services-grid > .service-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .home-slogan-logo {
    width: 64px;
    height: 64px;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }
}


.home-slide-copy .btn-row{
  margin-top:34px;
}
.home-slide-copy p{
  margin-bottom:0;
}
.redresor-voltage-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
  margin:0 0 32px;
}
.redresor-voltage-card{
  display:grid;
  gap:10px;
  padding:20px;
  min-height:150px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#f8fbff);
  color:var(--text);
  text-decoration:none;
  box-shadow:0 14px 36px rgba(15,23,42,.07);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.redresor-voltage-card:hover{
  transform:translateY(-3px);
  border-color:rgba(9,212,255,.42);
  box-shadow:0 22px 54px rgba(9,212,255,.14);
}
.redresor-voltage-card .kicker{
  margin:0;
}
.redresor-voltage-card strong{
  font-size:clamp(24px,3vw,34px);
  letter-spacing:-.04em;
  color:var(--ink);
}
.redresor-voltage-card span{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.redresor-voltage-card em{
  align-self:end;
  font-style:normal;
  font-weight:900;
  color:#0e6f7c;
}
@media(max-width:1100px){
  .redresor-voltage-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:720px){
  .home-slide-copy .btn-row{margin-top:26px;}
  .redresor-voltage-grid{grid-template-columns:1fr;}
}


.product-filter-panel{margin:0 0 24px;padding:20px}.product-filter-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;align-items:end}.product-filter-grid input,.product-filter-grid select{width:100%;border:1px solid rgba(15,23,42,.14);border-radius:14px;padding:12px 14px;background:#fff}.product-filter-grid label{display:block;font-weight:800;margin-bottom:6px;color:#14213d;font-size:13px}@media(max-width:850px){.product-filter-grid{grid-template-columns:1fr}}


.container,
.header-inner,
.hero-inner,
.page-hero .container,
.section,
.grid-2,
.grid-3,
.grid-4,
.split,
.product-detail,
.contact-layout,
.quote-builder,
.product-filter-grid,
.slider-grid,
.slider-card{
  min-width:0;
}
.card,
.product-card,
.blog-card,
.service-card,
.document-card,
.certificate-card,
.contact-panel,
.route-card,
.map-card,
.cta,
.quote-steps,
.quote-aside{
  min-width:0;
  overflow-wrap:anywhere;
}
@media(max-width:900px){
  .nav{
    max-width:100vw;
  }
  .header-inner{
    gap:12px;
  }
  .logo{
    min-width:0 !important;
  }
  .logo img{
    max-width:min(166px,52vw) !important;
  }
  .hero-inner,
  .split,
  .product-detail,
  .contact-layout,
  .quote-builder,
  .slider-grid,
  .slider-card,
  .quick-contact-grid,
  .route-input-row{
    grid-template-columns:1fr !important;
  }
  .btn-row,
  .map-actions,
  .wizard-actions{
    align-items:stretch;
  }
}
@media(max-width:560px){
  .container{
    width:min(100% - 24px,var(--container));
  }
  .page-hero h1,
  .hero h1{
    overflow-wrap:anywhere;
  }
  .btn,
  .btn-row .btn{
    width:100%;
    white-space:normal;
  }
}


.home-slider,
.home-slide,
.home-slider-track {
  min-height: clamp(600px, 74vh, 780px);
}
.home-slide-bg {
  background-size: cover !important;
  background-position: center center !important;
  opacity: .30;
  transform: scale(1.01);
}
.home-slide::before {
  background: radial-gradient(circle at 18% 20%, rgba(9,212,255,.18), transparent 30%), linear-gradient(90deg, rgba(7,17,30,.92), rgba(7,17,30,.58));
}
.home-slogan-section {
  margin-top: -18px !important;
  padding-bottom: 12px;
}
.home-slogan-card {
  position: relative;
  gap: 10px 24px;
  align-items: center;
}
.home-slogan-symbol {
  grid-column: 2;
  display: inline-grid !important;
  place-items: center;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border-radius: 999px !important;
  background: #09d4ff !important;
  color: #07111e !important;
  font-size: 18px;
  box-shadow: 0 14px 35px rgba(9,212,255,.28);
}
.home-slogan-card p {
  grid-column: 2;
  margin-top: 2px;
}
.spare-info-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.spare-info-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 22px;
  padding: clamp(18px, 3vw, 28px);
  align-items: stretch;
}
.spare-info-main {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.spare-info-image {
  min-height: 128px;
  border-radius: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8fbff;
  border: 1px solid rgba(15,23,42,.08);
}
.spare-info-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -.035em;
}
.spare-info-copy p {
  color: #64748b;
  line-height: 1.65;
}
.spare-spec-wrap {
  overflow-x: auto;
}
.spare-spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
}
.spare-spec-table th,
.spare-spec-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(15,23,42,.07);
  text-align: left;
  vertical-align: top;
}
.spare-spec-table th {
  width: 34%;
  color: #0f172a;
  font-weight: 900;
  background: #f8fafc;
}
.spare-spec-table td {
  color: #475569;
}
.spare-spec-table tr:last-child th,
.spare-spec-table tr:last-child td {
  border-bottom: 0;
}
.spare-quote-bottom {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .spare-info-card,
  .spare-info-main {
    grid-template-columns: 1fr;
  }
  .spare-info-image {
    min-height: 180px;
  }
  .home-slogan-symbol,
  .home-slogan-card p {
    grid-column: 1;
  }
}
@media (max-width: 720px) {
  .home-slider,
  .home-slide,
  .home-slider-track,
  .home-slide-inner {
    min-height: 700px;
  }
  .home-slogan-section {
    margin-top: -8px !important;
  }
}

.spare-sheet-page {
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.spare-sheet-cover,
.spare-sheet-section {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
}
.spare-sheet-brand {
  text-align: center;
  font-weight: 950;
  letter-spacing: .08em;
  color: #0f172a;
  margin-bottom: 26px;
  font-size: clamp(18px, 2vw, 24px);
}
.spare-sheet-intro-grid {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.spare-sheet-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  font-weight: 900;
  color: #0f172a;
  font-size: clamp(18px, 2vw, 24px);
}
.spare-sheet-menu li {
  display: flex;
  gap: 14px;
  align-items: center;
}
.spare-sheet-menu span {
  color: #09d4ff;
  font-size: 28px;
  line-height: 1;
}
.spare-sheet-intro-grid p,
.spare-sheet-lead,
.spare-sheet-muted {
  color: #475569;
  line-height: 1.75;
  font-size: 16px;
}
.spare-sheet-section h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -.04em;
  color: #0f172a;
}
.spare-sheet-muted {
  margin-top: 12px;
  color: #64748b;
}
.spare-product-stack,
.spare-transformer-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.spare-row-card {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  background: #fff;
}
.spare-row-title {
  font-weight: 950;
  color: #0f172a;
  font-size: 18px;
  padding-top: 10px;
}
.spare-transformer-group {
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}
.spare-transformer-head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #f8fafc;
  color: #0f172a;
}
.spare-transformer-head strong {
  display: inline-grid;
  place-items: center;
  min-width: 64px;
  height: 42px;
  border-radius: 999px;
  background: #09d4ff;
  color: #07111e;
  font-weight: 950;
}
.spare-transformer-head span {
  font-weight: 900;
}
.spare-transformer-table {
  border-radius: 0;
  border: 0;
}
.spare-feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.spare-feature-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  color: #475569;
  line-height: 1.55;
}
.spare-feature-list li::before {
  content: '•';
  position: absolute;
  left: 20px;
  top: 14px;
  color: #09d4ff;
  font-weight: 950;
  font-size: 22px;
}
.spare-panel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.spare-panel-grid span {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  font-weight: 950;
  color: #0f172a;
}
@media (max-width: 900px) {
  .spare-sheet-intro-grid,
  .spare-row-card {
    grid-template-columns: 1fr;
  }
  .spare-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.spare-catalog-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.spare-tab-bar {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  backdrop-filter: blur(16px);
}
.spare-tab {
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.spare-tab:hover {
  transform: translateY(-1px);
  background: #e2e8f0;
}
.spare-tab.is-active {
  color: #07111e;
  background: linear-gradient(135deg, #09d4ff 0%, #7de7ff 100%);
  box-shadow: 0 14px 34px rgba(9,212,255,.28);
}
.spare-tab-helper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #fff;
}
.spare-tab-helper strong {
  font-size: 18px;
}
.spare-tab-helper p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.spare-sheet-section[hidden] {
  display: none !important;
}
.spare-sheet-section.is-active {
  animation: spareFadeIn .24s ease both;
}
@keyframes spareFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.spare-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-bottom: 28px;
}
.spare-section-visual {
  min-height: 230px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 20%, rgba(9,212,255,.16), transparent 46%), #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  overflow: hidden;
}
.spare-section-visual img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 18px;
}
.spare-row-card {
  grid-template-columns: 190px minmax(0, 1fr) !important;
  align-items: stretch;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.spare-row-card:not(:has(.spare-row-image)) {
  grid-template-columns: minmax(0, 1fr) !important;
}
.spare-row-image {
  display: grid;
  place-items: center;
  min-height: 170px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  overflow: hidden;
}
.spare-row-image img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 12px;
}
.spare-row-content {
  min-width: 0;
}
.spare-row-title {
  padding-top: 0;
  margin-bottom: 12px;
}
.spare-transformer-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.spare-transformer-group:first-child {
  grid-column: 1 / -1;
}
.spare-panel-grid span {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  min-height: 92px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
@media (max-width: 900px) {
  .spare-tab-bar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spare-tab-helper,
  .spare-section-head,
  .spare-row-card,
  .spare-transformer-list {
    grid-template-columns: 1fr !important;
  }
  .spare-tab-helper {
    display: grid;
  }
}
@media (max-width: 560px) {
  .spare-tab-bar {
    grid-template-columns: 1fr;
  }
  .spare-tab {
    text-align: left;
  }
}


.redresor-catalog-shell {
  max-width: 1180px;
}
.redresor-tab-bar {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.redresor-sheet-section .spare-section-head {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
}
.redresor-sheet-section .spare-sheet-lead {
  white-space: pre-line;
}
.redresor-row-card {
  grid-template-columns: 1fr !important;
  padding: 18px;
}
.redresor-row-card .spare-row-title {
  font-size: 20px;
  color: #07111e;
}
.redresor-product-stack {
  gap: 18px;
}
.redresor-sheet-section .spare-spec-table th {
  width: 180px;
}
@media (max-width: 980px) {
  .redresor-tab-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .redresor-sheet-section .spare-section-head {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 560px) {
  .redresor-tab-bar {
    grid-template-columns: 1fr;
  }
}

.product-main-intro {
  max-width: 1120px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}
.product-main-intro h3 {
  margin: 8px 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.04em;
  color: #07111e;
}
.product-main-intro p {
  color: #475569;
  line-height: 1.65;
}
.product-main-intro-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 20%, rgba(9,212,255,.16), transparent 48%), #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  overflow: hidden;
}
.product-main-intro-visual img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  padding: 18px;
}
@media (max-width: 900px) {
  .product-main-intro {
    grid-template-columns: 1fr;
  }
}


.quote-progress-list {
  gap: 12px;
}
.quote-step select,
.quote-step input,
.quote-step textarea {
  scroll-margin-top: 120px;
}
.spare-spec-table,
.spec-table {
  border-spacing: 0;
}
.spare-spec-table tr:nth-child(even) th,
.spare-spec-table tr:nth-child(even) td,
.spec-table tr:nth-child(even) th,
.spec-table tr:nth-child(even) td {
  background-color: #fbfdff;
}
.spare-spec-table th,
.spec-table th {
  white-space: nowrap;
}
.spare-row-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
.btn-mini {
  min-height: 36px !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  border-radius: 12px !important;
}
.spare-action-cell {
  width: 118px;
  text-align: right !important;
  white-space: nowrap;
}
.spare-info-table td[colspan] {
  line-height: 1.65;
}
.spare-transformer-table th {
  width: 150px;
}
@media (max-width: 720px) {
  .spare-action-cell {
    text-align: left !important;
  }
  .spare-row-actions {
    justify-content: stretch;
  }
  .spare-row-actions .btn,
  .spare-action-cell .btn {
    width: 100%;
  }
  .spare-spec-table th,
  .spec-table th {
    white-space: normal;
  }
}


.hero,
.page-hero,
.home-slider {
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
  background: #07111e !important;
}

.hero-bg,
.page-hero-bg,
.home-slide-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transform: scale(1.018) !important;
  transform-origin: center center !important;
  filter: saturate(1.08) contrast(1.04) !important;
  z-index: 0 !important;
}

.hero-bg { opacity: .48 !important; }
.page-hero-bg { opacity: .42 !important; }
.home-slide-bg { opacity: .40 !important; }

.hero::before,
.page-hero::before,
.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(9, 212, 255, .20), transparent 34%),
    linear-gradient(90deg, rgba(7, 17, 30, .94) 0%, rgba(7, 17, 30, .70) 47%, rgba(7, 17, 30, .42) 100%) !important;
}

.hero::after,
.page-hero::after,
.home-slide::after {
  pointer-events: none;
}

.hero-inner,
.page-hero > .container,
.home-slide-inner {
  position: relative;
  z-index: 2 !important;
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: clamp(430px, 42vw, 620px) !important;
  padding: clamp(76px, 8vw, 116px) 0 !important;
}

.page-hero > .container {
  min-height: 0 !important;
  display: block !important;
  align-content: initial !important;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 68px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.052em;
}

.page-hero p {
  max-width: 860px;
  line-height: 1.62;
}

.home-slider,
.home-slider-track,
.home-slide,
.home-slide-inner {
  min-height: clamp(620px, 74vh, 860px) !important;
}

@supports (height: 100svh) {
  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: clamp(620px, 74svh, 860px) !important;
  }
}

.home-slide-inner {
  display: grid !important;
  align-items: center !important;
  padding-top: clamp(72px, 10vh, 118px) !important;
  padding-bottom: clamp(98px, 10vh, 132px) !important;
}

.home-slide-copy {
  max-width: 820px !important;
}

.home-slide-copy h1 {
  font-size: clamp(44px, 6.2vw, 82px) !important;
  line-height: .98 !important;
}

.home-slide-copy p {
  max-width: 760px !important;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 520px !important;
    padding: 64px 0 !important;
  }

  .page-hero-bg,
  .home-slide-bg,
  .hero-bg {
    background-position: center center !important;
    opacity: .38 !important;
  }

  .page-hero::before,
  .home-slide::before,
  .hero::before {
    background:
      radial-gradient(circle at 50% 18%, rgba(9, 212, 255, .18), transparent 36%),
      linear-gradient(180deg, rgba(7, 17, 30, .82) 0%, rgba(7, 17, 30, .62) 45%, rgba(7, 17, 30, .90) 100%) !important;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 52px) !important;
    line-height: 1.05 !important;
  }

  .page-hero p {
    max-width: 100%;
    font-size: clamp(16px, 4vw, 20px) !important;
    line-height: 1.58;
  }

  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: clamp(620px, 82vh, 760px) !important;
  }

  @supports (height: 100svh) {
    .home-slider,
    .home-slider-track,
    .home-slide,
    .home-slide-inner {
      min-height: clamp(620px, 82svh, 760px) !important;
    }
  }

  .home-slide-inner {
    padding-top: 62px !important;
    padding-bottom: 104px !important;
  }

  .home-slide-copy {
    max-width: 100% !important;
  }

  .home-slide-copy h1 {
    font-size: clamp(36px, 10vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.045em;
  }

  .home-slide-copy p {
    font-size: clamp(16px, 4vw, 21px) !important;
    line-height: 1.55;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 470px !important;
    padding: 48px 0 !important;
  }

  .page-hero-bg,
  .home-slide-bg,
  .hero-bg {
    opacity: .36 !important;
  }

  .breadcrumb {
    margin-bottom: 12px !important;
  }

  .page-hero h1 {
    font-size: clamp(32px, 11vw, 46px) !important;
  }

  .page-hero p {
    font-size: 16px !important;
  }

  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: 640px !important;
  }

  .home-slide-inner {
    padding-top: 54px !important;
    padding-bottom: 96px !important;
  }
}


.home-slogan-section {
  margin-top: -18px !important;
  padding-bottom: 18px;
}
.home-slogan-card {
  display: grid !important;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr) !important;
  gap: 24px 34px !important;
  align-items: center !important;
  padding: clamp(26px, 4vw, 42px) !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .13) !important;
}
.home-slogan-card span {
  grid-row: auto !important;
}
.home-slogan-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(9,212,255,.10), rgba(15,23,42,.04));
  border: 1px solid rgba(9,212,255,.16);
}
.home-slogan-logo {
  width: min(100%, 230px) !important;
  height: auto !important;
  max-height: 72px;
  object-fit: contain;
  display: block;
}
.home-slogan-chip {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 10px 16px;
  border-radius: 999px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.home-slogan-content {
  min-width: 0;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 56px) !important;
  line-height: .98 !important;
  letter-spacing: -.05em !important;
  color: #07111e !important;
  max-width: 760px;
}
.home-slogan-content p,
.home-slogan-card p {
  margin: 0;
  max-width: 760px;
  color: #475569 !important;
  font-size: clamp(16px, 1.5vw, 19px) !important;
  line-height: 1.7;
  grid-column: auto !important;
}
.home-slogan-symbol,
.home-slogan-logo-wrap {
  display: none !important;
}
@media (max-width: 860px) {
  .home-slogan-card {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 22px !important;
  }
  .home-slogan-brand {
    align-items: center;
    text-align: center;
    padding: 16px;
  }
  .home-slogan-logo {
    width: min(100%, 210px) !important;
    max-height: 64px;
  }
  .home-slogan-chip {
    width: 100%;
  }
  .home-slogan-content,
  .home-slogan-content h2,
  .home-slogan-content p,
  .home-slogan-card h2,
  .home-slogan-card p {
    text-align: center;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .home-slogan-section {
    margin-top: -8px !important;
  }
  .home-slogan-card {
    border-radius: 24px !important;
  }
  .home-slogan-chip {
    font-size: 12px;
    padding: 10px 12px;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(28px, 10vw, 44px) !important;
  }
}


.home-slogan-card {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  padding: clamp(26px, 4vw, 42px) !important;
}
.home-slogan-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.home-slogan-inline-head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.home-slogan-inline-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(9,212,255,.10), rgba(15,23,42,.04));
  padding: 10px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.home-slogan-chip {
  width: auto !important;
}
.home-slogan-brand,
.home-slogan-logo,
.home-slogan-logo-wrap,
.home-slogan-symbol {
  display: none !important;
}
.product-main-intro {
  grid-template-columns: 1fr !important;
  max-width: 980px;
}
.product-main-intro > div {
  max-width: 860px;
}
.product-main-intro-visual {
  display: none !important;
}
@media (max-width: 860px) {
  .home-slogan-content,
  .home-slogan-content h2,
  .home-slogan-content p {
    text-align: center;
  }
  .home-slogan-inline-head {
    justify-content: center;
    margin-bottom: 16px;
  }
  .home-slogan-inline-logo {
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }
}
@media (max-width: 560px) {
  .home-slogan-inline-head {
    gap: 10px;
  }
  .home-slogan-inline-logo {
    width: 72px;
    height: 72px;
    padding: 8px;
  }
}


.product-main-intro {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 26px !important;
  grid-template-columns: 1fr !important;
  padding: clamp(28px, 4vw, 40px) !important;
}
.product-main-intro > div {
  max-width: none !important;
  width: 100%;
}
.product-main-intro h3 {
  max-width: 1220px;
}
.product-main-intro p {
  max-width: 1220px;
}
.home-slogan-card {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  min-height: 0;
  padding: clamp(26px, 4vw, 44px) !important;
}
.home-slogan-content {
  width: 100%;
  max-width: 1180px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.home-slogan-inline-head,
.home-slogan-chip,
.home-slogan-content p,
.home-slogan-card p,
.home-slogan-brand,
.home-slogan-logo,
.home-slogan-logo-wrap,
.home-slogan-symbol {
  display: none !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 !important;
  text-align: center !important;
  max-width: 1100px !important;
  margin-inline: auto !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  width: 76px;
  height: 76px;
  object-fit: contain;
  vertical-align: middle;
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(9,212,255,.10), rgba(15,23,42,.04));
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  flex: 0 0 auto;
}
@media (max-width: 860px) {
  .home-slogan-card {
    padding: 24px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    gap: 12px;
  }
  .home-slogan-inline-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}
@media (max-width: 560px) {
  .home-slogan-inline-logo {
    width: 54px;
    height: 54px;
    padding: 5px;
    border-radius: 14px;
  }
}


.about-story-card {
  overflow: hidden;
}
.about-story-card img {
  width: 100% !important;
  height: clamp(220px, 22vw, 310px) !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  margin-top: 18px;
  margin-bottom: 0;
  border-radius: 22px;
  background: #f8fbff;
}
@media (max-width: 900px) {
  .about-story-card img {
    height: 240px !important;
  }
}
@media (max-width: 560px) {
  .about-story-card img {
    height: 210px !important;
    border-radius: 18px;
  }
}


.page-hero.page-hero-no-image {
  background:
    radial-gradient(circle at 12% 18%, rgba(9,212,255,.26), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(82,199,214,.18), transparent 34%),
    linear-gradient(135deg, #07111e 0%, #102336 58%, #07111e 100%);
}
.page-hero.page-hero-no-image::before {
  background: linear-gradient(90deg, rgba(7,17,30,.96), rgba(7,17,30,.70));
}
.page-hero.page-hero-no-image .page-hero-bg {
  display: none !important;
}
.home-slide.has-no-image .home-slide-bg {
  background-image: none !important;
  opacity: 0 !important;
}
.home-slide.has-no-image::before {
  background:
    radial-gradient(circle at 16% 20%, rgba(9,212,255,.26), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(82,199,214,.16), transparent 34%),
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(7,17,30,.62));
}
.home-slogan-section {
  position: relative !important;
  z-index: 9 !important;
  margin-top: clamp(-94px, -7vw, -62px) !important;
  margin-bottom: clamp(-34px, -3vw, -20px) !important;
  padding: 0 !important;
  pointer-events: none;
}
.home-slogan-section .container {
  display: flex;
  justify-content: center;
}
.home-slogan-card {
  pointer-events: auto;
  width: min(100%, 1100px) !important;
  border-radius: 34px !important;
  padding: clamp(22px, 3.2vw, 38px) clamp(24px, 4.5vw, 58px) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,252,255,.96)) padding-box,
    linear-gradient(135deg, rgba(9,212,255,.60), rgba(15,23,42,.08), rgba(9,212,255,.28)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 28px 90px rgba(15,23,42,.18), 0 0 0 1px rgba(255,255,255,.80) inset !important;
  overflow: hidden;
}
.home-slogan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #09d4ff, rgba(9,212,255,.10));
}
.home-slogan-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -110px;
  border-radius: 999px;
  background: rgba(9,212,255,.12);
  filter: blur(8px);
  pointer-events: none;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: block !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #07111e !important;
  text-align: center !important;
  font-size: clamp(30px, 4.4vw, 56px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.055em !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  width: .98em !important;
  height: .98em !important;
  min-width: .98em !important;
  min-height: .98em !important;
  padding: .10em !important;
  margin-left: .18em;
  border-radius: .26em !important;
  vertical-align: -.16em !important;
  object-fit: contain !important;
  background: linear-gradient(135deg, rgba(9,212,255,.12), rgba(15,23,42,.04)) !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.10) !important;
}
@media (max-width: 860px) {
  .home-slogan-section {
    margin-top: -58px !important;
    margin-bottom: -18px !important;
  }
  .home-slogan-card {
    border-radius: 26px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(28px, 8vw, 44px) !important;
  }
}
@media (max-width: 560px) {
  .home-slogan-section {
    margin-top: -42px !important;
    margin-bottom: -10px !important;
  }
  .home-slogan-card {
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }
}


.home-slider,
.home-slider-track,
.home-slide,
.home-slide-inner {
  min-height: clamp(700px, 82vh, 920px) !important;
}
@supports (height: 100svh) {
  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: clamp(700px, 82svh, 920px) !important;
  }
}
.home-slide-inner {
  padding-bottom: clamp(190px, 17vh, 250px) !important;
}
.home-slogan-section {
  margin-top: clamp(-52px, -4.2vw, -32px) !important;
  margin-bottom: clamp(38px, 4vw, 68px) !important;
}
.home-slogan-card {
  width: min(100%, 1040px) !important;
  border-radius: 30px !important;
  padding: clamp(20px, 2.5vw, 30px) clamp(22px, 3.5vw, 46px) !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: clamp(10px, 1.2vw, 16px) !important;
  max-width: 100% !important;
  font-size: clamp(28px, 3.15vw, 46px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.052em !important;
}
.home-slogan-text {
  display: inline-block;
  min-width: 0;
}
.home-slogan-inline-logo {
  width: .72em !important;
  height: .72em !important;
  min-width: .72em !important;
  min-height: .72em !important;
  margin-left: 0 !important;
  padding: .075em !important;
  vertical-align: middle !important;
  transform: translateY(.03em);
  flex: 0 0 auto !important;
}
@media (max-width: 900px) {
  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: clamp(680px, 86vh, 820px) !important;
  }
  @supports (height: 100svh) {
    .home-slider,
    .home-slider-track,
    .home-slide,
    .home-slide-inner {
      min-height: clamp(680px, 86svh, 820px) !important;
    }
  }
  .home-slide-inner {
    padding-bottom: 170px !important;
  }
  .home-slogan-section {
    margin-top: -34px !important;
    margin-bottom: 42px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(27px, 6.2vw, 40px) !important;
    flex-wrap: wrap !important;
  }
}
@media (max-width: 560px) {
  .home-slider,
  .home-slider-track,
  .home-slide,
  .home-slide-inner {
    min-height: 700px !important;
  }
  .home-slide-inner {
    padding-bottom: 150px !important;
  }
  .home-slogan-section {
    margin-top: -24px !important;
    margin-bottom: 34px !important;
  }
  .home-slogan-card {
    padding: 18px 16px !important;
    border-radius: 22px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(25px, 8vw, 34px) !important;
    gap: 8px !important;
  }
}


.home-slogan-content {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  width: auto !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}
.home-slogan-text {
  display: inline-block !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  margin-left: .16em !important;
  transform: translateY(.01em) !important;
}
@media (max-width: 900px) {
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 560px) {
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
  }
}


.product-image,
.blog-image,
.product-card .product-image,
.product-group-card .product-image,
.service-card img,
.reference-section-card img,
.about-story-card img,
.document-card img,
.certificate-card img,
.slider-card img,
.second-hand-category-grid .product-group-card .product-image,
.spare-section-visual,
.spare-section-visual img,
.spare-row-image,
.spare-row-image img,
.redresor-sheet-section .spare-section-visual,
.redresor-row-card .spare-row-image,
.tech-doc-preview,
.tech-doc-preview img,
.blog-card > img,
.service-card > img,
.product-main-intro-visual,
.product-main-intro-visual img,
.reference-logo-frame,
.reference-logo-frame img,
.quote-aside,
.quote-aside img,
.selector-result img,
.empty-second-hand-card img {
  background-color: #fefefe !important;
}

.product-image,
.blog-image,
.spare-section-visual,
.spare-row-image,
.tech-doc-preview,
.reference-logo-frame,
.product-main-intro-visual {
  background-image: none;
}


.home-slogan-section {
  position: relative !important;
  z-index: 10 !important;
  margin-top: clamp(-64px, -4.8vw, -42px) !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
  padding: 0 !important;
  pointer-events: none;
}
.home-slogan-section .container {
  display: flex !important;
  justify-content: center !important;
}
.home-slogan-card {
  pointer-events: auto;
  position: relative;
  width: min(100%, 980px) !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(18px, 2.1vw, 26px) clamp(24px, 3.2vw, 42px) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,253,255,.96)) padding-box,
    linear-gradient(135deg, rgba(9,212,255,.62), rgba(15,23,42,.08), rgba(9,212,255,.24)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.13), 0 0 0 1px rgba(255,255,255,.78) inset !important;
  overflow: hidden;
}
.home-slogan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #09d4ff, rgba(9,212,255,.14));
}
.home-slogan-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -76px;
  top: -92px;
  border-radius: 999px;
  background: rgba(9,212,255,.10);
  filter: blur(10px);
  pointer-events: none;
}
.home-slogan-content {
  position: relative;
  z-index: 1;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: .24em !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #07111e !important;
  text-align: center !important;
  font-size: clamp(28px, 2.75vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.048em !important;
}
.home-slogan-text {
  display: inline-block !important;
  white-space: nowrap !important;
  min-width: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: .82em !important;
  height: .82em !important;
  min-width: .82em !important;
  min-height: .82em !important;
  margin-left: .08em !important;
  padding: .07em !important;
  border-radius: .22em !important;
  vertical-align: middle !important;
  object-fit: contain !important;
  transform: translateY(.015em) !important;
  background: rgba(9,212,255,.08) !important;
  box-shadow: 0 8px 20px rgba(15,23,42,.08) !important;
}
@media (max-width: 980px) {
  .home-slogan-card {
    width: calc(100% - 28px) !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(26px, 4.4vw, 38px) !important;
  }
}
@media (max-width: 760px) {
  .home-slogan-section {
    margin-top: -36px !important;
    margin-bottom: 44px !important;
  }
  .home-slogan-card {
    padding: 18px 20px !important;
    border-radius: 22px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
    row-gap: 6px !important;
    font-size: clamp(25px, 7.4vw, 34px) !important;
  }
  .home-slogan-text {
    white-space: normal !important;
  }
}
@media (max-width: 430px) {
  .home-slogan-inline-logo {
    width: .92em !important;
    height: .92em !important;
    min-width: .92em !important;
    min-height: .92em !important;
  }
}


.home-slogan-section {
  position: relative !important;
  z-index: 12 !important;
  margin-top: -38px !important;
  margin-bottom: 52px !important;
  padding: 0 !important;
  pointer-events: none !important;
}
.home-slogan-section .container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.home-slogan-card {
  pointer-events: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: calc(100% - 40px) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(9,212,255,.34) !important;
  box-shadow: 0 18px 46px rgba(15,23,42,.13) !important;
  overflow: visible !important;
}
.home-slogan-card::before,
.home-slogan-card::after {
  display: none !important;
  content: none !important;
}
.home-slogan-content {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #07111e !important;
  font-size: clamp(24px, 2.25vw, 34px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.045em !important;
  text-align: center !important;
  white-space: nowrap !important;
}
.home-slogan-text {
  display: inline !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  vertical-align: middle !important;
  object-fit: contain !important;
  transform: translateY(1px) !important;
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 900px) {
  .home-slogan-section {
    margin-top: -30px !important;
    margin-bottom: 42px !important;
  }
  .home-slogan-card {
    max-width: calc(100% - 26px) !important;
    padding: 14px 20px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(22px, 4.8vw, 30px) !important;
  }
  .home-slogan-inline-logo {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }
}
@media (max-width: 560px) {
  .home-slogan-section {
    margin-top: -22px !important;
    margin-bottom: 34px !important;
  }
  .home-slogan-card {
    border-radius: 24px !important;
    padding: 14px 16px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
    white-space: normal !important;
    row-gap: 6px !important;
    font-size: clamp(21px, 7.4vw, 28px) !important;
  }
  .home-slogan-text {
    white-space: normal !important;
  }
  .home-slogan-inline-logo {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
  }
}


.home-slogan-section {
  position: relative !important;
  z-index: 12 !important;
  margin-top: -44px !important;
  margin-bottom: 54px !important;
  padding: 0 !important;
  pointer-events: none !important;
}
.home-slogan-section .container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.home-slogan-card {
  pointer-events: auto !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 1180px) !important;
  max-width: calc(100% - 48px) !important;
  min-height: 128px !important;
  height: auto !important;
  padding: 26px clamp(30px, 5vw, 74px) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,252,255,.96)) padding-box,
    linear-gradient(135deg, rgba(9,212,255,.62), rgba(15,23,42,.08), rgba(9,212,255,.30)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 22px 70px rgba(15,23,42,.15), 0 0 0 1px rgba(255,255,255,.80) inset !important;
  overflow: hidden !important;
}
.home-slogan-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 8px !important;
  background: linear-gradient(180deg, #09d4ff, rgba(9,212,255,.16)) !important;
}
.home-slogan-card::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  width: 190px !important;
  height: 190px !important;
  right: -76px !important;
  top: -94px !important;
  border-radius: 999px !important;
  background: rgba(9,212,255,.10) !important;
  filter: blur(8px) !important;
  pointer-events: none !important;
}
.home-slogan-content {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: clamp(16px, 2vw, 28px) !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #07111e !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.052em !important;
  text-align: center !important;
  white-space: nowrap !important;
}
.home-slogan-text {
  display: inline-block !important;
  flex: 0 1 auto !important;
  white-space: nowrap !important;
  min-width: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: clamp(34px, 3vw, 46px) !important;
  height: clamp(34px, 3vw, 46px) !important;
  min-width: clamp(34px, 3vw, 46px) !important;
  min-height: clamp(34px, 3vw, 46px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 980px) {
  .home-slogan-card {
    max-width: calc(100% - 28px) !important;
    min-height: 112px !important;
    padding: 22px 24px !important;
    border-radius: 26px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    gap: 12px !important;
    font-size: clamp(24px, 5vw, 36px) !important;
  }
  .home-slogan-inline-logo {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
}
@media (max-width: 560px) {
  .home-slogan-section {
    margin-top: -28px !important;
    margin-bottom: 38px !important;
  }
  .home-slogan-card {
    min-height: 96px !important;
    padding: 18px 16px !important;
    border-radius: 22px !important;
  }
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
    white-space: normal !important;
    gap: 8px !important;
    font-size: clamp(22px, 7vw, 30px) !important;
  }
  .home-slogan-text {
    white-space: normal !important;
  }
  .home-slogan-inline-logo {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }
}


.home-slogan-content h2,
.home-slogan-card h2 {
  justify-content: center !important;
  gap: clamp(8px, .9vw, 14px) !important;
}
.home-slogan-logo-left,
.home-slogan-logo-right {
  display: none !important;
}
.home-slogan-inline-logo {
  display: inline-block !important;
  width: .95em !important;
  height: .95em !important;
  min-width: .95em !important;
  min-height: .95em !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: -.08em !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transform: none !important;
}
@media (max-width: 560px) {
  .home-slogan-inline-logo {
    width: .9em !important;
    height: .9em !important;
    min-width: .9em !important;
    min-height: .9em !important;
  }
}


.home-slogan-content h2,
.home-slogan-card h2 {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.home-slogan-line {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, .9vw, 14px) !important;
  max-width: 100%;
  vertical-align: middle;
}
.home-slogan-text {
  display: inline-block !important;
}
.home-slogan-inline-logo {
  position: static !important;
  inset: auto !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  vertical-align: middle !important;
  align-self: center !important;
  margin: 0 !important;
}
@media (max-width: 560px) {
  .home-slogan-line {
    flex-wrap: wrap !important;
  }
}


.home-slogan-card span,
.home-slogan-line,
.home-slogan-text {
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.home-slogan-content h2,
.home-slogan-card h2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, .75vw, 12px) !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 1 !important;
}
.home-slogan-card img.home-slogan-inline-logo,
.home-slogan-inline-logo {
  position: static !important;
  display: block !important;
  flex: 0 0 auto !important;
  width: .86em !important;
  height: .86em !important;
  min-width: .86em !important;
  min-height: .86em !important;
  max-width: .86em !important;
  max-height: .86em !important;
  margin: 0 0 0 .08em !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  vertical-align: middle !important;
  align-self: center !important;
  transform: translateY(.015em) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (max-width: 900px) {
  .home-slogan-content h2,
  .home-slogan-card h2 {
    font-size: clamp(24px, 5.6vw, 38px) !important;
    gap: 8px !important;
  }
}
@media (max-width: 560px) {
  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
    white-space: normal !important;
  }
  .home-slogan-card img.home-slogan-inline-logo,
  .home-slogan-inline-logo {
    width: .82em !important;
    height: .82em !important;
    min-width: .82em !important;
    min-height: .82em !important;
  }
}


.home-slogan-card img.home-slogan-inline-logo,
.home-slogan-inline-logo {
  width: .92em !important;
  height: .92em !important;
  min-width: .92em !important;
  min-height: .92em !important;
  max-width: .92em !important;
  max-height: .92em !important;
}
@media (max-width: 560px) {
  .home-slogan-card img.home-slogan-inline-logo,
  .home-slogan-inline-logo {
    width: .88em !important;
    height: .88em !important;
    min-width: .88em !important;
    min-height: .88em !important;
  }
}


.spare-sheet-lead {
  white-space: normal !important;
  display: block;
}
.spare-sheet-lead p {
  margin: 0 0 12px;
  color: #64748b;
  line-height: 1.75;
}
.spare-sheet-lead p:last-child {
  margin-bottom: 0;
}
.spare-sheet-lead ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}
.spare-sheet-lead li {
  position: relative;
  padding-left: 20px;
  color: #64748b;
  line-height: 1.65;
}
.spare-sheet-lead li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #2aa5b3;
  font-weight: 900;
}
.redresor-sheet-section .spare-sheet-lead {
  white-space: normal !important;
}


.spare-catalog-shell,
.redresor-catalog-shell {
  max-width: 1240px;
}

.spare-catalog-shell .spare-tab-bar,
.redresor-catalog-shell .spare-tab-bar {
  top: 82px;
  gap: 0;
  margin-bottom: 14px;
  padding: 0;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  backdrop-filter: none;
}

.spare-catalog-shell .spare-tab,
.redresor-catalog-shell .spare-tab {
  min-height: 52px;
  border-radius: 0;
  border-right: 1px solid #dbe3ec;
  padding: 12px 14px;
  background: #ffffff;
  color: #132033;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: inset 0 -3px 0 transparent;
}

.spare-catalog-shell .spare-tab:last-child,
.redresor-catalog-shell .spare-tab:last-child {
  border-right: 0;
}

.spare-catalog-shell .spare-tab:hover,
.redresor-catalog-shell .spare-tab:hover {
  transform: none;
  background: #f6f9fc;
}

.spare-catalog-shell .spare-tab.is-active,
.redresor-catalog-shell .spare-tab.is-active {
  color: #07111e;
  background: #eefbff;
  box-shadow: inset 0 -4px 0 #2aa5b3;
}

.spare-catalog-shell .spare-tab-helper,
.redresor-catalog-shell .spare-tab-helper {
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 14px 18px;
  border: 1px solid #cfd8e3;
  border-left: 6px solid #2aa5b3;
  border-radius: 12px;
  background: #ffffff;
  color: #132033;
  box-shadow: none;
}

.spare-catalog-shell .spare-tab-helper strong,
.redresor-catalog-shell .spare-tab-helper strong {
  min-width: 190px;
  font-size: 17px;
  line-height: 1.45;
}

.spare-catalog-shell .spare-tab-helper p,
.redresor-catalog-shell .spare-tab-helper p {
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}

.spare-catalog-shell .spare-sheet-page,
.redresor-catalog-shell .spare-sheet-page {
  max-width: 1240px;
  gap: 20px;
}

.spare-catalog-shell .spare-sheet-section,
.redresor-catalog-shell .spare-sheet-section {
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid #cfd8e3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.spare-catalog-shell .spare-section-head,
.redresor-catalog-shell .spare-section-head {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 260px);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dbe3ec;
}

.redresor-catalog-shell .spare-section-head {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px) !important;
}

.spare-catalog-shell .spare-section-head h3,
.redresor-catalog-shell .spare-section-head h3,
.spare-catalog-shell .spare-sheet-section h3,
.redresor-catalog-shell .spare-sheet-section h3 {
  margin-bottom: 10px;
  color: #07111e;
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.spare-catalog-shell .spare-section-visual,
.redresor-catalog-shell .spare-section-visual {
  min-height: 150px;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #f8fafc;
}

.spare-catalog-shell .spare-section-visual img,
.redresor-catalog-shell .spare-section-visual img {
  height: 170px;
  padding: 12px;
}

.spare-catalog-shell .spare-sheet-lead,
.redresor-catalog-shell .spare-sheet-lead,
.spare-catalog-shell .spare-sheet-muted,
.redresor-catalog-shell .spare-sheet-muted,
.spare-catalog-shell .spare-sheet-lead p,
.redresor-catalog-shell .spare-sheet-lead p,
.spare-catalog-shell .spare-sheet-lead li,
.redresor-catalog-shell .spare-sheet-lead li {
  color: #27364a;
  font-size: 17px;
  line-height: 1.72;
}

.spare-catalog-shell .spare-sheet-muted,
.redresor-catalog-shell .spare-sheet-muted {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  background: #f8fafc;
}

.spare-catalog-shell .spare-product-stack,
.redresor-catalog-shell .spare-product-stack,
.spare-catalog-shell .spare-transformer-list {
  gap: 12px;
  margin-top: 18px;
}

.spare-catalog-shell .spare-row-card,
.redresor-catalog-shell .spare-row-card {
  grid-template-columns: 150px minmax(0, 1fr) !important;
  gap: 14px;
  padding: 12px;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.redresor-catalog-shell .redresor-row-card,
.redresor-catalog-shell .spare-row-card:not(:has(.spare-row-image)) {
  grid-template-columns: minmax(0, 1fr) !important;
}

.spare-catalog-shell .spare-row-image {
  min-height: 138px;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  background: #f8fafc;
}

.spare-catalog-shell .spare-row-image img {
  height: 138px;
  padding: 10px;
}

.spare-catalog-shell .spare-row-title,
.redresor-catalog-shell .spare-row-title,
.redresor-row-card .spare-row-title {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #dbe3ec;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #f1f5f9;
  color: #07111e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.spare-catalog-shell .spare-spec-wrap,
.redresor-catalog-shell .spare-spec-wrap {
  border: 1px solid #dbe3ec;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  overflow-x: auto;
}

.spare-catalog-shell .spare-spec-table,
.redresor-catalog-shell .spare-spec-table {
  min-width: 620px;
  border: 0;
  border-radius: 0;
  border-collapse: collapse;
  background: #ffffff;
}

.spare-catalog-shell .spare-spec-table th,
.spare-catalog-shell .spare-spec-table td,
.redresor-catalog-shell .spare-spec-table th,
.redresor-catalog-shell .spare-spec-table td {
  padding: 12px 14px;
  border-right: 1px solid #e1e7ef;
  border-bottom: 1px solid #e1e7ef;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.55;
  vertical-align: top;
}

.spare-catalog-shell .spare-spec-table th,
.redresor-catalog-shell .spare-spec-table th,
.redresor-sheet-section .spare-spec-table th {
  width: 230px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
  white-space: normal;
}

.spare-catalog-shell .spare-spec-table td,
.redresor-catalog-shell .spare-spec-table td {
  background: #ffffff;
}

.spare-catalog-shell .spare-spec-table tr:nth-child(even) th,
.spare-catalog-shell .spare-spec-table tr:nth-child(even) td,
.redresor-catalog-shell .spare-spec-table tr:nth-child(even) th,
.redresor-catalog-shell .spare-spec-table tr:nth-child(even) td {
  background-color: #fbfdff;
}

.spare-catalog-shell .spare-spec-table tr:hover th,
.spare-catalog-shell .spare-spec-table tr:hover td,
.redresor-catalog-shell .spare-spec-table tr:hover th,
.redresor-catalog-shell .spare-spec-table tr:hover td {
  background-color: #eefbff;
}

.spare-catalog-shell .spare-spec-table tr:last-child th,
.spare-catalog-shell .spare-spec-table tr:last-child td,
.redresor-catalog-shell .spare-spec-table tr:last-child th,
.redresor-catalog-shell .spare-spec-table tr:last-child td {
  border-bottom: 0;
}

.spare-catalog-shell .spare-spec-table th:last-child,
.spare-catalog-shell .spare-spec-table td:last-child,
.redresor-catalog-shell .spare-spec-table th:last-child,
.redresor-catalog-shell .spare-spec-table td:last-child {
  border-right: 0;
}

.spare-catalog-shell .spare-row-actions,
.redresor-catalog-shell .spare-row-actions {
  justify-content: flex-end;
  margin-top: 10px;
}

.spare-catalog-shell .spare-row-actions .btn,
.redresor-catalog-shell .spare-row-actions .btn,
.spare-catalog-shell .spare-action-cell .btn,
.redresor-catalog-shell .spare-action-cell .btn {
  min-height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
}

.spare-catalog-shell .spare-transformer-list {
  grid-template-columns: 1fr;
}

.spare-catalog-shell .spare-transformer-group {
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  box-shadow: none;
}

.spare-catalog-shell .spare-transformer-group:first-child {
  grid-column: auto;
}

.spare-catalog-shell .spare-transformer-head {
  padding: 12px 14px;
  border-bottom: 1px solid #dbe3ec;
  background: #f1f5f9;
}

.spare-catalog-shell .spare-transformer-head strong {
  min-width: 56px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #cfd8e3;
  color: #07111e;
}

.spare-catalog-shell .spare-transformer-head span {
  color: #07111e;
  font-size: 17px;
}

.spare-catalog-shell .spare-info-table,
.spare-catalog-shell .spare-transformer-table {
  min-width: 720px;
}

.spare-catalog-shell .spare-action-cell {
  width: 120px;
  background: #ffffff !important;
}

.spare-catalog-shell .spare-panel-grid {
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
}

.spare-catalog-shell .spare-panel-grid span {
  min-height: 56px;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
  font-size: 17px;
}

.spare-quote-bottom {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .spare-catalog-shell .spare-tab-bar,
  .redresor-catalog-shell .spare-tab-bar,
  .redresor-tab-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .spare-catalog-shell .spare-tab,
  .redresor-catalog-shell .spare-tab {
    border-bottom: 1px solid #dbe3ec;
    text-align: left;
  }

  .spare-catalog-shell .spare-section-head,
  .redresor-catalog-shell .spare-section-head {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .spare-catalog-shell .spare-tab-helper,
  .redresor-catalog-shell .spare-tab-helper,
  .spare-catalog-shell .spare-row-card,
  .redresor-catalog-shell .spare-row-card {
    grid-template-columns: 1fr !important;
  }

  .spare-catalog-shell .spare-tab-helper strong,
  .redresor-catalog-shell .spare-tab-helper strong {
    min-width: 0;
  }

  .spare-catalog-shell .spare-spec-table,
  .redresor-catalog-shell .spare-spec-table,
  .spare-catalog-shell .spare-info-table,
  .spare-catalog-shell .spare-transformer-table {
    min-width: 560px;
  }

  .spare-catalog-shell .spare-row-actions,
  .redresor-catalog-shell .spare-row-actions,
  .spare-catalog-shell .spare-action-cell {
    text-align: left !important;
    justify-content: stretch;
  }

  .spare-catalog-shell .spare-row-actions .btn,
  .redresor-catalog-shell .spare-row-actions .btn,
  .spare-catalog-shell .spare-action-cell .btn,
  .redresor-catalog-shell .spare-action-cell .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .spare-catalog-shell .spare-tab-bar,
  .redresor-catalog-shell .spare-tab-bar,
  .redresor-tab-bar {
    grid-template-columns: 1fr !important;
  }

  .spare-catalog-shell .spare-sheet-section,
  .redresor-catalog-shell .spare-sheet-section {
    padding: 14px;
  }

  .spare-catalog-shell .spare-section-visual img,
  .redresor-catalog-shell .spare-section-visual img {
    height: 140px;
  }
}


.spare-catalog-shell .spare-tab-helper,
.redresor-catalog-shell .spare-tab-helper {
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .spare-catalog-shell .spare-spec-table,
  .redresor-catalog-shell .spare-spec-table,
  .spare-catalog-shell .spare-info-table,
  .spare-catalog-shell .spare-transformer-table {
    min-width: 0;
    table-layout: fixed;
  }

  .spare-catalog-shell .spare-spec-table th,
  .redresor-catalog-shell .spare-spec-table th,
  .redresor-sheet-section .spare-spec-table th {
    width: 42%;
  }

  .spare-catalog-shell .spare-spec-table th,
  .spare-catalog-shell .spare-spec-table td,
  .redresor-catalog-shell .spare-spec-table th,
  .redresor-catalog-shell .spare-spec-table td {
    padding: 10px 11px;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .spare-catalog-shell .spare-action-cell {
    width: 92px;
  }
}


.language-switcher.in-header {
  min-width: 184px;
  max-width: 260px;
  border-radius: 18px;
}
.language-switcher.in-header select {
  min-width: 154px;
  max-width: 190px;
  height: 38px;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
}
.language-switcher.in-header select option {
  font-size: 15px;
  line-height: 1.45;
}
@media(max-width: 760px) {
  .language-switcher.in-header {
    max-width: none;
  }
  .language-switcher.in-header select {
    max-width: none;
  }
}


.system-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(82, 199, 214, .22), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(244, 165, 28, .18), transparent 28rem),
    linear-gradient(135deg, #eef6f8 0%, #f7fafc 44%, #e9eef3 100%);
  color: var(--ink);
  overflow-x: hidden;
}

.system-page-body::before,
.system-page-body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
  opacity: .34;
  z-index: 0;
}

.system-page-body::before {
  left: -130px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(82, 199, 214, .38), transparent 68%);
  animation: systemFloat 8s ease-in-out infinite;
}

.system-page-body::after {
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(244, 165, 28, .32), transparent 68%);
  animation: systemFloat 9s ease-in-out infinite reverse;
}

.system-page-wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  align-content: center;
  gap: 20px;
}

.system-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, .88);
  border-radius: 34px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 34px 90px rgba(16, 24, 40, .14);
  backdrop-filter: blur(14px);
  padding: clamp(22px, 4vw, 42px);
}

.system-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(90deg, rgba(82, 199, 214, .18), transparent 26%, rgba(244, 165, 28, .16) 72%, transparent),
    repeating-linear-gradient(90deg, rgba(16, 24, 40, .035) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(16, 24, 40, .025) 0 1px, transparent 1px 76px);
  pointer-events: none;
}

.system-error-card {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
  padding-top: clamp(72px, 7vw, 92px);
}

.system-brand-row {
  position: absolute;
  top: 22px;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.system-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(220px, 48vw);
  min-height: 50px;
}

.system-logo-link img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.system-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(18, 23, 25, .92);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(18, 23, 25, .18);
}

.maintenance-pill {
  background: #f4a51c;
  color: #111719;
}

.system-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(250px, 34vw, 420px);
}

.system-core {
  position: relative;
  z-index: 3;
  width: clamp(160px, 21vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .95), rgba(255, 255, 255, .52) 30%, rgba(82, 199, 214, .14) 62%, rgba(18, 23, 25, .92) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    inset 0 -28px 50px rgba(18, 23, 25, .24),
    0 34px 70px rgba(16, 24, 40, .22);
  animation: systemCorePulse 3.8s ease-in-out infinite;
}

.system-core span {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #fff;
  text-shadow: 0 12px 24px rgba(18, 23, 25, .36);
}

.system-core i {
  position: absolute;
  bottom: 22%;
  left: 26%;
  width: 48%;
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 165, 28, .92);
  box-shadow: 0 0 22px rgba(244, 165, 28, .5);
  transform: rotate(-7deg);
}

.system-orbit {
  position: absolute;
  inset: 14%;
  border: 2px dashed rgba(82, 199, 214, .48);
  border-radius: 50%;
  animation: systemSpin 16s linear infinite;
}

.system-orbit.orbit-two {
  inset: 5%;
  border-style: solid;
  border-color: rgba(244, 165, 28, .28);
  animation-duration: 22s;
  animation-direction: reverse;
}

.system-spark,
.maintenance-pulse {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #52c7d6;
  box-shadow: 0 0 0 7px rgba(82, 199, 214, .13), 0 0 30px rgba(82, 199, 214, .72);
  animation: sparkBlink 2.2s ease-in-out infinite;
}

.spark-one { top: 20%; left: 22%; }
.spark-two { right: 18%; bottom: 30%; background: #f4a51c; animation-delay: .45s; box-shadow: 0 0 0 7px rgba(244, 165, 28, .13), 0 0 30px rgba(244, 165, 28, .72); }
.spark-three { left: 18%; bottom: 17%; animation-delay: .9s; }

.system-content {
  position: relative;
  z-index: 1;
}

.system-kicker {
  margin: 0 0 12px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.system-content h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--black);
}

.system-content p {
  max-width: 640px;
  color: #475467;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.68;
}

.system-search {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 26px 0 22px;
  padding: 8px;
  border: 1px solid rgba(208, 213, 221, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .07);
}

.system-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  padding: 12px 10px;
  color: var(--ink);
  font-size: 16px;
}

.system-search button {
  border: 0;
  border-radius: 14px;
  background: var(--black);
  color: #fff;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.system-search button:hover {
  transform: translateY(-1px);
  background: var(--cyan-dark);
}

.system-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.system-actions .btn {
  min-height: 48px;
}

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

.system-quick-grid a {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(208, 213, 221, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 34px rgba(16, 24, 40, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.system-quick-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 199, 214, .75);
  box-shadow: 0 22px 44px rgba(16, 24, 40, .11);
}

.system-quick-grid strong {
  color: var(--black);
  font-size: 17px;
  line-height: 1.25;
}

.system-quick-grid span {
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.system-note {
  text-align: center;
  color: #667085;
  font-size: 14px;
}

.system-note code {
  display: inline-block;
  max-width: min(560px, 96vw);
  padding: 3px 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .75);
  color: var(--black);
  overflow-wrap: anywhere;
}

.maintenance-wrap {
  max-width: 1040px;
}

.maintenance-card {
  padding-top: clamp(76px, 7vw, 98px);
}

.maintenance-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.maintenance-visual {
  min-height: clamp(230px, 32vw, 360px);
}

.maintenance-ring {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 2px solid rgba(82, 199, 214, .36);
  box-shadow: inset 0 0 46px rgba(82, 199, 214, .10);
  animation: systemSpin 24s linear infinite;
}

.maintenance-ring.ring-b {
  inset: 20%;
  border-style: dashed;
  border-color: rgba(244, 165, 28, .42);
  animation-duration: 18s;
  animation-direction: reverse;
}

.maintenance-gear {
  position: relative;
  z-index: 3;
  width: clamp(130px, 18vw, 200px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #111719, #2a3539);
  color: #fff;
  font-size: clamp(58px, 8vw, 96px);
  box-shadow: 0 30px 68px rgba(16, 24, 40, .26), inset 0 0 0 8px rgba(255, 255, 255, .06);
  animation: systemSpin 12s linear infinite;
}

.maintenance-gear.gear-small {
  position: absolute;
  right: 17%;
  bottom: 18%;
  width: clamp(70px, 10vw, 100px);
  font-size: clamp(34px, 5vw, 48px);
  color: #111719;
  background: linear-gradient(145deg, #f4a51c, #ffd47b);
  animation-duration: 8s;
  animation-direction: reverse;
}

.maintenance-pulse.pulse-one { left: 17%; top: 20%; }
.maintenance-pulse.pulse-two { right: 14%; top: 16%; background: #f4a51c; animation-delay: .7s; box-shadow: 0 0 0 7px rgba(244, 165, 28, .13), 0 0 30px rgba(244, 165, 28, .72); }

.maintenance-progress {
  width: min(560px, 100%);
  height: 12px;
  margin: 28px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(208, 213, 221, .7);
  box-shadow: inset 0 1px 5px rgba(16, 24, 40, .08);
}

.maintenance-progress span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  box-shadow: 0 0 20px rgba(82, 199, 214, .32);
  animation: progressMove 2.8s ease-in-out infinite;
}

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

.maintenance-info-grid div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(208, 213, 221, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.maintenance-info-grid strong,
.maintenance-info-grid span {
  display: block;
}

.maintenance-info-grid strong {
  margin-bottom: 5px;
  color: var(--black);
  font-size: 15px;
}

.maintenance-info-grid span {
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

@keyframes systemSpin {
  to { transform: rotate(360deg); }
}

@keyframes systemFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -16px, 0) scale(1.04); }
}

@keyframes systemCorePulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes sparkBlink {
  0%, 100% { opacity: .35; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes progressMove {
  0% { transform: translateX(-18%); }
  50% { transform: translateX(118%); }
  100% { transform: translateX(-18%); }
}

@media (max-width: 900px) {
  .system-error-card,
  .maintenance-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .system-content p,
  .maintenance-progress,
  .system-search {
    margin-left: auto;
    margin-right: auto;
  }

  .system-actions {
    justify-content: center;
  }

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

  .maintenance-info-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .system-page-wrap {
    width: min(100% - 22px, 1120px);
    padding: 18px 0;
  }

  .system-card {
    border-radius: 24px;
  }

  .system-brand-row {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 18px;
  }

  .system-error-card,
  .maintenance-card {
    padding-top: 22px;
  }

  .system-logo-link {
    width: min(176px, 56vw);
  }

  .system-status-pill {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .system-content h1 {
    font-size: clamp(31px, 11vw, 42px);
  }

  .system-content p {
    font-size: 16px;
  }

  .system-search {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .system-search button {
    min-height: 46px;
  }

  .system-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .system-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-page-body::before,
  .system-page-body::after,
  .system-core,
  .system-orbit,
  .system-spark,
  .maintenance-ring,
  .maintenance-gear,
  .maintenance-pulse,
  .maintenance-progress span {
    animation: none !important;
  }
}


.blog-list-card > img {
  width: 100% !important;
  height: 260px !important;
  min-height: 260px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #f8fbff !important;
  flex: 0 0 auto !important;
}

.blog-list-card .blog-image {
  height: 260px !important;
  min-height: 260px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.spare-catalog-shell .spare-row-card--no-image,
.spare-row-card--no-image {
  grid-template-columns: minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
  .blog-list-card > img,
  .blog-list-card .blog-image {
    height: 220px !important;
    min-height: 220px !important;
  }
}

@media (max-width: 560px) {
  .blog-list-card > img,
  .blog-list-card .blog-image {
    height: 200px !important;
    min-height: 200px !important;
  }
}


.blog-hero-mini--text-only {
  grid-template-columns: minmax(0, 1fr) !important;
}

.blog-hero-mini--text-only img {
  display: none !important;
}


.article-content .cta,
.article-content .cta * {
  overflow-wrap: normal;
}

.article-content .cta h2 {
  color: #ffffff;
  padding-left: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.article-content .cta h2::before {
  display: none;
}

.article-content .cta p {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.article-content .cta .btn-primary {
  color: #0f172a;
}


.home-slogan-card img.home-slogan-inline-logo,
.home-slogan-inline-logo {
  width: 1.18em !important;
  height: 1.18em !important;
  min-width: 1.18em !important;
  min-height: 1.18em !important;
  max-width: 1.18em !important;
  max-height: 1.18em !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.home-slogan-text {
  min-width: 0 !important;
  max-width: 100% !important;
}

html.heno-translated .home-slogan-card,
html.translated-ltr .home-slogan-card,
html.translated-rtl .home-slogan-card,
html[lang]:not([lang^="tr"]) .home-slogan-card {
  min-height: auto !important;
  padding-left: clamp(22px, 4vw, 58px) !important;
  padding-right: clamp(22px, 4vw, 58px) !important;
}

html.heno-translated .home-slogan-content h2,
html.heno-translated .home-slogan-card h2,
html.translated-ltr .home-slogan-content h2,
html.translated-ltr .home-slogan-card h2,
html.translated-rtl .home-slogan-content h2,
html.translated-rtl .home-slogan-card h2,
html[lang]:not([lang^="tr"]) .home-slogan-content h2,
html[lang]:not([lang^="tr"]) .home-slogan-card h2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: clamp(8px, 1vw, 14px) !important;
  font-size: clamp(26px, 3.15vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  white-space: normal !important;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

html.heno-translated .home-slogan-text,
html.translated-ltr .home-slogan-text,
html.translated-rtl .home-slogan-text,
html[lang]:not([lang^="tr"]) .home-slogan-text {
  flex: 1 1 720px !important;
  white-space: normal !important;
  text-wrap: balance;
}

html.heno-translated .home-slogan-card img.home-slogan-inline-logo,
html.heno-translated .home-slogan-inline-logo,
html.translated-ltr .home-slogan-card img.home-slogan-inline-logo,
html.translated-ltr .home-slogan-inline-logo,
html.translated-rtl .home-slogan-card img.home-slogan-inline-logo,
html.translated-rtl .home-slogan-inline-logo,
html[lang]:not([lang^="tr"]) .home-slogan-card img.home-slogan-inline-logo,
html[lang]:not([lang^="tr"]) .home-slogan-inline-logo {
  width: 1.05em !important;
  height: 1.05em !important;
  min-width: 1.05em !important;
  min-height: 1.05em !important;
  max-width: 1.05em !important;
  max-height: 1.05em !important;
}

@media (max-width: 760px) {
  .home-slogan-card img.home-slogan-inline-logo,
  .home-slogan-inline-logo {
    width: 1em !important;
    height: 1em !important;
    min-width: 1em !important;
    min-height: 1em !important;
    max-width: 1em !important;
    max-height: 1em !important;
  }

  html.heno-translated .home-slogan-content h2,
  html.heno-translated .home-slogan-card h2,
  html.translated-ltr .home-slogan-content h2,
  html.translated-ltr .home-slogan-card h2,
  html.translated-rtl .home-slogan-content h2,
  html.translated-rtl .home-slogan-card h2,
  html[lang]:not([lang^="tr"]) .home-slogan-content h2,
  html[lang]:not([lang^="tr"]) .home-slogan-card h2 {
    font-size: clamp(21px, 6.2vw, 34px) !important;
  }
}

.compact-quote .quote-aside img,
.quote-aside img {
  width: 190px !important;
  max-width: 76% !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
@media (max-width: 560px) {
  .compact-quote .quote-aside img,
  .quote-aside img {
    width: 170px !important;
    max-width: 82% !important;
  }
}


.home-slider,
.home-slide,
.home-slider-track {
  min-height: clamp(540px, 68vh, 720px) !important;
}
.home-slide-inner {
  min-height: clamp(540px, 68vh, 720px) !important;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .82fr) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: center !important;
  padding-top: clamp(44px, 6vh, 72px) !important;
  padding-bottom: clamp(72px, 9vh, 104px) !important;
}
.home-slide-bg {
  background-size: min(46vw, 620px) auto !important;
  background-repeat: no-repeat !important;
  background-position: right clamp(24px, 7vw, 120px) center !important;
  opacity: .56 !important;
  transform: none !important;
  filter: saturate(1.04) contrast(1.02) !important;
}
.home-slide.has-no-image .home-slide-bg,
.home-slide-bg.is-disabled {
  opacity: 0 !important;
}
.home-slide::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(9,212,255,.09), transparent 30%),
    linear-gradient(90deg,
      rgba(7,17,30,.86) 0%,
      rgba(7,17,30,.68) 37%,
      rgba(7,17,30,.30) 62%,
      rgba(7,17,30,.06) 100%) !important;
}
.home-slide-copy {
  max-width: 560px !important;
  padding-right: clamp(0px, 2vw, 24px);
}
.home-slide-copy .eyebrow {
  margin-bottom: 14px;
  background: rgba(82,199,214,.10);
  border-color: rgba(82,199,214,.22);
}
.home-slide-copy h1 {
  max-width: 560px;
  font-size: clamp(32px, 4.25vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.048em !important;
  margin: 12px 0 16px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-slide-copy p {
  max-width: 500px !important;
  font-size: clamp(15px, 1.35vw, 17px) !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.74) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-slide-copy .btn-row {
  margin-top: 28px !important;
}
.home-slider-dots {
  bottom: 24px !important;
}
.page-hero-bg,
.hero-bg {
  opacity: .68 !important;
}
.page-hero::before,
.hero::before {
  background:
    linear-gradient(90deg,
      rgba(18,23,25,.82) 0%,
      rgba(18,23,25,.56) 48%,
      rgba(18,23,25,.14) 100%),
    radial-gradient(circle at 22% 20%, rgba(82,199,214,.08), transparent 32%) !important;
}
.page-hero h1,
.hero h1 {
  max-width: 720px !important;
}
.page-hero p,
.hero p {
  max-width: 620px !important;
}
@media (min-width: 1180px) {
  .home-slide-copy {
    margin-left: clamp(0px, 1.5vw, 18px);
  }
}
@media (max-width: 1100px) {
  .home-slide-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .home-slide-bg {
    background-size: min(78vw, 640px) auto !important;
    background-position: center bottom 72px !important;
    opacity: .28 !important;
  }
  .home-slide::before {
    background:
      radial-gradient(circle at 50% 36%, rgba(9,212,255,.08), transparent 34%),
      linear-gradient(180deg, rgba(7,17,30,.88), rgba(7,17,30,.72) 52%, rgba(7,17,30,.34) 100%) !important;
  }
  .home-slide-copy {
    max-width: 680px !important;
  }
}
@media (max-width: 720px) {
  .home-slider,
  .home-slide,
  .home-slider-track,
  .home-slide-inner {
    min-height: 620px !important;
  }
  .home-slide-inner {
    padding-top: 44px !important;
    padding-bottom: 92px !important;
  }
  .home-slide-bg {
    background-size: 92vw auto !important;
    background-position: center bottom 68px !important;
    opacity: .18 !important;
  }
  .home-slide-copy h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
    -webkit-line-clamp: 3;
  }
  .home-slide-copy p {
    -webkit-line-clamp: 2;
  }
  .home-slider-arrow {
    width: 42px !important;
    height: 42px !important;
    bottom: 22px !important;
  }
}


.hero,
.page-hero,
.home-slider {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #07111e !important;
}

.hero-bg,
.page-hero-bg,
.home-slide-bg {
  position: absolute !important;
  inset: -1px !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transform: scale(1.035) !important;
  transform-origin: center center !important;
  filter: saturate(1.08) contrast(1.04) brightness(.92) !important;
  z-index: 0 !important;
}

.home-slide-bg {
  opacity: .62 !important;
}

.page-hero-bg,
.hero-bg {
  opacity: .56 !important;
}

.home-slide.has-no-image .home-slide-bg,
.page-hero.page-hero-no-image .page-hero-bg,
.home-slide-bg.is-disabled {
  display: none !important;
  opacity: 0 !important;
}

.home-slide::before,
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(9, 212, 255, .18), transparent 32%),
    linear-gradient(90deg, rgba(7, 17, 30, .88) 0%, rgba(7, 17, 30, .58) 45%, rgba(7, 17, 30, .22) 100%) !important;
}

.home-slide-inner,
.page-hero > .container,
.hero-inner {
  position: relative !important;
  z-index: 2 !important;
}

.home-slogan-content h2,
.home-slogan-card h2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(9px, 1.1vw, 16px) !important;
  flex-wrap: nowrap !important;
  text-align: center !important;
}

.home-slogan-content h2 .home-slogan-text,
.home-slogan-card h2 .home-slogan-text {
  display: inline-block !important;
  white-space: nowrap;
}

.home-slogan-inline-logo {
  order: 0;
  display: inline-block !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  width: .78em !important;
  height: .78em !important;
  min-width: .78em !important;
  min-height: .78em !important;
  padding: .075em !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  transform: translateY(.03em) !important;
  border-radius: .22em !important;
  background: linear-gradient(135deg, rgba(9,212,255,.10), rgba(15,23,42,.035)) !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.09) !important;
}

.home-references-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(9,212,255,.10), transparent 32%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.home-references-section .section-title {
  margin-bottom: clamp(26px, 4vw, 42px);
}

.home-reference-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}

.home-reference-logo-card {
  position: relative;
  min-height: clamp(145px, 13vw, 190px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,252,255,.94)) padding-box,
    linear-gradient(135deg, rgba(9,212,255,.28), rgba(15,23,42,.06)) border-box;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-reference-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(9,212,255,.10), transparent 45%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.home-reference-logo-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  max-width: 86%;
  max-height: 96px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: transform .18s ease;
}

.home-reference-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 212, 255, .35);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .12);
}

.home-reference-logo-card:hover::before {
  opacity: 1;
}

.home-reference-logo-card:hover img {
  transform: scale(1.035);
}

.home-reference-action {
  margin-top: clamp(24px, 3vw, 36px) !important;
}

@media (max-width: 1020px) {
  .home-reference-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-slide-bg,
  .page-hero-bg,
  .hero-bg {
    background-position: center center !important;
    opacity: .48 !important;
  }

  .home-slide::before,
  .page-hero::before,
  .hero::before {
    background:
      radial-gradient(circle at 50% 14%, rgba(9, 212, 255, .15), transparent 36%),
      linear-gradient(180deg, rgba(7, 17, 30, .76) 0%, rgba(7, 17, 30, .58) 42%, rgba(7, 17, 30, .88) 100%) !important;
  }

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

  .home-reference-logo-card {
    min-height: 132px;
    border-radius: 22px;
    padding: 22px;
  }

  .home-reference-logo-card img {
    max-height: 78px;
  }

  .home-slogan-content h2,
  .home-slogan-card h2 {
    flex-wrap: wrap !important;
    row-gap: 6px !important;
  }
}

@media (max-width: 500px) {
  .home-reference-logo-wall {
    grid-template-columns: 1fr;
  }

  .home-reference-logo-card {
    min-height: 118px;
  }

  .home-slogan-content h2 .home-slogan-text,
  .home-slogan-card h2 .home-slogan-text {
    white-space: normal;
  }
}


.page-hero,
.hero,
.home-slider {
  background: #07111e !important;
}

.home-slide-bg {
  opacity: .78 !important;
  filter: saturate(1.10) contrast(1.04) brightness(1.03) !important;
}

.page-hero-bg,
.hero-bg {
  opacity: .72 !important;
  filter: saturate(1.10) contrast(1.04) brightness(1.03) !important;
}

.home-slide::before,
.page-hero::before,
.hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(9, 212, 255, .12), transparent 34%),
    linear-gradient(90deg,
      rgba(7, 17, 30, .62) 0%,
      rgba(7, 17, 30, .34) 46%,
      rgba(7, 17, 30, .10) 100%) !important;
}

.page-hero > .container,
.hero-inner {
  min-height: clamp(320px, 40vh, 420px) !important;
  padding-top: clamp(28px, 4vh, 44px) !important;
  padding-bottom: clamp(28px, 4vh, 44px) !important;
}

.page-hero h1,
.hero h1 {
  max-width: 560px !important;
  font-size: clamp(32px, 4.25vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.048em !important;
  margin: 12px 0 16px !important;
}

.page-hero p,
.hero p {
  max-width: 500px !important;
  font-size: clamp(15px, 1.35vw, 17px) !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.76) !important;
}

@media (max-width: 1100px) {
  .home-slide-bg {
    opacity: .56 !important;
  }

  .page-hero-bg,
  .hero-bg {
    opacity: .52 !important;
  }

  .home-slide::before,
  .page-hero::before,
  .hero::before {
    background:
      radial-gradient(circle at 50% 24%, rgba(9, 212, 255, .10), transparent 34%),
      linear-gradient(180deg,
        rgba(7, 17, 30, .58) 0%,
        rgba(7, 17, 30, .34) 42%,
        rgba(7, 17, 30, .72) 100%) !important;
  }
}

@media (max-width: 720px) {
  .page-hero > .container,
  .hero-inner {
    min-height: 280px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .page-hero p,
  .hero p {
    font-size: 15px !important;
  }

  .home-slide-bg {
    opacity: .42 !important;
  }

  .page-hero-bg,
  .hero-bg {
    opacity: .38 !important;
  }
}


.second-hand-listing-grid .product-image {
  display: block;
  min-height: 230px;
  border-radius: 18px 18px 0 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.empty-second-hand-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.second-hand-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.second-hand-specs span {
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
}
.second-hand-price {
  display: inline-block;
  margin: 4px 0 10px;
  font-size: 20px;
  color: #0f172a;
}
.second-hand-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}
.second-hand-detail-meta span {
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.second-hand-detail-meta strong {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}


.second-hand-listing-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.second-hand-listing-grid .product-image,
.second-hand-listing-grid .second-hand-card-image {
  height: 290px !important;
  min-height: 290px !important;
  border-radius: 24px 24px 0 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #eef2f6 !important;
}
.second-hand-listing-card .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.second-hand-listing-card .product-body p {
  flex: 1;
}
.second-hand-specs-strong {
  gap: 10px;
  margin: 16px 0 14px;
}
.second-hand-specs-strong span {
  display: grid;
  gap: 4px;
  min-width: 112px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #edf5f8);
  border: 1px solid rgba(82,199,214,.28);
  color: #0f172a;
}
.second-hand-specs-strong small {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.second-hand-specs-strong strong {
  font-size: 22px;
  line-height: 1;
}
.second-hand-price {
  font-size: 24px;
  font-weight: 950;
}
.second-hand-ad-page {
  background: #f4f7fa;
}
.second-hand-ad-section {
  padding: 42px 0 28px;
}
.second-hand-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #64748b;
  font-weight: 800;
  font-size: 14px;
}
.second-hand-breadcrumb a {
  color: #0f172a;
}
.second-hand-breadcrumb strong {
  color: #334155;
}
.second-hand-ad-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  gap: 26px;
  align-items: start;
}
.second-hand-gallery-card,
.second-hand-ad-info,
.second-hand-description-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(15,23,42,.10);
}
.second-hand-gallery-card {
  padding: 16px;
}
.second-hand-main-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 24px;
  background: #e9eef3;
}
.second-hand-main-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .22s ease, transform .22s ease;
}
.second-hand-main-photo img.active {
  opacity: 1;
  transform: scale(1);
}
.second-hand-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(15,23,42,.82);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.second-hand-gallery-nav.prev { left: 14px; }
.second-hand-gallery-nav.next { right: 14px; }
.second-hand-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.second-hand-thumbs button {
  height: 82px;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 0;
  background: #eef2f6;
  overflow: hidden;
  cursor: pointer;
}
.second-hand-thumbs button.active {
  border-color: #52c7d6;
  box-shadow: 0 10px 24px rgba(82,199,214,.24);
}
.second-hand-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.second-hand-ad-info {
  padding: 30px;
  position: sticky;
  top: 104px;
}
.second-hand-ad-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #0f172a;
}
.second-hand-view-count {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}
.second-hand-ad-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 16px;
}
.second-hand-ad-meta div {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fcfd, #ecf7fa);
  border: 1px solid rgba(82,199,214,.28);
}
.second-hand-ad-meta span,
.second-hand-ad-price span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.second-hand-ad-meta strong {
  display: block;
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
}
.second-hand-ad-price {
  border-radius: 24px;
  padding: 20px;
  margin: 16px 0 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: #0f172a;
  color: #fff;
}
.second-hand-ad-price span {
  color: rgba(255,255,255,.68);
}
.second-hand-ad-price strong {
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}
.second-hand-contact-btn,
.second-hand-back-btn {
  width: 100%;
  margin-top: 10px;
  min-height: 54px;
}
.second-hand-safe-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}
.second-hand-safe-note strong {
  color: #0f172a;
}
.second-hand-safe-note p {
  margin: 5px 0 0;
  color: #64748b;
}
.second-hand-description-section {
  padding-top: 8px;
}
.second-hand-description-card {
  padding: 30px;
}
.second-hand-description-card .section-title {
  margin-bottom: 14px;
}
.second-hand-description-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}
@media (max-width: 1040px) {
  .second-hand-ad-layout { grid-template-columns: 1fr; }
  .second-hand-ad-info { position: static; }
}
@media (max-width: 720px) {
  .second-hand-ad-section { padding-top: 24px; }
  .second-hand-main-photo { min-height: 340px; }
  .second-hand-ad-info,
  .second-hand-description-card { padding: 22px; }
  .second-hand-ad-meta { grid-template-columns: 1fr; }
  .second-hand-listing-grid .product-image,
  .second-hand-listing-grid .second-hand-card-image { height: 230px !important; min-height: 230px !important; }
}
