/* ==========================================================================
   Servo Drives local component dependencies
   ========================================================================== */

.page-servo-drives {
  font-family: Arial, Helvetica, sans-serif;
  --products-section-padding: 5rem 2rem;
  --product-card-padding: 2rem;
  --product-card-h3-size: 1.35rem;
  --product-card-p-size: 0.95rem;
}

.page-servo-drives h1,
.page-servo-drives h2,
.page-servo-drives h3,
.page-servo-drives h4,
.page-servo-drives p,
.page-servo-drives a,
.page-servo-drives li,
.page-servo-drives button {
  font-family: inherit;
}

.page-servo-drives .products-section {
  padding: var(--products-section-padding);
  background: #ffffff;
}

.page-servo-drives .products-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  color: #111827;
}

.page-servo-drives .products-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 4rem;
}

.page-servo-drives .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.page-servo-drives .product-card {
  background: #f9fafb;
  padding: var(--product-card-padding);
  border-radius: 24px;
  border: 2px solid #f3f4f6;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-servo-drives .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.page-servo-drives .product-card:hover::before {
  transform: scaleX(1);
}

.page-servo-drives .product-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: var(--brand-red);
  box-shadow: 0 25px 60px rgba(221, 0, 0, 0.15);
}

.page-servo-drives .product-card h3 {
  font-size: var(--product-card-h3-size);
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--brand-black);
}

.page-servo-drives .product-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: var(--product-card-p-size);
}

.page-servo-drives .product-link {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  align-self: flex-start;
}

.page-servo-drives .product-link svg {
  transition: transform 0.3s ease;
  will-change: transform;
}

.page-servo-drives .product-link:hover svg {
  transform: translateX(0.5rem);
}

.page-servo-drives .btn-primary {
  background-color: var(--brand-red);
  color: #ffffff !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(221, 0, 0, 0.3);
}

.page-servo-drives .btn-primary:hover {
  background-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(221, 0, 0, 0.4);
}

