:root {
  --bg: #f3f5f9;
  --bg-soft: #ffffff;
  --bg-deep: #0c1424;
  --panel: #ffffff;
  --panel-dark: #121b2d;
  --panel-soft: #f8fbff;
  --text: #1d2738;
  --muted: #67758d;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(12, 102, 210, 0.15);
  --brand: #f68a1e;
  --brand-strong: #f0601f;
  --blue: #0f67d1;
  --blue-deep: #143465;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: #f5f5f5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-shell { min-height: 100vh; }
.site-main { overflow: clip; }

.site-topbar {
  color: #666;
  background: #f7f7f7;
  border-bottom: 1px solid #ececec;
}
.site-topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 30px;
  font-size: 0.88rem;
}
.topbar-announcement {
  grid-column: 2;
  justify-self: center;
}
.topbar-meta {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-topbar a { color: #fff; background: var(--brand); padding: 6px 14px; border-radius: 6px; font-weight: 700; }
.topbar-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
}
.topbar-language img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ececec;
}
.header-inner,
.home-hero-layout,
.about-grid,
.proof-grid,
.archive-page-grid,
.single-page-grid,
.contact-page-grid,
.footer-grid,
.product-detail-grid {
  display: grid;
  gap: 24px;
}
.header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}
.brand-wrap { display: flex; align-items: center; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  min-width: 200px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--blue));
  box-shadow: 0 0 18px rgba(246, 138, 30, 0.28);
}
.brand-text { font-size: 1.08rem; }
.brand-image,
.custom-logo { max-height: 38px; width: auto; }

.primary-nav ul,
.site-footer ul,
.sidebar-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.primary-nav a {
  color: #444;
  font-weight: 500;
  font-size: 0.94rem;
}
.site-header:not(.site-header-home) .primary-nav a {
  color: #111 !important;
}
.primary-nav a:hover { color: #111; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cart {
  position: relative;
  width: 40px;
  min-height: 40px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
}
.header-cart-icon {
  position: absolute;
  left: 10px;
  top: 11px;
  width: 16px;
  height: 12px;
  border: 1.8px solid #2d2d2d;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.header-cart-icon::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 3px;
  width: 8px;
  height: 6px;
  border: 1.8px solid #2d2d2d;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.header-cart-count {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.header-search {
  border: 0;
  background: transparent;
  padding: 0;
}
.header-search input {
  display: none;
}
.header-search button,
.button,
.header-cta,
.header-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  cursor: pointer;
}
.button:hover,
.header-cta:hover,
.header-search button:hover,
.header-account:hover { transform: translateY(-1px); }
.button-primary,
.header-cta,
.header-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 34px rgba(240, 96, 31, 0.22);
}
.header-search button {
  width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
  color: #222;
  position: relative;
}
.header-search button::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #2d2d2d;
  border-radius: 999px;
  top: 10px;
  left: 10px;
}
.header-search button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #2d2d2d;
  transform: rotate(45deg);
  top: 23px;
  left: 22px;
}
.header-account {
  width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  color: #222;
  position: relative;
}
.header-account::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  width: 10px;
  height: 10px;
  border: 1.8px solid #2d2d2d;
  border-radius: 999px;
}
.header-account::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 9px;
  width: 18px;
  height: 9px;
  border: 1.8px solid #2d2d2d;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
}
.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
}

.section { padding: 72px 0; }
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 800;
}
.section-heading { max-width: 780px; margin-bottom: 28px; }
.section-heading-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-copy,
.hero-copy,
.content-card p,
.article-copy,
.stack-item p,
.faq-item p,
.sidebar-card p,
.about-visual-card p,
.testimonial-panel blockquote,
.contact-point span,
.about-stat-card span,
.single-meta {
  color: var(--muted);
  line-height: 1.75;
}
h1, h2, h3, h4 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}
.text-link {
  font-weight: 800;
  color: var(--blue);
}
.text-link::after { content: ' ->'; }

.content-card,
.sidebar-card,
.stack-item,
.faq-item,
.form-card,
.about-stat-card,
.subscribe-panel,
.testimonial-panel,
.contact-point,
.product-summary-card,
.product-gallery-placeholder,
.product-copy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-card,
.sidebar-card,
.stack-item,
.faq-item,
.form-card,
.product-copy-card,
.product-summary-card,
.product-gallery-placeholder,
.testimonial-panel {
  padding: 26px;
}

.home-hero { padding: 0; }
.home-hero-refined { background: #fff; }
.hero-carousel-full {
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
}
.hero-carousel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity .5s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 56, 97, 0.42), rgba(23, 39, 69, 0.78));
}
.hero-slide-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 420px;
}
.hero-slide-copy {
  max-width: 840px;
  color: #fff;
  padding-top: 0;
}
.hero-slide-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  max-width: 15ch;
  line-height: 1.22;
  letter-spacing: -0.03em;
}
.hero-slide-copy p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
}
.hero-dots-centered .hero-dot {
  all: unset;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  min-width: 8px;
  min-height: 8px;
  margin: 0;
  border: none !important;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  overflow: hidden;
  opacity: 1;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.35) !important;
  background-color: rgba(255,255,255,0.35) !important;
  box-shadow: none !important;
  transform: none !important;
}
.hero-dots-centered .hero-dot.is-active {
  width: 20px;
  min-width: 20px;
  height: 8px;
  min-height: 8px;
  border-radius: 999px;
  background: #fff !important;
  background-color: #fff !important;
}
@media (max-width: 768px) {
  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
  }
}
.home-category-stage {
  background: #fff;
  padding: 16px 0 10px;
}
.home-category-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}
.category-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #f3d7c4;
  background: #fff7f0;
  color: var(--brand);
  font-size: 1.55rem;
  line-height: 1;
}
.home-category-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.home-category-strip-item-refined {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 8px 8px 14px;
  background: #fff;
  border: 0;
  box-shadow: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #444;
  font-weight: 500;
  font-size: 0.92rem;
}
.home-category-strip-item-refined.is-active {
  color: #111;
  border-bottom-color: var(--brand);
}
.refined-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7f0, #fff);
  border: 1px solid #f6e6dc;
}
.refined-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.category-strip-icon,
.reason-icon,
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(246,138,30,0.18), rgba(15,103,209,0.16));
  border: 1px solid rgba(15,103,209,0.08);
}
.feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
}
.home-category-mega {
  position: relative;
  margin-top: 18px;
}
.home-category-mega-panel-refined {
  display: none;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px 0 0;
  background: #fff;
  border-top: 1px solid #ececec;
}
.home-category-mega-panel-refined.is-active { display: grid; }
.category-subgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.category-subcard {
  min-height: 214px;
  display: grid;
  align-content: start;
  background: #fff;
  border: 1px solid #ededed;
  font-weight: 600;
  color: #333;
  transition: box-shadow .2s ease, transform .2s ease;
}
.category-subcard:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.category-subcard-thumb {
  display: grid;
  place-items: center;
  height: 138px;
  padding: 16px;
  background: #fff;
}
.category-subcard-thumb img {
  max-height: 98px;
  object-fit: contain;
}
.category-subcard-copy {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}
.category-subcard-copy strong {
  font-size: 0.95rem;
  line-height: 1.45;
}
.category-subcard-copy small {
  color: var(--brand-strong);
  font-size: 0.85rem;
  font-weight: 700;
}
.compact-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
  padding-left: 18px;
}

