@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg: #e6e6e6;
  --bg-soft: #f3f3f3;
  --text: #2f2f2f;
  --muted: #666;
  --brand: #22aee8;
  --border: #cfcfcf;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.bg-glow {
  display: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
  background: #f7f7f7;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 2rem;
}
.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-link {
  color: #444;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 0;
  transition: .2s;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.5rem;
}
.nav-link:hover, .nav-link.active {
  color: #111;
  background: var(--bg-soft);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  color: #333;
  background: #fff;
  border-radius: 0;
  padding: 8px 10px;
}
.main {
  max-width: 1280px;
  margin: 30px auto;
  padding: 0 16px;
}
.content-card {
  background: #e6e6e6;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 22px;
}
.content img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}
.content a { color: var(--brand); }
.content table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; }
.content th, .content td { border: 1px solid var(--border); padding: 8px; }
.content h2, .content h3 { margin: 1.4rem 0 0.7rem; line-height: 1.25; }
.content p, .content ul, .content ol { color: #2b2b2b; }
.content-card .content > * { color: #2b2b2b; }
.content-card .content p,
.content-card .content li { color: #2b2b2b; }
.content figure {
  margin: 1rem 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.content figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.content .news-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0;
  background: rgba(11, 16, 25, 0.55);
}
/* Hide orphaned slider controls from Elementor markup (no slider JS on static build). */
.content [role="button"][tabindex="0"] {
  display: none !important;
}
.hero-slider {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 18px;
}
.hero-track {
  display: flex;
  transition: transform 0.45s ease;
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.hero-slide figure {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
}
.hero-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
}
.hero-slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  margin: 0;
  padding: 0;
  background: transparent;
}
.hero-slide figcaption a {
  display: inline-block;
  padding: 16px 34px;
  background: #ff3366;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(15px, 1.9vw, 22px);
}
.hero-slide figcaption img { display: none; }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(12, 17, 27, 0.62);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }
.home-intro { margin: 10px 0 26px; }
.home-intro h2 { margin: 0 0 10px; }
.home-intro h2,
.series-block h2,
.row-text h3,
.services h2,
.featured-news h2,
.company h2,
.product-summary h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}
.home-intro p {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  margin: 10px 0 0;
}
.series-block {
  background: #e7e7e7;
  color: #222;
  border-radius: 0;
  margin: 0 0 18px;
  padding: 20px;
}
.series-block a { color: #1eafe8; text-decoration: none; }
.series-block .series-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.series-block .series-head > div:only-child {
  grid-column: 1 / -1;
}
.series-logo {
  width: 100px;
  height: 88px;
  background: #fff;
  border: 4px solid #111;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.series-logo strong { font-size: 36px; letter-spacing: .02em; }
.series-logo small { font-size: 26px; }
.series-block .series-logo img { max-width: 100%; height: auto; }
.series-block h2 { margin: 0 0 8px; font-size: clamp(1.2rem, 2.2vw, 2rem); }
.series-block p, .series-block li { color: #222; }
.product-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 10px;
  background: #f0f0f0;
  margin-bottom: 8px;
}
.product-row.reverse { grid-template-columns: 1fr 220px; }
.product-row.reverse .row-image { order: 2; }
.product-row.reverse .row-text { order: 1; }
.row-image img { max-width: 100%; max-height: 220px; object-fit: contain; margin: 0 auto; }
.row-text h3 { margin: 0 0 8px; font-size: clamp(1rem, 1.8vw, 1.8rem); }
.services, .featured-news, .company {
  background: #e7e7e7;
  color: #222;
  padding: 20px;
  margin: 0 0 18px;
}
.services h2, .featured-news h2, .company h2 { color: #1eafe8; margin-top: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: #222;
}
.service-card img { width: 100%; max-height: 140px; object-fit: contain; background: #fff; }
.news-list-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: #efefef;
  padding: 10px;
  margin-bottom: 10px;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; max-height: 120px; }
.news-more, .all-news {
  display: inline-block;
  padding: 7px 14px;
  background: #21afe8;
  color: #fff;
  text-decoration: none;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.company-card { text-decoration: none; color: #222; display: block; }
.company-card img { width: 100%; max-height: 160px; object-fit: cover; }
.company-card span { display: block; padding-top: 8px; }
.product-detail-title {
  color: #1eafe8;
  margin: 0 0 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 18px;
}
.product-gallery {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
}
.pg-main {
  position: relative;
  min-height: 340px;
  border: 0;
}
.pg-slide {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.pg-slide.active { display: flex; }
.pg-slide img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  margin: 0 auto;
}
.pg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 2px solid #8f939b;
  border-radius: 50%;
  background: #f0f0f0;
  color: #6b6f77;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.pg-nav.prev { left: 8px; }
.pg-nav.next { right: 8px; }
.pg-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pg-thumb {
  border: 1px solid #bcbcbc;
  background: #fff;
  padding: 3px;
  width: 94px;
  height: 66px;
  cursor: pointer;
}
.pg-thumb.active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}
.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-summary h3 {
  margin: 0 0 10px;
  font-size: 2.1rem;
}
.product-summary p,
.product-summary li { color: #2b2b2b; }
.product-section {
  margin: 0 0 24px;
}

.product-section h2 {
  color: #2b2b2b;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}

.product-section-body > :first-child {
  margin-top: 0;
}

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

.series-banner {
  margin: 0 0 18px;
}

.series-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.download-card {
  display: grid;
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: #222;
  background: #efefef;
  padding: 14px;
}

.download-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.download-card span {
  font-weight: 700;
}

.product-embed iframe {
  width: 100%;
  min-height: 420px;
}

.product-detail-page table img {
  max-width: 96px;
  max-height: 64px;
  object-fit: contain;
}
.footer {
  text-align: center;
  color: #666;
  padding: 30px 10px 40px;
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    right: 12px;
    top: 58px;
    background: #f7f7f7;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 8px;
    width: min(300px, calc(100vw - 24px));
    display: none;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .hero-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .product-detail-title {
    font-size: clamp(1.4rem, 7vw, 2.3rem);
    line-height: 1.15;
  }
  .product-hero { grid-template-columns: 1fr; }
  .pg-main, .pg-slide { min-height: 240px; }
  .pg-slide img { max-height: 240px; }
  .pg-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .product-summary h3 { font-size: 1.6rem; }
  .downloads-grid { grid-template-columns: 1fr; }
  .series-block .series-head { grid-template-columns: 1fr; }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse .row-image, .product-row.reverse .row-text { order: unset; }
  .services-grid, .company-grid { grid-template-columns: 1fr 1fr; }
  .news-list-item { grid-template-columns: 1fr; }
}

.entry-header {
  margin-bottom: 18px;
}

.entry-title {
  margin: 0 0 8px;
  color: #1eafe8;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.entry-meta {
  margin: 0 0 14px;
  color: var(--muted);
}

.entry-featured-image {
  margin: 0 0 20px;
}

.entry-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.nav .menu-item,
.nav .page_item {
  list-style: none;
}

.nav-link.active,
.nav-link.current-menu-item,
.nav-link.current-page-ancestor {
  color: #111;
  background: var(--bg-soft);
}

.post-navigation,
.navigation.pagination {
  margin-top: 20px;
}

.page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 6px;
  border: 1px solid var(--border);
  color: #222;
  text-decoration: none;
  background: #f0f0f0;
}

.page-numbers.current {
  background: #21afe8;
  color: #fff;
  border-color: #21afe8;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  z-index: 100000;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.support-hero {
  margin: 0 0 24px;
}

.support-hero figcaption {
  color: #2b2b2b;
  font-size: 1.1rem;
}

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

.support-service-card {
  align-items: flex-start;
  background: #efefef;
  padding: 12px;
}

.support-service-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.support-service-card span {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.35rem;
}

.support-service-card small {
  color: var(--muted);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 28px;
}

.support-main {
  min-width: 0;
}

.support-sidebar {
  align-self: start;
}

.support-nav {
  border: 1px solid var(--border);
  background: #efefef;
  padding: 18px;
}

.support-nav h2 {
  margin-top: 0;
  color: #1eafe8;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}

.support-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-nav li + li {
  margin-top: 8px;
}

.support-nav a {
  display: block;
  text-decoration: none;
  color: #2b2b2b;
  padding: 8px 10px;
  background: #f8f8f8;
}

.support-nav a.active,
.support-nav a:hover {
  color: #111;
  background: #dfeffc;
}

.support-section {
  margin: 0 0 24px;
}

.support-section h2 {
  margin-top: 0;
  color: #1eafe8;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}

.support-resource-list {
  display: grid;
  gap: 12px;
}

.support-resource-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: #efefef;
  border: 1px solid var(--border);
  padding: 14px;
}

.support-resource-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.support-resource-content h3 {
  margin: 0 0 6px;
}

.support-resource-content p {
  margin: 0;
}

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

.support-video-card {
  display: block;
  text-decoration: none;
  color: #222;
  background: #efefef;
  border: 1px solid var(--border);
  padding: 12px;
}

.support-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 10px;
}

.support-video-card span {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
}

.support-embed form {
  display: grid;
  gap: 12px;
}

.support-embed input,
.support-embed textarea,
.support-embed select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: #fff;
  color: #222;
  font: inherit;
}

.support-embed input[type="submit"],
.support-embed button,
.support-embed .wpcf7-submit {
  width: auto;
  cursor: pointer;
  background: #21afe8;
  color: #fff;
  border: 0;
  padding: 12px 18px;
}

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

  .support-services-grid,
  .support-video-grid {
    grid-template-columns: 1fr;
  }

  .support-resource-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