.page-servo-drives .text-link {
  color: #001e28 !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.page-servo-drives .text-link:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

.page-servo-drives .action-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.page-servo-drives .downloads-block {
  background-color: #f3f4f6;
  padding: 3rem;
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-servo-drives .cta-block {
  background-color: #001e28;
  color: #ffffff;
  padding: 3rem;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.page-servo-drives .cta-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.page-servo-drives .downloads-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #001e28;
}

.page-servo-drives .cta-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.page-servo-drives .cta-block p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 90%;
}

.page-servo-drives .bento-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.page-servo-drives .bento-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.page-servo-drives .bento-header p,
.page-servo-drives .bento-header .subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.page-servo-drives .bento-card {
  --bento-color: var(--brand-red);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.page-servo-drives .bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--bento-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 5;
}

.page-servo-drives .bento-card:hover::before {
  transform: scaleX(1);
}

.page-servo-drives .bento-card:hover {
  transform: translateY(-10px);
  border-color: var(--bento-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.page-servo-drives .bento-card-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.page-servo-drives .bento-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-black);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.page-servo-drives .bento-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .page-servo-drives .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-servo-drives .product-card {
    padding: 1.5rem !important;
  }

  .page-servo-drives .action-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-servo-drives .downloads-block,
  .page-servo-drives .cta-block {
    border-radius: 16px;
  }
}

.selection-guide {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.selection-guide__header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.selection-guide__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.selection-guide h2 {
  margin: 0 0 1rem;
}

.selection-guide p {
  margin: 0 auto;
  max-width: 760px;
  color: #475569;
  line-height: 1.65;
}

.selection-table-wrapper {
  max-width: 1100px;
  margin: 2rem auto 0;
  overflow-x: auto;
}

.selection-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.selection-table th,
.selection-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.selection-table th {
  background: #f8fafc;
  color: #001e28;
  font-weight: 800;
}

.selection-table td {
  color: #334155;
  line-height: 1.55;
}

.selection-table tbody tr:last-child td {
  border-bottom: 0;
}

.selection-table .selection-slide-media {
  display: none;
}

.selection-swipe-hint {
  display: none;
}

.selection-table td[data-label="Recommended range"] {
  font-weight: 800;
  color: var(--brand-red);
  white-space: nowrap;
}

.selection-cta-row td {
  padding: 0;
  border-bottom: 0;
}

.selection-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #001e28 0%, #123846 100%);
  color: #ffffff;
}

.selection-cta__content {
  display: grid;
  gap: 0.95rem;
}

.selection-cta__content strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.selection-cta__text {
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.selection-cta__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border-radius: 8px;
  background: var(--brand-red);
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.selection-cta__button:hover,
.selection-cta__button:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

      .servo-eyebrow {
        display: inline-block;
        margin-bottom: 0.75rem;
        color: var(--brand-red);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .servo-products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        margin: 0;
      }

      .servo-product-card {
        background: #ffffff;
      }

      .page-servo-drives .servo-product-card h4 {
        margin: 1.15rem 0 0.85rem;
        color: #001e28;
        font-size: clamp(1.18rem, 2vw, 1.35rem);
        line-height: 1.22;
        font-weight: 800;
      }

      .servo-product-image {
        max-height: 280px;
        object-fit: contain;
      }

      .servo-feature-list {
        margin: 0 0 1.5rem;
        padding-left: 1.2rem;
        color: #475569;
        line-height: 1.6;
      }

      .servo-range-divider {
        height: 4px;
        margin: 0 0 1.25rem;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--hero-blue), var(--brand-red));
      }

      .servo-range-lead {
        margin: 0;
        color: #475569;
        font-size: 1rem;
        line-height: 1.65;
      }

      .servo-fieldbus-logos {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.55rem;
        align-items: center;
        justify-content: center;
        margin: 0 0 1rem;
        padding: 0;
        list-style: none;
      }

      .servo-fieldbus-logos li {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 46px;
        padding: 0.5rem 0.6rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: #ffffff;
      }

      .servo-fieldbus-logos img {
        max-width: 94px;
        max-height: 30px;
        width: auto;
        object-fit: contain;
      }

      .servo-fieldbus-logos--single li {
        min-width: 118px;
      }

      .servo-safety-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        min-height: 46px;
        padding: 0.5rem 0.8rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: #ffffff;
      }

      .servo-safety-logo img {
        max-width: 132px;
        max-height: 34px;
        width: auto;
        object-fit: contain;
      }

      .servo-red-link {
        color: var(--brand-red);
        font-weight: 600;
      }

      .servo-align-center {
        align-self: center;
      }

      .servo-muted-copy {
        margin: 0;
        color: #475569;
        line-height: 1.65;
      }

      .servo-bento-card-white {
        height: 100%;
        background: #ffffff;
      }

      .servo-range-title {
        margin: 0 0 1rem;
        color: var(--brand-black);
        font-size: clamp(1.6rem, 3vw, 2.25rem);
        line-height: 1.05;
      }

      .servo-faq-red-top {
        border-top: 3px solid #e30613;
        padding-top: 1rem;
      }

      .servo-faq-reassurance-title {
        margin: 0 0 0.7rem;
        color: #001e28;
        font-size: 1.05rem;
        font-weight: 700;
      }

      .servo-faq-reassurance-text {
        margin: 0;
        color: #475569;
        font-size: 1rem;
        line-height: 1.65;
      }

      .sd-hero-watermark {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.12;
        overflow: hidden;
      }

      .sd-section-selection {
        background: #ffffff;
        padding: 2rem 1.5rem 5rem;
      }

      .sd-section-ranges {
        background: #ffffff;
        padding: 5rem 1.5rem;
      }

      .sd-panel {
        max-width: 1240px;
        margin: 0 auto;
        padding: 3rem;
        border: 1px solid #e2e8f0;
        border-radius: 28px;
        background: #f8fafc;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04);
      }

      .sd-block-bordered {
        display: block;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid #e2e8f0;
      }

      .sd-block-spaced {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid #e2e8f0;
      }

      .sd-block-top {
        padding-top: 2.5rem;
      }

      .sd-centered-heading {
        max-width: 820px;
        margin: 0 auto 2rem;
        text-align: center;
      }

      .sd-heading-rule {
        width: 72px;
        height: 4px;
        margin: 0 auto;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--hero-blue), var(--brand-red));
      }

      .sd-choice-grid {
        display: grid;
        grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.7fr);
        gap: 3rem;
        align-items: start;
        max-width: 1100px;
        margin: 0 auto;
      }

      .sd-card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
      }

      .page-servo-drives .sd-card-grid .bento-card h3 {
        margin: 0 0 0.75rem;
        color: #001e28;
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.3;
      }

      .page-servo-drives .sd-card-grid .bento-card p {
        margin: 0;
        color: #475569;
        font-size: 1rem;
        line-height: 1.55;
      }

      .page-servo-drives .bento-card.sd-dark-card {
        height: 100%;
        background: var(--brand-black);
        color: #ffffff;
        border-color: var(--brand-black);
      }

      .page-servo-drives .sd-card-grid .sd-dark-card .sd-on-dark {
        color: #ffffff;
      }

      .page-servo-drives .sd-card-grid .sd-dark-card .sd-on-dark-muted {
        color: rgba(255, 255, 255, 0.82);
      }

      .sd-support-label {
        display: inline-block;
        margin-bottom: 0.75rem;
        color: var(--yellow-safety);
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .sd-on-dark {
        color: #ffffff!important;
      }

      .sd-on-dark-muted {
        color: rgba(255, 255, 255, 0.82)!important;
      }

      .sd-link-on-dark {
        color: #ffffff;
        margin-top: 1rem;
      }

      .sd-inner-1100 {
        max-width: 1100px;
        margin: 0 auto;
      }

      .sd-inner-1280 {
        max-width: 1280px;
        margin: 0 auto;
      }

      @media (min-width: 1180px) {
        .page-servo-drives #servo-drive-ranges .sd-inner-1280 {
          max-width: 1440px;
        }
      }

      .sd-ranges-header {
        max-width: 900px;
        margin: 0 auto 4rem;
        text-align: center;
      }

      .sd-no-margin-bottom {
        margin-bottom: 0;
      }

      .page-servo-drives .bento-header .sd-no-margin-bottom,
      .page-servo-drives .products-section .sd-no-margin-bottom {
        margin-bottom: 0;
      }

      .servo-range-row {
        display: grid;
        grid-template-columns: minmax(240px, 0.75fr) minmax(0, 2fr);
        gap: 2rem;
        align-items: center;
        margin-bottom: 2rem;
        padding: 2rem;
        border: 1px solid #e2e8f0;
        border-radius: 28px;
        background: #f8fafc;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04);
      }

      .servo-range-row--muted {
        border-color: #e5e7eb;
        background: #f3f4f6;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.035);
      }

      .servo-range-row--last {
        margin-bottom: 0;
      }

      .sd-faq-section {
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
      }

      .sd-faq-layout {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        align-items: start;
        padding: 3.5rem 1rem;
      }

      .sd-faq-title {
        margin: 0 0 2rem;
        text-align: left;
      }

      .sd-faq-image-box {
        background: #f8fafc;
        border-radius: 12px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 280px;
        overflow: hidden;
      }

      .sd-faq-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .sd-faq-intro {
        color: #475569;
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: left;
      }

      .sd-faq-list-clean {
        border: 0;
        margin: 0;
      }

      .sd-faq-proof-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1rem;
      }

      .sd-faq-dark-top {
        border-top: 3px solid #001e28;
        padding-top: 1rem;
      }

      .page-servo-drives {
        --servo-header-offset: 70px;
        --servo-sticky-nav-offset: 70px;
        --servo-anchor-offset: calc(var(--servo-sticky-nav-offset) + 64px);
      }

      .page-servo-drives.servo-drives-widget-container {
        --servo-header-offset: 0px;
        --servo-sticky-nav-offset: 100px;
        --servo-anchor-offset: calc(var(--servo-sticky-nav-offset) + 64px);
      }

      .page-servo-drives main {
        padding-top: var(--servo-header-offset);
      }

      .page-servo-drives main :is(section, div)[id] {
        scroll-margin-top: var(--servo-anchor-offset);
      }

      .page-servo-drives #expertise-engineering {
        scroll-margin-top: calc(var(--servo-anchor-offset) + 64px);
      }

      /* --- PAGE HERO (Products Page Style) --- */
      .sd-hero {
        position: relative;
        height: 620px;
        margin-top: 0;
        overflow: hidden;
        display: block;
      }

      .sd-hero-media {
        display: none;
      }

      @media (min-width: 769px) {
        .page-servo-drives .sd-hero::before {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          pointer-events: none;
          background: linear-gradient(
            90deg,
            rgba(0, 30, 40, 0.5) 0%,
            rgba(0, 30, 40, 0.34) 20%,
            rgba(0, 30, 40, 0.16) 38%,
            rgba(0, 30, 40, 0.04) 54%,
            rgba(0, 30, 40, 0) 68%
          );
        }

        .page-servo-drives .sd-hero-media {
          position: absolute;
          inset: 0;
          z-index: 0;
          display: block;
        }

        .page-servo-drives .sd-hero-media img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top right;
        }

        .page-servo-drives .sd-hero-inner {
          transform: translateY(-64px);
        }

        .page-servo-drives .sd-hero > .sd-hero-proof {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          max-width: none;
          box-sizing: border-box;
          z-index: 6;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1.25rem 2rem;
          margin: 0;
          padding: 0.5rem 4vw;
          background: rgba(0, 30, 40, 0.34);
          border-top: 1px solid rgba(255, 255, 255, 0.16);
        }

        .page-servo-drives .sd-hero > .sd-hero-proof .sd-hero-origin {
          margin: 0;
          grid-column: auto;
        }
      }

      @media (min-width: 1200px) {
        .page-servo-drives .sd-hero {
          height: clamp(620px, 31.25vw, 720px);
        }
      }

      .sd-hero-inner {
        position: absolute;
        left: 96px;
        top: 72px;
        z-index: 5;
        width: 700px;
        height: 430px;
        margin: 0 !important;
      }

      .sd-hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 700px;
        height: 100%;
        margin: 0 !important;
        display: grid;
        grid-template-rows: auto auto auto auto;
        align-content: center;
        text-align: left !important;
        contain: layout;
        font-family: inherit !important;
      }

      .sd-hero-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 0.38rem;
        margin: 0 0 0.65rem;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.76rem;
        font-weight: 600;
      }

      .sd-hero-breadcrumb a {
        color: rgba(255, 255, 255, 0.58) !important;
        text-decoration: none;
      }

      .sd-hero-breadcrumb a:hover {
        color: rgba(255, 255, 255, 0.78) !important;
        text-decoration: none;
      }

      .sd-hero-breadcrumb__separator {
        opacity: 0.55;
      }

      .sd-hero-breadcrumb__current {
        color: rgba(255, 255, 255, 0.74);
      }

      .sd-hero-watermark-stroke {
        fill: none;
        stroke: #ffffff;
        stroke-width: 0.12;
      }

      .sd-hero-content h1 {
        font-size: 3rem;
        line-height: 1.08;
        font-weight: 800;
        color: #fff;
        margin: 0 0 1.4rem;
        min-height: 10rem;
        letter-spacing: 0;
        text-shadow:
          0 2px 4px rgba(0, 10, 14, 0.74),
          0 8px 18px rgba(0, 10, 14, 0.42);
      }

      .sd-hero-tagline {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.82);
        max-width: 680px;
        margin: 0 !important;
        min-height: 3.9rem;
        line-height: 1.55;
        font-weight: 400;
      }

      .sd-hero-kicker {
        margin: 0 0 1.25rem;
        color: #ff3b36;
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .sd-hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 1rem;
        margin-top: 2.6rem;
        min-height: 58px;
      }

      .sd-hero-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
        min-height: 58px;
        padding: 0.95rem 1.65rem;
        border-radius: 6px;
        color: #ffffff;
        font-family: inherit;
        font-size: 1rem;
        font-weight: 800;
        text-decoration: none;
      }

      .sd-hero-button--primary {
        background: #e30613;
        box-shadow: 0 18px 34px rgba(227, 6, 19, 0.28);
      }

      .sd-hero-button--secondary {
        border: 1px solid rgba(255, 255, 255, 0.74);
        background: rgba(255, 255, 255, 0.04);
        min-width: 255px;
      }

      .sd-hero-proof {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.1rem;
        margin-top: 2rem;
        max-width: 720px;
        text-align: left;
      }

      .sd-hero-proof > span {
        position: relative;
        display: block;
        padding-left: 1.7rem;
        color: #fafbfc;
        font-size: 0.98rem;
        font-weight: 700;
        line-height: 1.45;
      }

      .sd-hero-proof > span::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.2rem;
        width: 0.85rem;
        height: 0.85rem;
        border: 2px solid #fafbfc;
        border-radius: 50%;
      }

      .sd-hero-proof > span::after {
        content: "";
        position: absolute;
        left: 0.32rem;
        top: 0.35rem;
        width: 0.28rem;
        height: 0.5rem;
        border: solid #fafbfc;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
      }

      .sd-hero-origin {
        grid-column: 1 / -1;
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0;
        color: #fafbfc;
        font-size: 0.9rem;
        font-weight: 800;
        line-height: 1.3;
        text-transform: uppercase;
      }

      .sd-hero-flag {
        display: inline-grid;
        grid-template-columns: repeat(3, 1rem);
        height: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.65);
      }

      /* REASSURANCE BANNER (BEM) */
      .reassurance-banner {
        padding: 80px 2rem;
        background: #fafaf9;
        text-align: center;
      }

      .reassurance-banner__title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #001e28;
        margin-bottom: 50px;
        letter-spacing: -0.01em;
      }

      .reassurance-banner__grid {
        display: flex;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
      }

      .reassurance-card {
        flex: 1;
        min-width: 300px;
        background: #fff;
        padding: 3rem 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: left;
      }

      .reassurance-card:hover {
        transform: translateY(-5px);
      }

      .reassurance-card--red-top {
        border-top: 5px solid #e30613;
      }

      .reassurance-card--dark-top {
        border-top: 5px solid #001e28;
      }

      .reassurance-card__icon {
        height: 80px;
        width: auto;
        margin-bottom: 2rem;
        display: block;
        transition: transform 0.3s ease;
      }

      .reassurance-card:hover .reassurance-card__icon {
        transform: scale(1.05);
      }

      .reassurance-card__title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #001e28;
        margin-bottom: 1.2rem;
      }

      .reassurance-card__text {
        font-size: 1.05rem;
        color: #475569;
        line-height: 1.6;
        margin: 0;
      }

      @media (max-width: 768px) {
        .page-servo-drives main p,
        .page-servo-drives main a,
        .page-servo-drives main li,
        .page-servo-drives main td,
        .page-servo-drives main th {
          font-size: max(1rem, 16px) !important;
        }

        .reassurance-card {
          flex: none;
          width: 100%;
        }

        #servo-drive-architecture-guide,
        #how-to-choose-servo-drive,
        #servo-drive-faq {
          padding: 3.5rem 1rem !important;
        }

        #servo-drive-architecture-guide .bento-header,
        #how-to-choose-servo-drive .bento-header,
        #servo-drive-faq .bento-header {
          margin-bottom: 2rem !important;
          text-align: left;
        }

        #servo-drive-architecture-guide h2,
        #how-to-choose-servo-drive h2,
        #servo-drive-faq h2 {
          font-size: clamp(1.8rem, 8vw, 2.35rem);
          line-height: 1.12;
          text-align: left;
        }

        #servo-drive-architecture-guide .subtitle,
        #how-to-choose-servo-drive .subtitle,
        #servo-drive-faq .subtitle {
          font-size: 1rem;
          line-height: 1.6;
          text-align: left;
        }

        #servo-drive-architecture-guide .tech-table-wrapper {
          margin: 0;
          border: 0;
          border-radius: 0;
          overflow: visible;
        }

        #servo-drive-architecture-guide .tech-table,
        #servo-drive-architecture-guide .tech-table thead,
        #servo-drive-architecture-guide .tech-table tbody,
        #servo-drive-architecture-guide .tech-table tr,
        #servo-drive-architecture-guide .tech-table th,
        #servo-drive-architecture-guide .tech-table td {
          display: block;
          width: 100%;
        }

        #servo-drive-architecture-guide .tech-table {
          font-size: 1rem;
          min-width: 0;
          border-collapse: separate;
          border-spacing: 0;
        }

        #servo-drive-architecture-guide .tech-table thead {
          position: absolute;
          width: 1px;
          height: 1px;
          overflow: hidden;
          clip: rect(0, 0, 0, 0);
        }

        #servo-drive-architecture-guide .tech-table tr {
          background: #fff;
          border: 1px solid #e2e8f0;
          border-radius: 12px;
          margin-bottom: 1rem;
          overflow: hidden;
        }

        #servo-drive-architecture-guide .tech-table td {
          border-bottom: 1px solid #e2e8f0;
          color: #334155;
          font-size: 1rem;
          line-height: 1.5;
          padding: 0.9rem 1rem;
        }

        #servo-drive-architecture-guide .tech-table td:last-child {
          border-bottom: 0;
        }

        #servo-drive-architecture-guide .tech-table td::before {
          content: attr(data-label);
          display: block;
          color: #001e28;
          font-size: 1rem;
          font-weight: 800;
          line-height: 1.3;
          margin-bottom: 0.25rem;
        }

        #low-voltage-drives {
          padding: 3.5rem 1rem !important;
        }

        #low-voltage-drives .bento-header {
          margin-bottom: 1.75rem !important;
          text-align: left;
        }

        #low-voltage-drives .bento-header h2 {
          font-size: clamp(1.8rem, 8vw, 2.35rem);
          line-height: 1.12;
          text-align: left;
        }

        #low-voltage-drives .bento-header p,
        #low-voltage-drives .bento-card p,
        #low-voltage-drives .bento-point-card p,
        #low-voltage-drives .bento-card-body p,
        #low-voltage-drives .cta-button {
          font-size: 1rem !important;
          line-height: 1.55;
        }

        #low-voltage-drives .bento-grid-hero {
          display: grid;
          grid-template-columns: minmax(0, 1fr);
          gap: 1rem;
          width: 100%;
        }

        #low-voltage-drives .bento-grid-hero > [class*="bento-span"] {
          grid-column: 1 / -1 !important;
          min-width: 0;
          width: 100%;
          text-align: left !important;
        }

        #low-voltage-drives .bento-card,
        #low-voltage-drives .bento-point-card {
          border-radius: 12px;
          min-width: 0;
        }

        #low-voltage-drives .bento-card-header,
        #low-voltage-drives .bento-point-card {
          padding: 1.25rem !important;
          text-align: left;
        }

        #low-voltage-drives .bento-point-card h3,
        #low-voltage-drives .bento-card h3 {
          font-size: 1.05rem;
          line-height: 1.3;
        }

        #low-voltage-drives .bento-tag {
          font-size: 1rem !important;
          line-height: 1.25;
          white-space: normal;
        }

        #low-voltage-drives .bento-image-container {
          padding: 0 1rem 1rem !important;
          min-height: 160px;
          align-items: center;
        }

        #low-voltage-drives .bento-image-container img {
          max-height: 190px;
          width: 100%;
        }

        #low-voltage-drives .cta-button {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          max-width: 280px;
          min-height: 48px;
          padding: 0.85rem 1rem !important;
          white-space: normal;
        }

        #low-voltage-drives .bento-span-12 {
          margin: 2rem 0 !important;
        }

        #how-to-choose-servo-drive .bento-products-grid,
        #servo-drive-faq .bento-products-grid {
          gap: 1rem !important;
        }

        #how-to-choose-servo-drive .bento-products-grid > div,
        #servo-drive-faq .bento-products-grid > div {
          padding: 0 !important;
        }

        #how-to-choose-servo-drive .bento-card,
        #servo-drive-faq .bento-card {
          border-radius: 12px;
        }

        #how-to-choose-servo-drive .bento-card-header,
        #servo-drive-faq .bento-card-header {
          padding: 1.25rem !important;
          text-align: left;
        }

        #how-to-choose-servo-drive .bento-card h3,
        #servo-drive-faq .bento-card h3 {
          font-size: 1.05rem;
          line-height: 1.3;
        }

        #how-to-choose-servo-drive .bento-card p,
        #servo-drive-faq .bento-card p {
          font-size: 1rem;
          line-height: 1.55;
        }
      }

      @media (max-width: 480px) {
        #servo-drive-architecture-guide .tech-table {
          font-size: 1rem;
        }

      }

      .page-servo-drives .servo-subnav {
        position: sticky;
        top: var(--servo-sticky-nav-offset);
        z-index: 1200;
        background: rgba(255, 255, 255, 0.94);
        border-bottom: 1px solid #e2e8f0;
        border-top: 1px solid rgba(226, 232, 240, 0.75);
        backdrop-filter: blur(12px);
      }

      .page-servo-drives .servo-subnav__inner {
        width: 100%;
        max-width: 1360px;
        margin: 0 auto;
        padding: 0.85rem 1rem;
        display: flex;
        gap: 0.55rem;
        overflow-x: auto;
        scrollbar-width: none;
      }

      .page-servo-drives .servo-subnav__inner::-webkit-scrollbar {
        display: none;
      }

      .page-servo-drives .servo-subnav a {
        flex: 0 0 auto;
        color: #334155;
        border: 1px solid #cbd5e1;
        border-radius: 999px;
        padding: 0.55rem 0.95rem;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        transition:
          color 0.2s ease,
          border-color 0.2s ease,
          background 0.2s ease;
      }

      .page-servo-drives .servo-subnav a:hover {
        color: #e30613;
        border-color: #e30613;
        background: #fff5f5;
      }

      .page-servo-drives .servo-subnav a[href="#servo-drive-ranges"] {
        display: none;
      }

      .page-servo-drives .servo-subnav__mobile-label {
        display: none;
      }

      .page-servo-drives .servo-expertise-split {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 4rem;
        align-items: start;
      }

      .page-servo-drives .servo-expertise-kicker {
        color: #e30613;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin: 0 0 1rem;
        text-transform: uppercase;
      }

      .page-servo-drives .servo-expertise-split h2,
      .page-servo-drives #how-to-choose-servo-drive h2,
      .page-servo-drives #servo-drive-architecture-guide h2 {
        text-align: left;
      }

      .page-servo-drives .servo-expertise-split h2 {
        color: #001e28;
        font-size: clamp(2rem, 4vw, 2.5rem);
        line-height: 1;
        margin: 0;
      }

      .page-servo-drives .servo-expertise-copy {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }

      .page-servo-drives .servo-expertise-copy p {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-left: 4px solid #e30613;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
        color: #334155;
        font-size: 1.08rem;
        line-height: 1.75;
        margin: 0;
        padding: 1.4rem 1.5rem;
      }

      .page-servo-drives #how-to-choose-servo-drive .bento-header,
      .page-servo-drives #servo-drive-architecture-guide .bento-header,
      .page-servo-drives #pachp-showcase .bento-header,
      .page-servo-drives #low-voltage-drives .bento-header,
      .page-servo-drives #proven-reliability .bento-header {
        text-align: left;
      }

      .page-servo-drives .servo-faq-list,
      .page-servo-drives .servo-reassurance-grid {
        max-width: 1100px;
        margin: 0 auto;
      }

      .page-servo-drives .servo-faq-list {
        border-top: 1px solid #e2e8f0;
      }

      .page-servo-drives .servo-faq-item {
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
      }

      .page-servo-drives .servo-faq-item summary {
        color: #001e28;
        cursor: pointer;
        font-size: 1.08rem;
        font-weight: 800;
        line-height: 1.4;
        list-style: none;
        padding: 1.25rem 0;
      }

      .page-servo-drives .servo-faq-item summary h3 {
        display: inline;
        margin: 0;
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
      }

      .page-servo-drives h2 {
        margin: 0 0 1rem;
        font-size: clamp(2rem, 4vw, 2.5rem);
        line-height: 1.05;
        font-weight: 800;
        color: #001e28;
      }

      .page-servo-drives .action-section {
        padding: 2.5rem 1.5rem 4rem;
        background: #ffffff;
        display: flex;
        flex-direction: column;
      }

      .page-servo-drives #servo-drive-faq .sd-faq-layout {
        padding-bottom: 2rem;
      }

      .page-servo-drives .action-section > h2 {
        max-width: 1100px;
        margin: 0 auto 2rem;
        text-align: center;
      }

      .page-servo-drives .action-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
      }

      @media (max-width: 768px) {
        .page-servo-drives .action-grid {
          grid-template-columns: 1fr;
        }
      }

      .page-servo-drives .servo-faq-item summary::-webkit-details-marker {
        display: none;
      }

      .page-servo-drives .servo-faq-item summary::after {
        content: "+";
        float: right;
        color: #e30613;
        font-weight: 900;
        margin-left: 1rem;
      }

      .page-servo-drives .servo-faq-item[open] summary::after {
        content: "-";
      }

      .page-servo-drives .servo-faq-item p {
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
        max-width: 900px;
        padding: 0 0 1.25rem;
      }

      .page-servo-drives .servo-reassurance-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
      }

      .page-servo-drives .servo-reassurance-point {
        border-top: 3px solid #e30613;
        padding-top: 1rem;
      }

      .page-servo-drives .servo-reassurance-point h3 {
        color: #001e28;
        font-size: 1.15rem;
        line-height: 1.3;
        margin: 0 0 0.7rem;
      }

      .page-servo-drives .servo-reassurance-point p {
        color: #475569;
        font-size: 1rem;
        line-height: 1.65;
        margin: 0;
      }

      .page-servo-drives #pachp-showcase {
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
        border-top: 1px solid #cbd5e1;
      }

      .page-servo-drives #pachp-showcase .bento-card {
        border: 1px solid rgba(227, 6, 19, 0.16);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      }

      .page-servo-drives #low-voltage-drives,
      .page-servo-drives #proven-reliability {
        background: #f8fafc !important;
      }

      .page-servo-drives #low-voltage-drives .bento-card,
      .page-servo-drives #proven-reliability .bento-card {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
      }

      @media (max-width: 900px) {
        .sd-hero {
          height: auto;
          min-height: auto;
          max-height: none;
          padding: 3rem 1.25rem;
        }

        .sd-hero-inner {
          position: relative;
          left: auto;
          top: auto;
          width: 100%;
          height: auto;
          max-width: none;
          margin: 0 !important;
          display: block;
        }

        .sd-hero-content h1 {
          font-size: 3rem;
          min-height: auto;
        }

        .sd-hero-tagline,
        .sd-hero-actions {
          min-height: 0;
        }

        .sd-hero-proof {
          grid-template-columns: 1fr;
        }

        .sd-hero-actions {
          align-items: stretch;
          flex-direction: column;
        }

        .sd-hero-button {
          width: 100%;
        }

        .page-servo-drives .servo-expertise-split,
        .page-servo-drives .servo-reassurance-grid {
          grid-template-columns: 1fr;
        }

        .page-servo-drives .servo-expertise-split {
          gap: 2rem;
        }

        .page-servo-drives .servo-expertise-copy {
          grid-template-columns: 1fr;
        }

        #servo-drive-faq > div {
          grid-template-columns: 1fr !important;
          gap: 2rem !important;
        }
      }

      @media (max-width: 768px) {
        .page-servo-drives .servo-subnav {
          top: var(--servo-sticky-nav-offset);
        }

        .page-servo-drives .servo-subnav__inner {
          padding: 0.75rem 1rem;
        }

        .page-servo-drives .servo-subnav a {
          font-size: 1rem;
        }
      }

      @media (max-width: 768px) {
        .page-servo-drives {
          --servo-header-offset: 70px;
          --servo-anchor-offset: calc(var(--servo-sticky-nav-offset) + 40px);
        }

        .page-servo-drives main {
          display: flex;
          flex-direction: column;
        }

        .page-servo-drives .sd-hero {
          order: 1;
        }

        .page-servo-drives .servo-subnav {
          order: 2;
        }

        .page-servo-drives #servo-drive-ranges {
          order: 3;
        }

        .page-servo-drives #servo-drive-selection {
          order: 4;
        }
        .page-servo-drives #advanced-servo-tuning {
          order: 5;
        }

        .page-servo-drives #servo-drive-faq {
          order: 6;
        }

        .page-servo-drives .action-section {
          order: 7;
        }

        .sd-hero {
          min-height: auto;
          padding: 1.9rem 1rem 2.25rem;
          background: #001e28 !important;
        }

        .sd-hero::before {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          pointer-events: none;
          background:
            linear-gradient(
              90deg,
              rgba(0, 30, 40, 0.26) 0%,
              rgba(0, 30, 40, 0.12) 50%,
              rgba(0, 30, 40, 0) 78%
            ),
            linear-gradient(
              180deg,
              rgba(0, 30, 40, 0.5) 0%,
              rgba(0, 30, 40, 0.38) 52%,
              rgba(0, 30, 40, 0.28) 100%
            );
        }

        .sd-hero-media {
          position: absolute;
          inset: 0;
          z-index: 0;
          display: block;
        }

        .sd-hero-media img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center;
        }

        .sd-hero-watermark {
          display: none;
        }

        .sd-hero-inner {
          width: 100%;
          transform: none !important;
        }

        .sd-hero-content {
          display: grid;
          grid-template-rows: auto;
          gap: 0;
          min-height: 0;
          height: auto;
          justify-content: initial;
          align-content: start;
          contain: none;
        }

        .sd-hero-breadcrumb {
          display: none !important;
        }

        .sd-hero-content h1 {
          font-size: clamp(1.7rem, 7.2vw, 2.2rem);
          line-height: 1.06;
          margin-bottom: 0.7rem;
        }

        .sd-hero-tagline {
          font-size: 1rem;
          line-height: 1.45;
          max-width: 34rem;
        }

        .sd-hero-actions {
          display: grid;
          grid-template-columns: minmax(0, 1fr);
          gap: 0.5rem;
          margin-top: 1.15rem;
        }

        .sd-hero-button {
          min-height: 42px;
          padding: 0.62rem 0.9rem;
          width: 100%;
        }

        .sd-hero-proof {
          position: relative !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          width: auto !important;
          max-width: none !important;
          display: grid !important;
          grid-template-columns: minmax(0, 1fr);
          gap: 0.45rem !important;
          margin-top: 0.95rem !important;
          padding: 0 !important;
          background: transparent !important;
          border-top: 0 !important;
          z-index: 10 !important;
        }

        .sd-hero-proof > span {
          font-size: 0.95rem;
          line-height: 1.35;
        }

        .sd-hero-origin {
          margin-top: 0.1rem !important;
          grid-column: 1 / -1 !important;
        }

        .page-servo-drives .servo-subnav {
          position: static;
          min-height: 48px;
        }

        .page-servo-drives .servo-subnav__inner {
          display: grid;
          grid-template-columns: minmax(0, 1fr);
          gap: 0.45rem;
          min-height: 48px;
          padding: 0.45rem 0.75rem;
          overflow: visible;
        }

        .page-servo-drives .servo-subnav a {
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 34px;
          padding: 0.35rem 0.45rem;
          font-size: 0.9rem;
          text-align: center;
          white-space: normal;
        }

        .page-servo-drives .servo-subnav a {
          display: none;
        }

        .page-servo-drives .servo-subnav a[data-mobile-label] {
          display: flex;
          font-size: 0.9rem;
        }

        .page-servo-drives .servo-subnav__desktop-label {
          display: none;
        }

        .page-servo-drives .servo-subnav__mobile-label {
          display: inline;
        }

        .sd-section-selection,
        .sd-section-ranges {
          padding: 3rem 1rem;
        }

        .sd-panel {
          padding: 1.25rem;
          border-radius: 16px;
        }

        .sd-block-bordered,
        .sd-block-spaced {
          padding-bottom: 2rem;
        }

        .sd-block-spaced,
        .sd-block-top {
          padding-top: 2rem;
        }

        .sd-centered-heading {
          margin-bottom: 1.5rem;
          text-align: left;
        }

        .sd-centered-heading .sd-heading-rule {
          margin-left: 0;
        }

        .sd-choice-grid,
        .sd-card-grid,
        .page-servo-drives .servo-expertise-copy,
        .servo-range-row,
        .servo-products-grid,
        .sd-faq-layout,
        .sd-faq-proof-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .sd-choice-grid,
        .servo-range-row,
        .sd-faq-layout {
          gap: 1.5rem;
        }

        .selection-slider-frame {
          position: relative;
          width: 100%;
          overflow: visible;
        }

        .selection-swipe-hint {
          display: flex !important;
          align-items: center;
          justify-content: center;
          gap: 0.55rem;
          margin: 1.35rem 0 0.55rem;
          color: #001e28;
          font-size: 0.82rem;
          font-weight: 800;
          letter-spacing: 0.02em;
          text-transform: uppercase;
        }

        .selection-swipe-hint span {
          display: block;
          width: 0;
          height: 0;
          filter: drop-shadow(0 3px 8px rgba(15, 23, 42, 0.15));
        }

        .selection-swipe-hint span:first-child {
          border-top: 0.38rem solid transparent;
          border-bottom: 0.38rem solid transparent;
          border-right: 0.52rem solid var(--brand-red);
        }

        .selection-swipe-hint span:last-child {
          border-top: 0.38rem solid transparent;
          border-bottom: 0.38rem solid transparent;
          border-left: 0.52rem solid var(--brand-red);
        }

        .selection-table-wrapper {
          margin: 0 -1rem;
          padding: 0 1rem 0.8rem;
          max-width: none;
          overflow-x: auto !important;
          overflow-y: hidden;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
        }

        .selection-table-wrapper::-webkit-scrollbar {
          display: none;
        }

        .selection-table,
        .selection-table thead,
        .selection-table tbody,
        .selection-table tr,
        .selection-table th,
        .selection-table td {
          display: block;
        }

        .selection-table {
          width: max-content !important;
          min-width: 0 !important;
          border: 0 !important;
          border-collapse: separate;
          border-spacing: 0;
          background: transparent !important;
        }

        .selection-table thead {
          position: absolute;
          width: 1px;
          height: 1px;
          overflow: hidden;
          clip: rect(0, 0, 0, 0);
        }

        .selection-table tbody {
          display: flex !important;
          gap: 1rem;
          align-items: stretch;
          width: max-content;
        }

        .selection-table tr {
          flex: 0 0 min(76vw, 340px);
          width: min(76vw, 340px);
          min-height: 100%;
          overflow: hidden;
          border: 1px solid #e2e8f0;
          border-radius: 16px;
          background: #ffffff;
          box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
        }

        .selection-table .selection-slide-media {
          display: flex !important;
          align-items: center;
          justify-content: center;
          min-height: 138px;
          padding: 1rem 1rem 0.65rem;
          background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
          border-bottom: 1px solid #e2e8f0;
        }

        .selection-table .selection-slide-media::before {
          content: none;
        }

        .selection-table .selection-slide-media img {
          width: 100%;
          max-width: 210px;
          height: 110px;
          object-fit: contain;
        }

        .selection-table td {
          width: 100%;
          padding: 0.78rem 1rem;
          border-bottom: 1px solid #e2e8f0;
          white-space: normal;
        }

        .selection-table td[data-label="Machine requirement"] {
          background: #f8fafc;
          color: #001e28;
          font-weight: 800;
        }

        .selection-table td[data-label="Recommended range"] {
          color: var(--brand-red) !important;
          font-size: 1.08rem !important;
          font-weight: 900;
        }

        .selection-table tbody tr:last-child td {
          border-bottom: 1px solid #e2e8f0;
        }

        .selection-table td:last-child {
          border-bottom: 0;
        }

        .selection-table tbody tr:last-child td:last-child {
          border-bottom: 0;
        }

        .selection-table td::before {
          content: attr(data-label);
          display: block;
          margin-bottom: 0.18rem;
          color: #001e28;
          font-size: 0.82rem;
          font-weight: 800;
          line-height: 1.25;
        }

        .selection-table .selection-cta-row {
          flex-basis: min(76vw, 340px);
          order: 4;
        }

        .selection-table tbody tr:nth-child(1) {
          order: 1;
        }

        .selection-table tbody tr:nth-child(2) {
          order: 2;
        }

        .selection-table tbody tr:nth-child(3) {
          order: 3;
        }

        .selection-table tbody tr:nth-child(4) {
          order: 5;
        }

        .selection-table tbody tr:nth-child(5) {
          order: 6;
        }

        .selection-table tbody tr:nth-child(6) {
          order: 7;
        }

        .selection-table .selection-cta-row td {
          height: 100%;
          padding: 0;
          border-bottom: 0;
        }

        .selection-table .selection-cta-row td::before {
          content: none;
        }

        .selection-cta {
          min-height: 100%;
          flex-direction: column;
          align-items: flex-start;
          justify-content: space-between;
          padding: 1.1rem;
        }

        .selection-cta__content {
          gap: 1rem;
          font-size: 1.6rem;
          font-weight: 800;
          text-align: center;
        }

        .selection-cta__text {
          font-size: 1.2rem;
          font-weight: 500;
          text-align: center;
        }

        .selection-cta__button {
          width: 100%;
        }

        .servo-range-row {
          gap: 1.25rem;
          margin-bottom: 1.25rem;
          padding: 1.25rem;
          border-radius: 16px;
        }

        .servo-range-intro {
          align-self: auto;
        }

        .servo-products-grid {
          gap: 1rem;
        }

        .servo-product-card {
          border-radius: 14px;
        }

        .servo-fieldbus-logos {
          gap: 0.4rem;
        }

        .servo-fieldbus-logos img {
          max-width: 84px;
        }

        .sd-faq-layout {
          padding: 2.5rem 1rem;
        }

        .sd-faq-title {
          margin-bottom: 1rem;
        }

        .sd-faq-image-box {
          max-width: 280px;
          min-height: 0;
          aspect-ratio: 16 / 10;
          margin: 0 auto 1.5rem;
        }

        .page-servo-drives h2,
        .page-servo-drives .sd-faq-title,
        .page-servo-drives .bento-header h2,
        .page-servo-drives .action-section > h2 {
          color: #001e28;
          font-size: clamp(1.45rem, 6.2vw, 2rem);
          line-height: 1.12;
          letter-spacing: 0;
        }

        .page-servo-drives .servo-range-title,
        .page-servo-drives .sd-choice-grid h3 {
          color: #001e28;
          font-size: clamp(1.25rem, 5vw, 1.65rem);
          line-height: 1.16;
          letter-spacing: 0;
        }

        .page-servo-drives .sd-card-grid .bento-card h3,
        .page-servo-drives .servo-faq-item summary h3,
        .page-servo-drives .downloads-block h3,
        .page-servo-drives .cta-block h3 {
          color: #001e28;
          font-size: clamp(1.05rem, 4vw, 1.2rem);
          line-height: 1.28;
          letter-spacing: 0;
        }

        .page-servo-drives .sd-card-grid .sd-dark-card h3,
        .page-servo-drives .sd-card-grid .sd-dark-card .sd-on-dark {
          color: #ffffff;
        }

        .page-servo-drives .servo-product-card h4 {
          color: #001e28;
          font-size: clamp(1.12rem, 4.2vw, 1.28rem);
          line-height: 1.22;
          margin: 1rem 0 0.75rem;
          letter-spacing: 0;
        }

        .page-servo-drives .servo-faq-reassurance-title {
          color: #001e28;
          font-size: clamp(1rem, 3.8vw, 1.15rem);
          line-height: 1.25;
          letter-spacing: 0;
        }

        .page-servo-drives .servo-muted-copy,
        .page-servo-drives .servo-range-lead,
        .page-servo-drives .servo-feature-list,
        .page-servo-drives .selection-table td,
        .page-servo-drives .sd-faq-intro,
        .page-servo-drives .servo-faq-item p {
          color: #334155;
        }

        .page-servo-drives .sd-on-dark-muted {
          color: rgba(255, 255, 255, 0.86);
        }
      }

      @media (max-width: 480px) {
        .sd-hero {
          min-height: auto;
          padding: 1.55rem 1rem 2rem;
        }

        .sd-hero-content {
          min-height: 0;
        }

        .sd-hero-actions {
          margin-top: 1rem;
        }

        .sd-panel {
          padding: 1rem;
        }

        .servo-product-image {
          height: 150px !important;
        }

        .sd-faq-image-box {
          display: none;
        }

      .sd-hero-flag {

        grid-template-columns: repeat(3, 0.5rem);
        height: 2vh;

      }

      }