.card-grid { display: grid; gap: 22px; }
.three-up,
.product-grid,
.product-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-thumb-media,
.news-thumb-media,
.archive-card-media,
.single-feature-image {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.product-thumb-media,
.news-thumb-media {
  min-height: 190px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #eef4fd, #dae8fb);
}
.product-thumb-media img,
.news-thumb-media img,
.archive-card-media img,
.single-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-actions {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.narrow-heading {
  max-width: 540px;
}
.narrow-heading h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}
.home-hot-products {
  background: #fff;
  padding-top: 30px;
}
.tab-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
  color: #555;
}
.tab-pill {
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}
.tab-pill.is-active {
  color: #111;
  border-bottom-color: var(--brand);
}
.hot-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.hot-product-card {
  position: relative;
  background: #fff;
  border: 1px solid #efefef;
  padding: 22px;
  transition: box-shadow .2s ease;
}
.hot-product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hot-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.hot-product-image {
  display: grid;
  place-items: center;
  height: 240px;
  margin-bottom: 16px;
  background: #fff;
}
.hot-product-image img {
  max-height: 220px;
  object-fit: contain;
}
.hot-product-card h3 {
  font-size: 1.1rem;
  line-height: 1.45;
}
.hot-product-card p {
  margin-top: 10px;
  color: #666;
}
.hot-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
}
.hot-product-meta strong {
  color: #111;
  font-size: 1.4rem;
}
.hot-product-meta span {
  color: #777;
  font-size: 0.9rem;
}

.home-subscribe-section { padding-top: 28px; padding-bottom: 28px; }
.refined-subscribe {
  background: #fff;
  padding-top: 26px;
}
.subscribe-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #fff, #f6f9ff);
}
.subscribe-panel-refined {
  background: url("https://file.aicplight.com/attach/2025/10/269f1202510101444452436.png?x-oss-process=style%2Fconvert") center/cover no-repeat;
  color: #fff;
  border: 0;
  box-shadow: none;
  border-radius: 24px;
}
.subscribe-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.subscribe-copy span,
.subscribe-copy strong { color: #fff; }
.subscribe-copy strong { font-size: 2.6rem; }
.subscribe-form {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}
.subscribe-form input {
  width: min(100%, 340px);
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.subscribe-form-refined .button-primary {
  box-shadow: none;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
}
.about-visual,
.about-page-banner {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 20, 36, 0.2), rgba(12, 20, 36, 0.88)),
    url('../images/about-us-banner.png') center/cover no-repeat;
  box-shadow: 0 28px 80px rgba(15, 33, 66, 0.18);
}
.about-visual-card,
.about-page-banner-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 34px;
  color: #fff;
}
.about-visual-card .section-eyebrow,
.about-visual-card p,
.about-page-banner-card p { color: rgba(255,255,255,0.86); }
.about-copy-panel { display: grid; gap: 18px; }
.refined-about-grid {
  grid-template-columns: 1fr 420px;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-stat-card { padding: 24px; }
.about-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.refined-stats-grid .about-stat-card {
  background: #fff;
  box-shadow: none;
  border: 1px solid #ececec;
}

.proof-grid,
.archive-page-grid,
.single-page-grid,
.contact-page-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-grid-refined { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.news-card-refined {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.news-card-refined .news-thumb-media {
  min-height: 220px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 0;
}
.news-card-refined h3,
.news-card-refined .text-link {
  padding: 0 6px;
}
.hot-news-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hot-news-panel ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}
.hot-news-panel a { color: var(--text); font-weight: 700; }

.testimonial-panel blockquote {
  margin: 18px 0 16px;
  font-size: 1.15rem;
}
.refined-proof-section {
  background: #fff;
}
.testimonial-panel-refined {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 0;
  box-shadow: none;
  padding: 28px 0 20px;
  background: transparent;
}
.testimonial-quote-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.testimonial-quote-mark-end {
  margin-left: auto;
  align-self: flex-end;
}
.get-info-heading {
  margin-bottom: 6px;
}
.testimonial-avatar {
  min-width: 140px;
  text-align: center;
}
.testimonial-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  margin: 0 auto 12px;
}
.contact-card-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.contact-cta-card-refined {
  text-align: left;
}
.contact-cta-card-refined img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}
.testimonial-author { font-weight: 800; color: var(--text); }
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-hero {
  padding: 34px 0 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0));
}
.page-hero-content {
  max-width: 820px;
  padding: 12px 0 0;
}
.page-hero-content-centered { text-align: center; margin-left: auto; margin-right: auto; }

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .94rem;
}

.archive-stack { grid-template-columns: 1fr; }
.archive-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}
.archive-card-media { min-height: 220px; background: #eef4fd; }
.archive-card-content { display: flex; flex-direction: column; }
.card-meta {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 800;
}
.archive-pagination { margin-top: 24px; }
.archive-sidebar { display: grid; gap: 18px; align-self: start; }
.sidebar-card ul { display: grid; gap: 10px; }
.sidebar-link-list li a { color: var(--text); font-weight: 700; }
.archive-taxonomy-bar {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(15,103,209,0.06);
  color: var(--blue);
}

.single-meta {
  display: flex;
  gap: 24px;
  align-items: center;
}
.single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.single-meta img { width: 16px; height: 16px; }
.single-content-card { padding: 30px; }
.single-feature-image { margin-bottom: 24px; min-height: 360px; background: #eef4fd; }
.article-copy img { border-radius: 18px; margin: 24px 0; }
.article-copy h2,
.article-copy h3,
.article-copy h4 { margin-top: 26px; }
.article-copy p,
.article-copy li { line-height: 1.85; color: #4d5a70; }

.contact-page-grid { align-items: start; }
.contact-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.contact-point {
  padding: 20px;
  border-radius: var(--radius-sm);
}
.stack-list { display: grid; gap: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field,
.field-full {
  display: grid;
  gap: 8px;
}
.field-full { grid-column: 1 / -1; }
.field label,
.field-full label {
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select,
.field textarea,
.field-full input,
.field-full select,
.field-full textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
.field textarea,
.field-full textarea { min-height: 148px; resize: vertical; }
.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
}
.form-notice-success {
  color: #155724;
  background: #e8f7eb;
}
.form-notice-error {
  color: #8a2432;
  background: #ffe9ec;
}

.article-container,
.product-detail-layout { max-width: 1180px; }
.product-detail-grid {
  grid-template-columns: 1.1fr .9fr;
  margin-bottom: 24px;
}
.mini-stats,
.spec-grid {
  display: grid;
  gap: 16px;
}
.mini-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; }
.mini-stat,
.spec-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
}
.mini-stat strong,
.spec-item strong { display: block; margin-bottom: 8px; }

.site-footer {
  margin-top: 50px;
  background: #f2f2f2;
  color: #282828;
}
.legacy-footer-shell {
  background: #f2f2f2;
}
.legacy-footer-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
  min-height: 104px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e3e3e3;
}
.legacy-footer-services li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
}
.legacy-footer-service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #707070;
}
.legacy-footer-service-icon .iconfont {
  font-size: 23px;
  color: #707070;
}
.legacy-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 17px 0;
  border-bottom: 1px solid #e3e3e3;
  font-size: 12px;
}
.legacy-footer-links a:hover,
.legacy-footer-copy a:hover {
  color: var(--brand-strong);
}
.legacy-footer-record {
  text-align: center;
  padding: 30px 0 48px;
  font-size: 12px;
}
.legacy-footer-address {
  margin-left: 40px;
}
.legacy-footer-copy {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.floating-tools {
  position: fixed;
  right: 12px;
  bottom: 15%;
  display: grid;
  gap: 0;
  width: 70px;
  z-index: 40;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.floating-tool,
.back-to-top {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 100%;
  min-height: 74px;
  padding: 12px 0;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
  color: #5c5c5c;
  cursor: pointer;
}
.floating-tool + .floating-tool {
  border-top: 1px solid #f0f0f0;
}
.floating-tool:hover {
  color: var(--brand-strong);
}
.floating-tool .iconfont {
  margin-bottom: 5px;
  font-size: 25px;
  line-height: 1;
}
.floating-tool span:last-child {
  font-size: 12px;
}
.back-to-top {
  position: fixed;
  right: 12px;
  bottom: 24px;
  width: 54px;
  min-height: 54px;
  border: 0;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  color: #5c5c5c;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.legacy-kefu-icon {
  position: fixed;
  right: 9px;
  bottom: calc(15% + 290px);
  width: 56px;
  height: 56px;
  z-index: 41;
}
.legacy-kefu-icon img {
  width: 100%;
  height: 100%;
}

.legacy-page-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  background: url('../images/about-us-banner.png') center/cover no-repeat;
}
.legacy-title-box {
  width: 518px;
  min-height: 74px;
  padding: 18px 32px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: url('../images/about-us-bg.png') center/100% 100% no-repeat;
}
.legacy-title-box h1 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
}
.legacy-title-box p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.legacy-content-section {
  padding: 20px 0 60px;
}
.legacy-content-card {
  background: #fff;
  padding: 50px;
}

.legacy-news-archive {
  padding: 24px 0 60px;
}
.legacy-news-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
}
.legacy-news-main,
.legacy-news-sidebar {
  min-width: 0;
}
.legacy-news-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 0 14px;
  border-bottom: 1px solid #ececec;
}
.legacy-news-nav-item {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
.legacy-news-nav-item.is-active {
  color: var(--brand-strong);
}
.legacy-news-list {
  display: grid;
  gap: 20px;
}
.legacy-news-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: #fff;
}

body.home {
  background: #f6f6f6;
}

.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.admin-bar.home .site-header {
  top: 32px;
}

.site-header-home .header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.site-header-home .primary-nav a,
.site-header-home .header-actions a,
.site-header-home .header-actions button {
  color: #fff;
}

.site-header-home .brand-image {
  max-height: 42px;
}

.site-header-home .brand-fallback-text {
  color: #fff;
}

.site-header-home .primary-nav {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-top: 0;
}

.site-header-home .primary-nav ul {
  gap: 46px;
}

.site-header-home .primary-nav a {
  font-size: 1rem;
  font-weight: 500;
}

.header-actions-home {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 8px;
  min-width: 520px;
  align-self: center;
}

.home-header-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  height: 40px;
  min-height: 40px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.94);
  flex-wrap: nowrap;
}

.home-header-utility a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  line-height: 40px;
  color: rgba(255,255,255,0.96);
  white-space: nowrap;
}

.home-header-utility .iconfont {
  font-size: 1.12rem;
  line-height: 1;
}

.home-header-utility a:last-child .iconfont {
  font-size: 0.72rem;
}

.home-header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 332px;
  padding: 2px 3px 2px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(0,0,0,0.08);
  flex: 0 0 auto;
}

.home-header-search input {
  display: block;
  width: 100%;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 0.94rem;
}

.home-header-search input::placeholder {
  color: rgba(255,255,255,0.72);
}

.home-header-search button {
  width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  background: transparent;
  box-shadow: none;
  color: #fff;
  position: relative;
}

.home-header-search button::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  top: 10px;
  left: 10px;
}

.home-header-search button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  top: 23px;
  left: 22px;
}

/* GPU rental keeps legacy header layout, but text must stay dark on light background. */
body.cpl-page-gpu-rental .site-header-home {
  background: #fff;
  color: #111827;
  border-bottom: 1px solid #eceef2;
}
body.cpl-page-gpu-rental .site-header-home .primary-nav a,
body.cpl-page-gpu-rental .site-header-home .header-actions a,
body.cpl-page-gpu-rental .site-header-home .header-actions button,
body.cpl-page-gpu-rental .site-header-home .home-header-utility a {
  color: #111827 !important;
}
body.cpl-page-gpu-rental .site-header-home .home-header-utility {
  color: #4b5563;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search {
  border-color: #cfd4dc;
  background: #fff;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search input {
  color: #111827;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search input::placeholder {
  color: #9ca3af;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search button {
  border-color: #cfd4dc;
  color: #6b7280;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search button::before {
  border-color: #6b7280;
}
body.cpl-page-gpu-rental .site-header-home .home-header-search button::after {
  background: #6b7280;
}