/* ==========================================================================
   Elementor isolation - Servo Drives page
   ========================================================================== */

.page-servo-drives .sd-page a {
  box-shadow: none;
}

.page-servo-drives .sd-page :where(img, picture, video, canvas, svg) {
  border: 0 !important;
}

/* Hero CTA links */
.page-servo-drives .sd-page a.sd-hero-button,
.page-servo-drives .sd-page a.sd-hero-button:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.page-servo-drives .sd-page a.sd-hero-button:hover,
.page-servo-drives .sd-page a.sd-hero-button:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Primary hero button */
.page-servo-drives .sd-page a.sd-hero-button--primary,
.page-servo-drives .sd-page a.sd-hero-button--primary:visited {
  background: #e30613;
  border-color: #e30613;
  color: #ffffff !important;
}

/* Secondary hero button */
.page-servo-drives .sd-page a.sd-hero-button--secondary,
.page-servo-drives .sd-page a.sd-hero-button--secondary:visited {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.74);
  color: #ffffff !important;
}

/* Product / text links */
.page-servo-drives .sd-page a.product-link,
.page-servo-drives .sd-page a.product-link:visited,
.page-servo-drives .sd-page a.servo-red-link,
.page-servo-drives .sd-page a.servo-red-link:visited,
.page-servo-drives .sd-page a.text-link,
.page-servo-drives .sd-page a.text-link:visited {
  color: var(--brand-red, #e30613) !important;
  text-decoration: none !important;
}

.page-servo-drives .sd-page a.product-link:hover,
.page-servo-drives .sd-page a.servo-red-link:hover,
.page-servo-drives .sd-page a.text-link:hover {
  color: var(--brand-red, #e30613) !important;
  text-decoration: underline !important;
}

/* Dark card link */
.page-servo-drives .sd-page a.sd-link-on-dark,
.page-servo-drives .sd-page a.sd-link-on-dark:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.page-servo-drives .sd-page a.sd-link-on-dark:hover,
.page-servo-drives .sd-page a.sd-link-on-dark:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Final CTA button */
.page-servo-drives .sd-page a.btn-primary,
.page-servo-drives .sd-page a.btn-primary:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}


.sd-advanced-tuning-section {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.sd-advanced-tuning-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 107, 142, 0.22), transparent 34%),
    linear-gradient(135deg, #001e28 0%, #003847 100%);
  box-shadow: 0 22px 54px rgba(0, 30, 40, 0.18);
  overflow: hidden;
}

.sd-advanced-tuning-content {
  min-width: 0;
}

.sd-advanced-tuning-card .servo-eyebrow {
  color: #ff4a4a;
}

.sd-advanced-tuning-card h2 {
  max-width: 720px;
  margin: 0 0 1rem;
  color: #ffffff !important;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.sd-advanced-tuning-card p {
  max-width: 720px;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.sd-advanced-tuning-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.78rem 1rem;
  border-radius: 10px;
  background: #e30613;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none !important;
}

.sd-advanced-tuning-link:hover {
  background: #c90010;
  color: #ffffff !important;
}

.sd-advanced-tuning-proof {
  display: grid;
  gap: 0.85rem;
}

.sd-advanced-tuning-proof__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.sd-advanced-tuning-proof__item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.18);
  color: #ff4a4a;
  font-size: 0.78rem;
  font-weight: 900;
}

.sd-advanced-tuning-proof__item span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .sd-advanced-tuning-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .sd-advanced-tuning-section {
    padding: 2rem 0.75rem;
  }

  .sd-advanced-tuning-card {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .sd-advanced-tuning-proof__item {
    padding: 0.7rem;
  }
}