/* Fix GPU rental first screen: do not let home absolute header cover banner. */
body.cpl-page-gpu-rental.home .site-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(18px);
}
body.cpl-page-gpu-rental.admin-bar.home .site-header {
  top: 32px;
}
body.cpl-page-gpu-rental.home .gpu_repair_page {
  padding-top: 0 !important;
}

.home-hero-legacy {
  background: #05070d;
}

.hero-static-legacy,
.hero-static-legacy .hero-slide-shell {
  position: relative;
  min-height: 880px;
}

.hero-static-legacy {
  background-position: center;
  background-size: cover;
}

.hero-slide-overlay-legacy {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.08));
}

.hero-slide-shell-legacy {
  align-items: flex-end;
  padding-bottom: 250px;
}

.hero-slide-copy-legacy {
  max-width: 520px;
  margin-left: 64px;
}

.hero-slide-copy-legacy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 4.3vw, 5.05rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-slide-copy-legacy p {
  max-width: 260px;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.home-business-section {
  padding: 74px 0 40px;
  background: #f6f6f6;
}

.home-business-list {
  display: grid;
  gap: 74px;
}

.business-line {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 52px;
  align-items: center;
}

.business-line.is-reversed {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.business-line.is-reversed .business-line-media {
  order: 2;
}

.business-line.is-reversed .business-line-copy {
  order: 1;
  text-align: right;
  justify-items: end;
}

.business-line-media {
  display: block;
  overflow: hidden;
  border-radius: 34px;
  background: #ddd;
  box-shadow: 0 24px 60px rgba(18, 27, 45, 0.12);
}

.business-line-media img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.business-line-copy {
  display: grid;
  gap: 16px;
  padding: 0 18px 0 0;
}

.business-line-copy h2,
.product-lines-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.business-line-divider,
.section-divider {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #ffb469);
}

.business-line-copy p {
  margin: 0;
  color: #6d6d73;
  font-size: 1.04rem;
  line-height: 1.8;
}

.business-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(246, 138, 30, 0.55);
  border-radius: 999px;
  color: var(--brand-strong);
  font-weight: 700;
}
.business-line-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.business-line-link--secondary {
  border-color: rgba(2, 47, 158, 0.45);
  color: #022f9e;
}

.home-product-showcase {
  padding-top: 24px;
  padding-bottom: 18px;
  background: #f1f1f1;
}

.product-lines-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.product-line-section + .product-line-section {
  margin-top: 42px;
}

.product-line-banner {
  display: block;
  overflow: hidden;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  min-height: 108px;
}

.product-line-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 22px 34px;
  color: #fff;
}

.product-line-banner-copy h3 {
  margin: 0;
  font-size: 1.9rem;
}

.product-line-banner-divider {
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
}

.product-line-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.product-line-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  align-content: start;
  padding: 20px 16px 22px;
  min-height: 286px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
}

.product-line-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 190px;
}

.product-line-card-media img {
  max-width: 84%;
  max-height: 166px;
  object-fit: contain;
}

.product-line-card strong {
  text-align: center;
  font-size: 0.95rem;
  color: #343434;
  font-weight: 500;
}

.home-contact-strip {
  padding: 36px 0 26px;
  background: #f4f2ef;
}

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

.contact-legacy-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
}

.contact-legacy-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.contact-legacy-copy {
  display: grid;
  gap: 8px;
}

.contact-legacy-copy h3 {
  margin: 0;
  font-size: 1.08rem;
}

.contact-legacy-copy p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.92rem;
}

.contact-legacy-copy a {
  color: #202020;
  font-weight: 700;
}

.site-footer-legacy {
  margin-top: 0;
  background: #fff;
  color: #2d2d2d;
}

.footer-legacy-shell {
  padding: 28px 0 42px;
}

.footer-legacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
}

.footer-legacy-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #6b6b6b;
  font-size: 1rem;
}

.footer-legacy-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #efefef;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-legacy-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 26px;
}

.footer-legacy-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-legacy-column h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.footer-legacy-column a {
  color: #545454;
}

.footer-legacy-subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}

.footer-legacy-subscribe input {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
}

.footer-legacy-subscribe button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .site-header-home .primary-nav ul {
    gap: 24px;
  }

  .header-actions-home {
    gap: 10px;
  }

  .home-header-search {
    width: 280px;
  }

  .hero-static-legacy,
  .hero-static-legacy .hero-slide-shell {
    min-height: 740px;
  }

  .business-line,
  .business-line.is-reversed {
    grid-template-columns: 1fr;
  }

  .business-line.is-reversed .business-line-media,
  .business-line.is-reversed .business-line-copy {
    order: initial;
    text-align: left;
    justify-items: start;
  }

  .product-line-grid,
  .contact-card-grid-legacy,
  .footer-legacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home .site-header {
    position: relative;
    background: #08101f;
  }

  .admin-bar.home .site-header {
    top: 0;
  }

  .site-header-home .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-header-home .primary-nav {
    min-height: auto;
  }

  .site-header-home .primary-nav ul {
    flex-wrap: wrap;
  }

  .header-actions-home {
    flex-direction: column;
    width: 100%;
    justify-items: center;
  }

  .home-header-utility {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-header-search {
    width: min(100%, 320px);
  }

  .hero-static-legacy,
  .hero-static-legacy .hero-slide-shell {
    min-height: 580px;
  }

  .hero-slide-shell-legacy {
    padding-bottom: 120px;
  }

  .hero-slide-copy-legacy {
    margin-left: 0;
  }

  .product-line-grid,
  .contact-card-grid-legacy,
  .footer-legacy-grid {
    grid-template-columns: 1fr;
  }

  .contact-legacy-card,
  .footer-legacy-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-line-card {
    min-height: 270px;
  }
}
.legacy-news-card-thumb {
  display: block;
  width: 240px;
  height: 150px;
  overflow: hidden;
  background: #f2f2f2;
}
.legacy-news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legacy-news-card-content h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
  color: #333;
}
.legacy-news-card-content p {
  margin: 0;
  color: #7b7b7b;
  line-height: 1.8;
}
.legacy-news-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  color: #999;
  font-size: 12px;
}
.legacy-news-meta span,
.legacy-hot-news-copy small,
.legacy-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legacy-news-meta img,
.legacy-hot-news-copy img,
.legacy-single-meta img {
  width: 16px;
  height: 16px;
}
.legacy-news-empty,
.legacy-sidebar-card,
.legacy-single-card {
  background: #fff;
}
.legacy-news-empty {
  padding: 40px;
}
.legacy-sidebar-card {
  padding: 24px;
}
.legacy-sidebar-card h3 {
  margin-bottom: 18px;
  font-size: 22px;
  color: #333;
}
.legacy-hot-news-list {
  display: grid;
  gap: 18px;
}
.legacy-hot-news-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  color: #333;
}
.legacy-hot-news-rank {
  font-weight: 700;
  color: var(--brand-strong);
}
.legacy-hot-news-copy {
  display: grid;
  gap: 8px;
}
.legacy-hot-news-copy strong {
  font-size: 14px;
  line-height: 1.6;
}
.legacy-hot-news-copy small {
  color: #999;
  font-size: 12px;
}

.legacy-single-shell {
  padding: 14px 0 60px;
}
.legacy-single-container {
  width: min(100%, 1200px);
}
.legacy-single-breadcrumbs {
  padding: 10px 0;
  color: #333;
  font-size: 14px;
}
.legacy-single-breadcrumbs span {
  color: #999;
}
.legacy-single-card {
  padding: 50px;
}
.legacy-single-card h1 {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  color: #333;
}
.legacy-single-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 40px;
  color: #999;
}

.commerce-hero,
.commerce-section,
.commerce-detail-section {
  padding: 24px 0 56px;
}
.commerce-hero-copy,
.commerce-page-heading {
  max-width: 760px;
  margin-bottom: 20px;
}
.catalog-taxonomy-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.catalog-filter-bar,
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.catalog-filter-bar {
  padding: 18px;
  border: 1px solid #ececec;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.catalog-filter-field {
  display: flex;
  min-width: 180px;
}
.catalog-filter-search {
  flex: 1 1 280px;
}
.catalog-filter-field input,
.catalog-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d8deea;
  background: #fff;
  color: #22304a;
}
.catalog-toolbar {
  margin-bottom: 18px;
}
.catalog-toolbar p {
  margin: 0;
  color: #5c6b86;
}
.catalog-clear-link {
  color: var(--brand-strong);
  font-weight: 600;
}
.catalog-tax-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ececec;
  color: #555;
  font-size: 14px;
}
.catalog-tax-pill.is-active {
  color: #fff;
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.catalog-card,
.cart-table-card,
.cart-summary-card,
.checkout-form-card,
.checkout-summary-card,
.commerce-gallery-card,
.commerce-summary-card,
.commerce-article-card,
.commerce-spec-card,
.commerce-empty {
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.catalog-card {
  overflow: hidden;
}
.catalog-card-media {
  display: block;
  height: 240px;
  background: #fff;
}
.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-card-body {
  padding: 20px;
}
.catalog-sku {
  margin: 0 0 8px;
  color: #8d96a7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.catalog-card-body h2 {
  font-size: 1.08rem;
  line-height: 1.45;
}
.catalog-card-body p {
  color: #67758d;
  line-height: 1.75;
}
.catalog-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 14px;
}
.catalog-price-row strong {
  font-size: 1.5rem;
  color: #111;
}
.catalog-price-row span {
  color: #999;
  text-decoration: line-through;
}
.catalog-price-row-large strong {
  font-size: 2rem;
}
.catalog-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.catalog-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f7fb;
  color: #4d5a70;
  font-size: 12px;
}
.catalog-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff3ef;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 600;
}
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.catalog-actions form {
  margin: 0;
}
.catalog-empty,
.commerce-empty {
  padding: 40px;
}
.commerce-detail-grid,
.cart-layout,
.checkout-layout,
.commerce-content-grid {
  display: grid;
  gap: 24px;
}
.commerce-detail-grid {
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 24px;
}
.commerce-gallery-card,
.commerce-summary-card,
.commerce-article-card,
.commerce-spec-card,
.cart-table-card,
.cart-summary-card,
.checkout-form-card,
.checkout-summary-card {
  padding: 26px;
}
.commerce-gallery-main {
  display: grid;
  place-items: center;
  min-height: 420px;
  background: #fff;
}
.commerce-gallery-main img {
  max-height: 360px;
  object-fit: contain;
}
.commerce-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.commerce-gallery-thumb {
  display: grid;
  place-items: center;
  min-height: 90px;
  border: 1px solid #ececec;
  background: #fff;
}
.commerce-gallery-thumb img {
  max-height: 68px;
  object-fit: contain;
}
.commerce-summary-copy {
  color: #67758d;
  line-height: 1.8;
}
.commerce-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.commerce-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f6f8fc;
}
.commerce-meta-grid strong,
.summary-line strong {
  display: block;
  margin-bottom: 6px;
}
.commerce-buy-form {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}
.commerce-buy-form input {
  width: 88px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
.commerce-content-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.commerce-spec-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.commerce-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
}
.commerce-notice.success {
  color: #155724;
  background: #e8f7eb;
}
.commerce-notice.error {
  color: #8a2432;
  background: #ffe9ec;
}
.cart-layout,
.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th,
.cart-table td {
  padding: 16px 10px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: middle;
}
.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-product-cell img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
}
.cart-product-cell span {
  display: block;
  margin-top: 6px;
  color: #8d96a7;
  font-size: 12px;
}
.cart-table input {
  width: 78px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-strong);
  cursor: pointer;
}
.button-ghost {
  color: var(--brand-strong);
  background: #fff3ef;
  border-color: #ffd0c3;
}
.button-ghost:hover {
  background: #ffe8df;
}
.cart-actions-row,
.checkout-summary-list {
  display: grid;
  gap: 12px;
}
.cart-actions-row {
  margin-top: 20px;
  justify-content: start;
  grid-auto-flow: column;
}
.summary-line,
.checkout-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.checkout-summary-list {
  margin-bottom: 18px;
}

.woo-section .woocommerce-result-count,
.woo-section .woocommerce-ordering {
  margin-bottom: 18px;
}
.woo-section ul.products {
  margin: 0;
  padding: 0;
}
.woo-section ul.products li.product {
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  padding: 14px;
}
.woo-section ul.products li.product .button {
  margin-top: 10px;
}
.woo-section .woocommerce-message,
.woo-section .woocommerce-info,
.woo-section .woocommerce-error {
  margin-bottom: 18px;
}
.woo-section div.product {
  margin-top: 12px;
}
.woo-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 6px;
}
.woo-product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f6f8fc;
  color: #4d5a70;
  font-size: 11px;
}
.woo-product-meta-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #ececf2;
  background: #fafbfe;
}
.woo-product-meta-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.woo-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.woo-product-meta-grid div {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ececf2;
}
.woo-product-meta-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #5d6b86;
}
.woo-product-spec-list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.woo-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}
.woo-category-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #ececf2;
  background: #fff;
  min-height: 124px;
}
.woo-category-card-media {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.woo-category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.woo-category-card strong {
  font-size: 14px;
  color: #1f2b45;
}
.woo-category-card small {
  font-size: 12px;
  color: #62718b;
  line-height: 1.5;
}
.woo-category-heading {
  padding: 20px;
  border: 1px solid #ececf2;
  background: #fff;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1100px) {
  .about-grid,
  .archive-page-grid,
  .single-page-grid,
  .contact-page-grid,
  .proof-grid,
  .home-news-layout {
    grid-template-columns: 1fr;
  }
  .product-showcase-grid,
  .home-category-strip-grid,
  .contact-card-grid,
  .news-grid-refined,
  .contact-card-grid-refined,
  .hot-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .refined-about-grid,
  .home-category-mega-panel-refined {
    grid-template-columns: 1fr;
  }
  .legacy-news-shell,
  .legacy-news-card {
    grid-template-columns: 1fr;
  }
  .legacy-footer-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-grid,
  .commerce-detail-grid,
  .cart-layout,
  .checkout-layout,
  .commerce-content-grid,
  .commerce-meta-grid {
    grid-template-columns: 1fr;
  }
  .catalog-filter-bar {
    align-items: stretch;
  }
  .catalog-filter-field {
    min-width: 0;
    width: 100%;
  }
  .woo-product-meta-grid {
    grid-template-columns: 1fr;
  }
  .woo-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-inner,
  .home-category-strip-grid,
  .home-category-mega-panel,
  .product-showcase-grid,
  .three-up,
  .news-grid,
  .news-grid-refined,
  .contact-card-grid,
  .contact-card-grid-refined,
  .contact-points,
  .form-grid,
  .mini-stats,
  .spec-grid,
  .about-stat-grid,
  .product-detail-grid,
  .hot-product-grid,
  .home-category-mega-panel-refined,
  .category-subgrid {
    grid-template-columns: 1fr;
  }
  .site-topbar-inner,
  .subscribe-panel,
  .subscribe-form,
  .legacy-footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-topbar-inner {
    display: flex;
    justify-content: space-between;
  }
  .topbar-announcement,
  .topbar-meta {
    grid-column: auto;
    justify-self: auto;
  }
  .primary-nav,
  .header-search { display: none; }
  .topbar-language,
  .header-account,
  .header-cart { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-carousel,
  .hero-carousel-full { min-height: 460px; }
  .hero-slide-shell { min-height: 460px; }
  .hero-slide-copy h1 { font-size: clamp(2.1rem, 9vw, 3.3rem); }
  .archive-card { grid-template-columns: 1fr; }
  .about-visual,
  .about-page-banner { min-height: 380px; }
  .section { padding: 56px 0; }
  .legacy-title-box,
  .legacy-content-card,
  .legacy-single-card {
    width: auto;
    padding: 24px;
  }
  .legacy-news-card-thumb {
    width: 100%;
    height: 220px;
  }
  .legacy-single-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .woo-category-grid {
    grid-template-columns: 1fr;
  }
  .cart-actions-row {
    grid-auto-flow: row;
  }
  .legacy-footer-services {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .legacy-footer-links,
  .legacy-footer-copy {
    justify-content: flex-start;
    text-align: left;
  }
  .legacy-footer-address {
    margin-left: 0;
    display: block;
    margin-top: 8px;
  }
  .home-category-toolbar {
    grid-template-columns: 1fr;
  }
  .category-arrow {
    display: none;
  }
}

/* Home mega menu compatibility: keep top nav style, do not affect child-data panel internals. */
.site-header-home .primary-nav > ul.cpl-nav__menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.site-header-home .primary-nav .cpl-mega-panel {
  overflow: hidden;
}

.site-header-home .primary-nav .cpl-mega-group__links {
  display: grid !important;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.site-header-home .primary-nav .cpl-mega-group__links li {
  width: 100%;
}

.site-header-home .primary-nav .cpl-mega-group__links a {
  color: #646b77 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.site-header-home .primary-nav .cpl-mega-group__item a {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.site-header-home .primary-nav .cpl-mega-group__links a:hover {
  color: #111827 !important;
}

/* ------------------------------ */
/* Home 1.1 Layout (new front page) */
body.home {
  background: #f6f7f8;
  color: #1f2937;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 252, 255, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: none;
  z-index: 140;
}

body.admin-bar.home .site-header {
  top: 0;
}

body.home .site-header-home .primary-nav a,
body.home .site-header-home .header-actions-home a,
body.home .site-header-home .header-actions-home button,
body.home .site-header-home .home-header-utility a,
body.home .site-header-home .brand-fallback-text {
  color: #1f2937 !important;
}

body.home .site-header-home .home-header-utility {
  color: #6b7280;
}

body.home .site-header-home .home-header-search {
  border: 1px solid rgba(31, 41, 55, 0.42);
  background: rgba(255, 255, 255, 0.28);
}

body.home .site-header-home .home-header-search input {
  color: #1f2937;
}

body.home .site-header-home .home-header-search input::placeholder {
  color: #9aa3b2;
}

body.home .site-header-home .home-header-search button {
  border-color: #d5dbe4;
}

body.home .site-header-home .home-header-search button::before {
  border-color: #6b7280;
}

body.home .site-header-home .home-header-search button::after {
  background: #6b7280;
}

body.home .site-header-home .cpl-mega-panel--child-data {
  width: min(1240px, 92vw);
}

.home11-stage .container,
.home11-section .container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.home11-stage {
  background: #ffffff;
  padding-bottom: 18px;
}

.home11-hero {
  height: clamp(360px, 34vw, 520px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


.home11-hero-logo {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: clamp(170px, 16vw, 240px);
  max-width: 90%;
  z-index: 2;
}

.home11-showcase-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home11-showcase-card {
  position: relative;
  min-height: 136px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 12px 10px;
  color: #ffffff;
  border: 1px solid #dfe5ee;
}

.home11-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home11-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 24, 0.25) 8%, rgba(9, 16, 30, 0.82) 100%);
}

.home11-showcase-title,
.home11-showcase-desc,
.home11-showcase-cta {
  position: relative;
  z-index: 1;
}

.home11-showcase-title {
  display: block;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 600;
}

.home11-showcase-desc {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.32;
  opacity: 0.95;
}

.home11-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  width: fit-content;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ff7b1a;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.home11-section {
  padding: 60px 0 0;
}

.home11-heading {
  text-align: center;
  margin-bottom: 34px;
}

.home11-heading h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

.home11-heading p {
  margin: 12px auto 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.55;
  max-width: 980px;
}

.home11-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 16px auto 0;
  background: #ff7b1a;
  border-radius: 999px;
}

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

.home11-service-card {
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.home11-service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.home11-service-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ff7b1a;
  box-shadow: 0 6px 14px rgba(255, 123, 26, 0.32);
  position: relative;
}

.home11-service-dot::before,
.home11-service-dot::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.home11-service-dot::before {
  width: 14px;
  height: 2px;
  left: 10px;
  top: 16px;
}

.home11-service-dot::after {
  width: 2px;
  height: 14px;
  left: 16px;
  top: 10px;
}

.home11-service-head h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 700;
  color: #2b3441;
}

.home11-service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 10px;
  align-items: end;
}

.home11-service-content {
  min-width: 0;
}

.home11-service-desc {
  margin: 0;
  color: #5f6876;
  font-size: 16px;
  line-height: 1.35;
}

.home11-service-body ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #6b7280;
  display: grid;
  gap: 8px;
}

.home11-service-body li {
  font-size: 15px;
  line-height: 1.35;
}

.home11-service-link {
  display: inline-flex;
  margin-top: 10px;
  color: #ff7b1a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.home11-service-link::after {
  content: "→";
  margin-left: 6px;
}

.home11-service-body img {
  width: 164px;
  height: 112px;
  object-fit: contain;
  justify-self: end;
}

.home11-metrics-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home11-metric-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  padding: 12px;
}

.home11-metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff5ed;
  border: 1px solid #ffd4b5;
  position: relative;
}

.home11-metric-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid #ff7b1a;
  border-radius: 6px;
}

.home11-metric-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  color: #2a3340;
  font-weight: 600;
}

.home11-metric-item p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #6b7280;
}

.home11-product-line {
  padding-top: 72px;
}

.home11-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.home11-tab {
  height: 62px;
  border: 1px solid #e2e7f0;
  border-radius: 8px;
  background: #fff;
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  transition: all .2s ease;
}

.home11-tab::before {
  content: "";
  width: 56px;
  height: 24px;
  background: url("https://www.lsolink.com/wp-content/uploads/2025/06/1G-SFP-U34-20主图-e1751609069780.jpg") center / contain no-repeat;
  filter: saturate(0.3);
}

.home11-tab.is-active {
  border-color: #ff7b1a;
  background: #ff7b1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 123, 26, 0.25);
}

.home11-tab.is-active::before {
  filter: none;
}

.home11-tab-panel {
  display: none;
}

.home11-tab-panel.is-active {
  display: block;
}

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

.home11-product-card {
  border: 1px solid #e6eaf2;
  border-radius: 12px;
  background: #fff;
  min-height: 356px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 14px 18px;
  text-align: center;
}

.home11-product-media {
  width: 100%;
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.home11-product-media img {
  max-width: 95%;
  max-height: 170px;
  object-fit: contain;
}

.home11-product-card strong {
  color: #2b3441;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.home11-product-card::after {
  content: "Learn More →";
  margin-top: 14px;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #ffb783;
  color: #ff7b1a;
  font-size: 13px;
  line-height: 1;
}

.home11-resources {
  padding-top: 70px;
}

.home11-resource-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home11-resource-item {
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  background: #fff;
  padding: 18px 14px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
}

.home11-resource-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff5ed;
  border: 1px solid #ffd9bd;
  position: relative;
}

.home11-resource-icon::before,
.home11-resource-icon::after {
  content: "";
  position: absolute;
  background: #ff7b1a;
}

.home11-resource-icon::before {
  width: 16px;
  height: 2px;
  left: 10px;
  top: 18px;
}

.home11-resource-icon::after {
  width: 2px;
  height: 16px;
  left: 17px;
  top: 11px;
}

.home11-resource-item h3 {
  margin: 0;
  color: #2b3441;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
}

.home11-resource-item p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.35;
}

.home11-resource-link {
  display: inline-flex;
  margin-top: 10px;
  color: #ff7b1a;
  font-size: 16px;
  line-height: 1;
}

.home11-resource-link::after {
  content: "→";
  margin-left: 6px;
}

.home11-featured {
  padding-top: 48px;
  padding-bottom: 44px;
}

.home11-featured .home11-heading {
  margin-bottom: 20px;
  text-align: left;
}

.home11-featured .home11-heading::after {
  display: none;
}

.home11-featured .home11-heading h2 {
  font-size: 42px;
}

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

.home11-featured-card {
  border: 1px solid #e5eaf2;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 14px;
}

.home11-featured-media {
  grid-column: 2;
  grid-row: 1 / span 4;
  border-radius: 10px;
  overflow: hidden;
}

.home11-featured-media img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.home11-featured-copy {
  grid-column: 1;
  min-width: 0;
}

.home11-featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #2b7cff;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.home11-featured-card:nth-child(2) .home11-featured-badge {
  background: #42a64b;
}

.home11-featured-card:nth-child(3) .home11-featured-badge {
  background: #ff8a1f;
}

.home11-featured-copy h3 {
  margin: 10px 0 0;
  color: #2b3441;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.home11-featured-copy h3 a {
  color: inherit;
}

.home11-featured-date {
  margin: 8px 0 0;
  color: #8a93a3;
  font-size: 14px;
  line-height: 1.25;
}

.home11-featured-link {
  display: inline-flex;
  margin-top: 10px;
  color: #ff7b1a;
  font-size: 16px;
  line-height: 1;
}

.home11-featured-link::after {
  content: "→";
  margin-left: 6px;
}

.home11-more-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.home11-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 244px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #ffb684;
  color: #ff7b1a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.home11-more::after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 1240px) {
  .home11-showcase-row,
  .home11-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home11-showcase-row .home11-showcase-card:last-child {
    display: none;
  }

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

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

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

@media (max-width: 980px) {
  .home11-heading h2 {
    font-size: clamp(30px, 7.2vw, 44px);
  }

  .home11-heading p {
    font-size: 16px;
  }

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

  .home11-showcase-row .home11-showcase-card:last-child {
    display: flex;
  }

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

  .home11-tab {
    font-size: 15px;
  }

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

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

  .home11-featured-grid {
    grid-template-columns: 1fr;
  }

  .home11-featured-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .home11-featured-media {
    grid-column: 1;
    grid-row: auto;
  }

  .home11-featured-media img {
    height: 190px;
  }
}

@media (max-width: 680px) {
  .home11-stage .container,
  .home11-section .container {
    width: min(1240px, 94vw);
  }

  .home11-showcase-title {
    font-size: 20px;
  }

  .home11-service-head h3,
  .home11-metric-item h3,
  .home11-resource-item h3,
  .home11-featured-copy h3 {
    font-size: 20px;
  }

  .home11-tab,
  .home11-product-card strong {
    font-size: 15px;
  }

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

  .home11-service-body {
    grid-template-columns: 1fr;
  }

  .home11-service-body img {
    justify-self: start;
  }

  .home11-metrics-row,
  .home11-resource-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage PC refresh: dynamic content version. */
body.home .home11-stage {
  background: #fff;
  padding-bottom: 18px;
}

body.home .home11-stage .container,
body.home .home11-section .container {
  width: min(1380px, 94vw);
}

body.home .home11-hero {
  width: 100vw;
  max-width: 100vw;
  height: 680px;
  min-height: 680px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  background: #f4f6f8;
}

body.home .home11-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity .45s ease;
}

body.home .home11-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.home .home11-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

body.home .home11-hero-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  cursor: pointer;
}

body.home .home11-hero-dot.is-active {
  width: 22px;
  background: #fff;
}

body.home .home11-showcase-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
  gap: 24px;
  margin-top: 18px;
  overflow-x: visible;
  overflow-y: visible;
  padding: 0 0 4px;
}

body.home .home11-showcase-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 166px;
  border-radius: 2px;
  border: 0;
  padding: 16px 12px 12px;
  box-shadow: none;
}

body.home .home11-showcase-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

body.home .home11-showcase-desc {
  min-height: 32px;
  font-size: 12px;
  text-align: center;
}

body.home .home11-showcase-cta {
  align-self: center;
  min-height: 22px;
  padding: 0 12px;
  font-size: 11px;
}

body.home .home11-section {
  padding-top: 58px;
}

body.home .home11-heading {
  margin-bottom: 28px;
}

body.home .home11-heading h2 {
  font-size: 30px;
  letter-spacing: 0;
}

body.home .home11-heading p {
  margin-top: 12px;
  font-size: 15px;
}

body.home .home11-heading::after {
  width: 54px;
  height: 2px;
  margin-top: 14px;
}

body.home .home11-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

body.home .home11-service-card,
body.home .home11-resource-item,
body.home .home11-featured-card,
body.home .home11-product-card,
body.home .home11-metric-item {
  border-color: #e7ebf1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

body.home .home11-service-card {
  min-height: 196px;
  padding: 18px 16px 14px;
}

body.home .home11-service-head h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

body.home .home11-service-dot {
  width: 32px;
  height: 32px;
}

body.home .home11-service-body {
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 8px;
  align-items: end;
}

body.home .home11-service-desc {
  font-size: 13px;
}

body.home .home11-service-body ul {
  gap: 4px;
  margin-top: 10px;
}

body.home .home11-service-body li,
body.home .home11-service-link {
  font-size: 11px;
}

body.home .home11-service-body img {
  width: 142px;
  height: 102px;
}

body.home .home11-metrics-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
  gap: 0;
  border: 1px solid #e7ebf1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

body.home .home11-metric-item {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 14px 16px;
}

body.home .home11-metric-item h3 {
  font-size: 14px;
  letter-spacing: 0;
}

body.home .home11-product-line {
  padding-top: 64px;
}

body.home .home11-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 48px;
  overflow-x: auto;
}

body.home .home11-tab {
  flex: 1 0 0;
  min-width: 220px;
  height: 50px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
}

body.home .home11-tab::before {
  display: none;
}

body.home .home11-tab img {
  width: 64px;
  height: 34px;
  object-fit: contain;
}

body.home .home11-tab.is-active {
  background: #ff701f;
  border-color: #ff701f;
}

body.home .home11-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.home .home11-product-card {
  min-height: 250px;
  padding: 18px 18px 20px;
}

body.home .home11-product-media {
  height: 134px;
  margin-bottom: 22px;
}

body.home .home11-product-media img {
  max-height: 128px;
}

body.home .home11-product-card strong {
  min-height: 42px;
  font-size: 15px;
  font-weight: 700;
}

body.home .home11-product-card::after {
  margin-top: 12px;
  padding: 4px 10px;
  font-size: 11px;
}

body.home .home11-resources {
  padding-top: 68px;
}

body.home .home11-resource-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body.home .home11-resource-item {
  min-height: 98px;
  padding: 16px 14px;
}

body.home .home11-resource-item h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
}

body.home .home11-resource-item p {
  font-size: 11px;
}

body.home .home11-resource-link {
  font-size: 11px;
}

body.home .home11-featured {
  padding-top: 32px;
}

body.home .home11-featured .home11-heading h2 {
  font-size: 20px;
}

body.home .home11-featured-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

body.home .home11-featured-card {
  flex: 0 0 31.3%;
  min-width: 340px;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 14px;
  padding: 16px;
}

body.home .home11-featured-media img {
  height: 96px;
}

body.home .home11-featured-badge {
  min-width: 48px;
  border-radius: 3px;
  font-size: 10px;
}

body.home .home11-featured-copy h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

body.home .home11-featured-date,
body.home .home11-featured-link {
  font-size: 11px;
}

body.home .home11-more {
  min-width: 164px;
  height: 34px;
  font-size: 14px;
}
