:root {
      --dp-blue: #0F3A68;
      --dp-blue-soft: #1F4F7A;
      --dp-green: #63B246;
      --dp-green-dark: #4C8F34;
      --dp-green-bright: #8BE85A;
      --dp-text: #1E293B;
      --dp-muted: #64748B;
      --dp-bg: #F8FAFC;
      --dp-border: #CBD5E1;
      --dp-shadow: 0 12px 26px rgba(11, 31, 51, 0.12);
      --dp-shadow-soft: 0 6px 16px rgba(11, 31, 51, 0.08);
      --hero-inline-padding: clamp(40px, 5vw, 64px);
      --footer-inline-padding: clamp(32px, 4.5vw, 56px);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      min-height: 100%;
    }

    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--dp-text);
      background: var(--dp-bg);
      line-height: 1.55;
    }

    main {
      flex: 1 0 auto;
    }

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

    button {
      font-family: inherit;
    }

    /* ===== Header ===== */

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: transparent;
      color: #fff;
      padding: 16px 36px;
      transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      box-shadow: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    }

    .site-header.scrolled {
      background: var(--dp-blue);
      color: #fff;
      box-shadow: 0 10px 30px rgba(4, 14, 24, 0.35);
      border-bottom-color: transparent;
    }

    .nav {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 14px 18px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: none;
      opacity: 1;
    }

    .site-header.scrolled .logo img {
      filter: none;
      opacity: 1;
    }

    .menu-toggle {
      display: none;
      margin-left: auto;
      border: 1px solid rgba(255, 255, 255, 0.58);
      background: transparent;
      color: #fff;
      padding: 7px 10px;
      border-radius: 10px;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .menu-toggle span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .menu-icon {
      width: 14px;
      height: 10px;
      border-top: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      position: relative;
    }

    .menu-icon::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 3px;
      border-top: 2px solid currentColor;
    }

    .primary-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1;
      gap: 24px;
      position: relative;
    }

    .nav-items {
      display: flex;
      gap: 20px;
      align-items: center;
      font-size: 14px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-link,
    .nav-trigger {
      color: #fff;
      padding: 6px 4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: none;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      position: relative;
    }

    .site-header.scrolled .nav-link,
    .site-header.scrolled .nav-trigger,
    .site-header.scrolled .menu-toggle {
      color: #fff;
    }

    .nav-link::before,
    .nav-trigger::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: var(--dp-green);
      opacity: 0;
      transform: scaleX(0.6);
      transform-origin: center;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-link:hover::before,
    .nav-link:focus-visible::before,
    .nav-trigger:hover::before,
    .nav-trigger:focus-visible::before,
    .nav-link.active::before,
    .nav-trigger.active::before {
      opacity: 1;
      transform: scaleX(1);
    }

    /* ===== Product Hero (Standard) ===== */

    .product-hero {
      background: linear-gradient(180deg, var(--dp-blue), var(--dp-blue-soft));
      color: #fff;
      padding: 128px 40px 72px;
      position: relative;
      overflow: hidden;
    }

    .products-template-page .product-hero {
      background-image:
        linear-gradient(135deg, rgba(11, 31, 51, 0.36), rgba(11, 31, 51, 0.2)),
        url("../images/products-hero.png?v=20260310b");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .products-template-page .product-hero::after {
      background: linear-gradient(135deg, rgba(11, 31, 51, 0.62), rgba(11, 31, 51, 0.5));
    }

    .dental-equipment-page .product-hero,
    .oral-care-equipment-page .product-hero {
      padding: 112px 40px 56px;
    }

    .dental-equipment-page .product-hero {
      background-image:
        linear-gradient(135deg, rgba(8, 24, 40, 0.82), rgba(15, 58, 104, 0.58)),
        url("../images/dental-office.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .dental-equipment-page .product-hero::after {
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(120deg, rgba(6, 18, 30, 0.44), transparent 58%);
    }

    .oral-care-equipment-page .product-hero {
      background-image:
        linear-gradient(135deg, rgba(8, 24, 40, 0.82), rgba(15, 58, 104, 0.58)),
        url("../images/dentistry-small.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .oral-care-equipment-page .product-hero::after {
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(120deg, rgba(6, 18, 30, 0.44), transparent 58%);
    }

    .medical-imaging-equipment-page .product-hero {
      background-image:
        linear-gradient(135deg, rgba(8, 24, 40, 0.82), rgba(15, 58, 104, 0.58)),
        url("../images/applications_images/medical-imaging-equipment/medicalimagingequipment.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .medical-imaging-equipment-page .product-hero::after {
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(120deg, rgba(6, 18, 30, 0.44), transparent 58%);
    }

    .applications-page .product-hero {
      background-image:
        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.62)),
        url("../images/workshop-dpc.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .applications-page .product-hero::after {
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.07), transparent 44%),
        linear-gradient(120deg, rgba(5, 16, 27, 0.46), transparent 58%);
    }

    .product-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(135deg, rgba(11, 31, 51, 0.45), transparent 55%);
      pointer-events: none;
    }

    .product-hero .section-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: 32px;
      align-items: start;
    }

    .breadcrumb {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(199, 214, 229, 0.8);
      margin-bottom: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .breadcrumb a {
      color: inherit;
      text-decoration: none;
      transition: color 0.18s ease;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .product-hero h1 {
      margin: 0 0 16px;
      font-size: 40px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .product-hero p {
      margin: 0 0 22px;
      font-size: 17px;
      color: #C7D6E5;
      max-width: 560px;
    }

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

    /* ===== Product Detail Hero (HDM120 Template) ===== */

    .product-detail-hero {
      position: relative;
      overflow: hidden;
      padding: 132px 40px 72px;
      color: #fff;
      background: linear-gradient(145deg, #0c2a47 0%, #123a5f 50%, #1b4b74 100%);
    }

    .product-detail-hero::before,
    .product-detail-hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
    }

    .product-detail-hero::before {
      width: 460px;
      height: 460px;
      right: -140px;
      top: -140px;
      background: radial-gradient(circle at 30% 30%, rgba(124, 186, 75, 0.45), rgba(124, 186, 75, 0));
    }

    .product-detail-hero::after {
      width: 520px;
      height: 520px;
      left: -180px;
      bottom: -220px;
      background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    }

    .product-detail-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 34px;
      align-items: center;
    }

    .product-detail-media-shell {
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 22px;
      padding: 16px;
      max-width: 360px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
        rgba(9, 31, 53, 0.55);
      box-shadow: 0 18px 36px rgba(5, 16, 27, 0.35);
      backdrop-filter: blur(3px);
    }

    .product-detail-media-shell img {
      width: 100%;
      max-width: 300px;
      max-height: 300px;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
    }

    .product-detail-gallery-thumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
      max-width: 360px;
    }

    .product-detail-gallery-thumb {
      width: 62px;
      height: 56px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
      padding: 6px;
      background: rgba(255, 255, 255, 0.12);
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }

    .product-detail-gallery-thumb:hover,
    .product-detail-gallery-thumb:focus-visible,
    .product-detail-gallery-thumb.active {
      border-color: var(--dp-green);
      background: rgba(255, 255, 255, 0.24);
      transform: translateY(-1px);
      outline: none;
    }

    .product-detail-gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      filter: none;
    }

    .product-detail-copy {
      max-width: 620px;
    }

    .product-detail-kicker {
      margin: 0 0 10px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(199, 214, 229, 0.9);
      font-weight: 700;
    }

    .product-detail-copy h1 {
      margin: 0 0 8px;
      font-size: clamp(34px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .product-detail-subtitle {
      margin: 0 0 16px;
      font-size: clamp(18px, 2vw, 20px);
      color: #d8e5f1;
      font-weight: 500;
    }

    .product-detail-copy p {
      margin: 0 0 24px;
      color: #c7d6e5;
      max-width: 58ch;
    }

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

    .product-detail-copy .btn-secondary {
      background: #fff;
      color: var(--dp-blue);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .product-detail-copy .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.88);
    }

    .product-detail-tabs {
      padding: 44px 0 72px;
    }

    .product-detail-tabs-card {
      background: #fff;
      border: 1px solid var(--dp-border);
      border-radius: 16px;
      box-shadow: var(--dp-shadow-soft);
      overflow: hidden;
    }

    .product-detail-tabs-nav {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--dp-border);
      background: #f4f7fb;
    }

    .product-detail-tab {
      border: 0;
      border-right: 1px solid var(--dp-border);
      background: transparent;
      color: var(--dp-blue);
      padding: 14px 18px;
      font-weight: 600;
      cursor: pointer;
    }

    .product-detail-tab:last-child {
      border-right: 0;
    }

    .product-detail-tab.active {
      background: #fff;
      color: var(--dp-green-dark);
    }

    .product-detail-panels {
      padding: 16px 18px 18px;
    }

    .product-detail-panel[hidden] {
      display: none;
    }

    .product-detail-table {
      width: 100%;
      border-collapse: collapse;
    }

    .product-detail-table th,
    .product-detail-table td {
      text-align: left;
      padding: 10px 8px;
      border-bottom: 1px solid var(--dp-border);
      vertical-align: top;
      font-size: 14px;
    }

    .product-detail-table th {
      width: 34%;
      color: var(--dp-blue);
      font-weight: 600;
      background: #fbfdff;
    }

    .product-detail-panel#panel-resources a.resource-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .product-detail-panel#panel-resources .resource-arrow {
      color: var(--dp-green-dark);
      font-weight: 700;
      line-height: 1;
    }

    .product-detail-panel#panel-resources a.resource-link:hover,
    .product-detail-panel#panel-resources a.resource-link:focus-visible {
      text-decoration: underline;
    }

    .product-selector-table th {
      width: auto;
      white-space: nowrap;
    }

    .product-selector-table td:last-child,
    .product-selector-table th:last-child {
      text-align: right;
      white-space: nowrap;
    }

    .selector-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--dp-green-dark);
      font-weight: 600;
      text-decoration: none;
    }

    .selector-link:hover,
    .selector-link:focus-visible {
      text-decoration: underline;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .product-card {
      background: #fff;
      border: 1px solid var(--dp-border);
      border-radius: 12px;
      padding: 16px;
      display: grid;
      gap: 12px;
      box-shadow: var(--dp-shadow-soft);
    }

    .product-image {
      border-radius: 10px;
      border: 1px solid rgba(15, 58, 104, 0.15);
      background: linear-gradient(135deg, #F0F4F8 0%, #E4ECF5 100%);
      display: grid;
      place-items: center;
      min-height: 140px;
    }

    .product-image img {
      max-width: 100%;
      height: 140px;
      object-fit: contain;
    }

    .product-image span {
      font-size: 12px;
      color: var(--dp-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .product-card h3 {
      margin: 0;
      font-size: 16px;
      color: var(--dp-blue);
    }

    .product-meta {
      margin: 0;
      font-size: 12px;
      color: var(--dp-muted);
    }

    .product-specs {
      margin: 0;
      font-size: 13px;
      color: var(--dp-text);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .product-link {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      color: var(--dp-blue);
    }

    .nav-trigger::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1.5px solid var(--dp-green);
      border-bottom: 1.5px solid var(--dp-green);
      transform: rotate(45deg);
      margin-top: -2px;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .has-dropdown:hover > .nav-trigger::after,
    .has-dropdown:focus-within > .nav-trigger::after,
    .has-dropdown.open > .nav-trigger::after,
    .nav-trigger:hover::after,
    .nav-trigger:focus-visible::after {
      transform: rotate(225deg);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
    }

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

    .site-search {
      position: relative;
      display: flex;
      align-items: center;
      width: clamp(160px, 15vw, 240px);
    }

    .site-search-input {
      width: 100%;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      padding: 0 38px 0 12px;
      font: inherit;
      font-size: 13px;
      outline: none;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .site-search-input::placeholder {
      color: rgba(255, 255, 255, 0.76);
    }

    .site-search-input:focus {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(139, 232, 90, 0.82);
      box-shadow: 0 0 0 3px rgba(99, 178, 70, 0.2);
    }

    .site-search-submit {
      position: absolute;
      right: 4px;
      top: 50%;
      width: 28px;
      height: 28px;
      transform: translateY(-50%);
      display: inline-grid;
      place-items: center;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: #fff;
      cursor: pointer;
    }

    .site-search-submit span {
      width: 10px;
      height: 10px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: inline-block;
      position: relative;
    }

    .site-search-submit span::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 2px;
      background: currentColor;
      bottom: -4px;
      right: -5px;
      transform: rotate(45deg);
    }

    .site-search-results {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: min(420px, calc(100vw - 48px));
      max-height: min(420px, calc(100vh - 140px));
      overflow: auto;
      display: none;
      padding: 8px;
      background: #fff;
      border: 1px solid var(--dp-border);
      border-radius: 12px;
      box-shadow: 0 18px 40px rgba(4, 14, 24, 0.2);
      color: var(--dp-text);
      z-index: 70;
    }

    .site-search-results.open {
      display: grid;
      gap: 4px;
    }

    .site-search-result {
      display: grid;
      gap: 3px;
      padding: 10px 11px;
      border-radius: 8px;
      text-decoration: none;
      color: inherit;
    }

    .site-search-result:hover,
    .site-search-result:focus-visible {
      background: #f3f7fb;
      outline: none;
    }

    .site-search-result strong {
      color: var(--dp-blue);
      font-size: 13px;
      line-height: 1.25;
    }

    .site-search-result span {
      color: var(--dp-muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .site-search-empty {
      padding: 10px 11px;
      color: var(--dp-muted);
      font-size: 12px;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 10px;
      background: var(--dp-green);
      border: 1px solid var(--dp-green);
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      line-height: 1;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .contact-link:hover,
    .contact-link:focus-visible {
      background: #2FA35F;
      border-color: #2FA35F;
      transform: translateY(-1px);
    }

    .has-dropdown {
      position: static;
    }

    .dropdown {
      position: absolute;
      top: calc(100% - 1px);
      left: 0;
      right: 0;
      background: #fff;
      color: var(--dp-text);
      padding: 28px 36px;
      border-radius: 0 0 8px 8px;
      border: 1px solid var(--dp-border);
      border-top: 1px solid var(--dp-border);
      box-shadow: 0 10px 18px rgba(11, 31, 51, 0.08);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .dropdown.mega {
      width: 100%;
    }

    .dropdown.mega::after {
      content: "";
      position: absolute;
      right: 14px;
      bottom: 12px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at bottom right, rgba(124, 186, 75, 0.3), rgba(124, 186, 75, 0) 70%);
      pointer-events: none;
    }

    .dropdown-inner {
      display: grid;
      gap: 20px;
    }

    .dropdown-inner.products-menu {
      grid-template-columns: minmax(200px, 240px) 1fr;
      gap: 28px;
      max-width: 1180px;
    }

    .dropdown-inner.three-col {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }

    .dropdown-inner.company-menu {
      grid-template-columns: minmax(220px, 280px);
      gap: 16px;
      max-width: 280px;
    }

    .dropdown-inner.resources-menu {
      grid-template-columns: minmax(220px, 280px);
      gap: 16px;
      max-width: 280px;
    }

    .all-applications-link {
      grid-column: 1 / -1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--dp-green);
      text-decoration: none;
      padding: 6px 0 12px;
      border-bottom: 1px solid var(--dp-border);
    }

    .all-applications-link::after {
      content: "\2192";
      font-size: 0.95em;
      opacity: 0.8;
    }

    #menu-applications .market-primary-link {
      display: inline-block;
      font-weight: 700;
      color: var(--dp-blue);
      margin-bottom: 10px;
    }

    .all-products-link {
      grid-column: 1 / -1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--dp-green);
      text-decoration: none;
      padding: 6px 0 12px;
      border-bottom: 1px solid var(--dp-border);
    }

    .all-products-link::after {
      content: "\2192";
      font-size: 0.95em;
      opacity: 0.8;
    }

    #menu-products .dropdown-inner.three-col {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 960px;
    }

    #menu-company {
      left: auto;
      right: auto;
      width: min(340px, calc(100vw - 48px));
      padding: 24px 28px;
    }

    #menu-company .dropdown-inner.three-col,
    #menu-company .dropdown-inner.company-menu {
      grid-template-columns: minmax(220px, 280px);
      gap: 16px;
      max-width: 280px;
    }

    #menu-resources {
      left: auto;
      right: auto;
      width: min(860px, calc(100vw - 48px));
      padding: 24px 28px;
    }

    #menu-resources .dropdown-inner.resources-menu {
      grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
      max-width: 800px;
    }

    #menu-resources .products-branch-panel {
      grid-template-columns: minmax(0, 1fr);
    }

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

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

    .resource-blog-card {
      display: grid;
      grid-template-rows: 78px auto auto;
      gap: 8px;
      min-width: 0;
      overflow: hidden;
      padding: 8px;
      color: var(--dp-blue);
      text-decoration: none;
      background: #f6f9fc;
      border: 1px solid var(--dp-border);
      border-radius: 8px;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .resource-blog-card:hover,
    .resource-blog-card:focus-visible {
      border-color: rgba(124, 186, 75, 0.72);
      box-shadow: 0 10px 22px rgba(11, 31, 51, 0.12);
      transform: translateY(-1px);
    }

    .resource-blog-card img {
      width: 100%;
      height: 78px;
      object-fit: cover;
      border-radius: 6px;
      background: #dbe5ee;
    }

    .resource-blog-card span {
      display: block;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
      overflow-wrap: anywhere;
    }

    .resource-blog-card em {
      font-style: normal;
      font-size: 11px;
      font-weight: 700;
      color: var(--dp-green);
    }

    .resource-doc-card {
      display: grid;
      align-content: space-between;
      gap: 12px;
      min-height: 118px;
      min-width: 0;
      padding: 14px;
      color: var(--dp-blue);
      text-decoration: none;
      background:
        linear-gradient(135deg, rgba(124, 186, 75, 0.14), rgba(246, 249, 252, 0) 58%),
        #f6f9fc;
      border: 1px solid var(--dp-border);
      border-radius: 8px;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .resource-doc-card:hover,
    .resource-doc-card:focus-visible {
      border-color: rgba(124, 186, 75, 0.72);
      box-shadow: 0 10px 22px rgba(11, 31, 51, 0.12);
      transform: translateY(-1px);
    }

    .resource-doc-card span {
      display: block;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
    }

    .resource-doc-card em {
      font-style: normal;
      font-size: 11px;
      font-weight: 700;
      color: var(--dp-green);
    }

    #menu-markets .dropdown-inner.four-col {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 1180px;
    }

    .mega-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .products-branches {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding-right: 20px;
      border-right: 1px solid var(--dp-border);
    }

    .company-menu .products-branches,
    .resources-menu .products-branches {
      padding-right: 0;
      border-right: 0;
    }

    #menu-resources .resources-menu .products-branches {
      padding-right: 20px;
      border-right: 1px solid var(--dp-border);
    }

    .products-branch {
      background: none;
      border: 0;
      padding: 6px 0;
      border-radius: 8px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: inherit;
      font: inherit;
      cursor: pointer;
      transition: background-color 0.18s ease, color 0.18s ease, padding 0.18s ease;
    }

    .products-branch::after {
      content: "\2192";
      font-size: 0.9em;
      opacity: 0.7;
    }

    .products-branch:hover,
    .products-branch:focus-visible {
      background: rgba(11, 31, 51, 0.06);
      padding-left: 10px;
      padding-right: 10px;
    }

    .products-branch:hover::after,
    .products-branch:focus-visible::after {
      opacity: 1;
    }

    .products-branch.active {
      background: var(--dp-green);
      color: #fff;
      font-weight: 600;
      padding-left: 10px;
      padding-right: 10px;
    }

    .products-branch.active::after {
      opacity: 1;
      color: #fff;
    }

    .products-branch-panels {
      display: grid;
    }

    .products-branch-panel {
      display: none;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 28px;
    }

    .products-branch-panel.active {
      display: grid;
    }

    .products-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .products-group h4 {
      color: var(--dp-green);
    }

    .mega-icon {
      width: 36px;
      height: 36px;
      position: relative;
      border: 1px solid rgba(15, 36, 58, 0.3);
      background: #F4F7FB;
      border-radius: 6px;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .mega-icon::before,
    .mega-icon::after {
      content: "";
      position: absolute;
      background: rgba(11, 31, 51, 0.45);
      transition: background 0.2s ease;
    }

    .icon-circuit::before {
      width: 70%;
      height: 2px;
      left: 15%;
      top: 50%;
      transform: translateY(-50%);
    }

    .icon-circuit::after {
      width: 6px;
      height: 6px;
      right: 8px;
      top: 8px;
      border: 1px solid rgba(11, 31, 51, 0.45);
      border-radius: 50%;
      background: transparent;
    }

    .icon-blocks::before {
      width: 14px;
      height: 14px;
      left: 8px;
      top: 8px;
    }

    .icon-blocks::after {
      width: 10px;
      height: 10px;
      right: 6px;
      bottom: 6px;
    }

    .icon-grid::before {
      width: 70%;
      height: 70%;
      left: 15%;
      top: 15%;
      border: 1px solid rgba(11, 31, 51, 0.45);
      background: transparent;
    }

    .icon-grid::after {
      width: 2px;
      height: 70%;
      left: 50%;
      top: 15%;
      transform: translateX(-50%);
    }

    .icon-stack::before {
      width: 70%;
      height: 2px;
      left: 15%;
      top: 12px;
    }

    .icon-stack::after {
      width: 70%;
      height: 2px;
      left: 15%;
      bottom: 12px;
    }

    .icon-doc::before {
      width: 65%;
      height: 75%;
      left: 17%;
      top: 12%;
      border: 1px solid rgba(11, 31, 51, 0.45);
      background: transparent;
    }

    .icon-doc::after {
      width: 45%;
      height: 2px;
      left: 27%;
      top: 45%;
    }

    .icon-lines::before {
      width: 70%;
      height: 2px;
      left: 15%;
      top: 12px;
    }

    .icon-lines::after {
      width: 70%;
      height: 2px;
      left: 15%;
      top: 22px;
    }

    .mega-item:hover .mega-icon,
    .mega-item:focus-within .mega-icon {
      border-color: rgba(56, 193, 114, 0.6);
      background: rgba(56, 193, 114, 0.12);
    }

    .mega-item:hover .mega-icon::before,
    .mega-item:hover .mega-icon::after,
    .mega-item:focus-within .mega-icon::before,
    .mega-item:focus-within .mega-icon::after {
      background: rgba(56, 193, 114, 0.8);
    }

    .dropdown h4 {
      margin: 0;
      font-size: 14px;
      color: var(--dp-blue);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .dropdown p {
      margin: 0;
      font-size: 13px;
      color: var(--dp-muted);
    }

    .dropdown a {
      font-size: 13px;
      color: var(--dp-blue);
      font-weight: 500;
      opacity: 0.8;
    }

    .dropdown a:hover,
    .dropdown a:focus {
      opacity: 1;
    }

    .dropdown .list {
      display: grid;
      gap: 8px;
      font-size: 13px;
      color: var(--dp-muted);
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .dropdown .list a {
      color: var(--dp-blue);
      font-weight: 500;
    }

    .has-dropdown.open > .dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    @media (min-width: 901px) {
    .has-dropdown:hover > .dropdown,
    .has-dropdown:focus-within > .dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
  }

  /* ===== Dot Nav ===== */

  .dot-nav {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 999px;
    background: rgba(8, 20, 33, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    z-index: 40;
  }

  .dot-link {
    position: relative;
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .dot-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .dot-link.active::before,
  .dot-link:focus-visible::before,
  .dot-link:hover::before {
    background: var(--dp-green);
    border-color: var(--dp-green);
    transform: scale(1.05);
  }

  .dot-label {
    position: absolute;
    right: 22px;
    white-space: nowrap;
    background: rgba(15, 58, 104, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .dot-link:hover .dot-label,
  .dot-link:focus-visible .dot-label {
    opacity: 1;
    transform: translateX(0);
  }

  .reduced-motion .dot-link::before,
  .reduced-motion .dot-label {
    transition: none;
  }

  @media (max-width: 900px) {
    .dot-nav {
      display: none;
    }
  }

    /* ===== Hero ===== */

    .hero {
      background: linear-gradient(180deg, var(--dp-blue), var(--dp-blue-soft));
      color: #fff;
      padding: 208px 0 96px;
      position: relative;
      overflow: hidden;
      min-height: 760px;
    }


    /* ===== Hero Slideshow ===== */

    .hero-slide {
      position: absolute;
      inset: 0;
      display: grid;
      align-items: stretch;
      padding: 0;
      border-radius: 0;
      overflow: hidden;
      background-color: #0f3a68;
      background-size: auto, auto, cover;
      background-position: center, center, center;
      background-repeat: no-repeat, no-repeat, no-repeat;
      opacity: 0;
      transform: scale(1.02);
      pointer-events: none;
      transition: opacity 0.65s ease, transform 1.4s ease;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .hero-video.is-ready {
      opacity: 1;
    }

    .hero-slide-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      min-height: 100%;
      padding-inline: var(--hero-inline-padding);
      display: flex;
      align-items: flex-end;
      animation: heroContentIntro 0.85s ease 0.12s both;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(90deg, rgba(7, 19, 31, 0.54) 0%, rgba(7, 19, 31, 0.3) 48%, rgba(7, 19, 31, 0.1) 100%),
        linear-gradient(180deg, rgba(7, 19, 31, 0.06) 0%, rgba(7, 19, 31, 0.24) 100%);
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .hero-slide[data-href] {
      cursor: pointer;
    }

    .hero-controls {
      position: absolute;
      left: 50%;
      bottom: 40px;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }

    .hero-arrow {
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: transparent;
      color: #fff;
      padding: 6px 10px;
      font-size: 12px;
      border-radius: 8px;
      cursor: pointer;
    }

    .hero-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .hero-dot.active {
      background: var(--dp-green);
      border-color: var(--dp-green);
    }

    .reduced-motion .hero-slide {
      transition: none;
      transform: none;
    }

    .reduced-motion .hero-slide-inner {
      animation: none;
    }

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

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 760px;
      padding: 48px 0 132px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dp-green-bright);
    }

    .hero-eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: var(--dp-green-bright);
    }

    .hero h1 {
      max-width: 760px;
      font-size: 44px;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .hero h1 .accent {
      color: var(--dp-green-bright);
    }

    .hero p {
      max-width: 620px;
      font-size: 18px;
      color: #C7D6E5;
      margin-bottom: 28px;
    }

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

    .btn {
      padding: 10px 18px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary {
      background: var(--dp-green);
      color: #fff;
      border-color: var(--dp-green);
    }

    .btn-primary:hover {
      background: #2FA35F;
      border-color: #2FA35F;
    }

    .btn-primary.btn-with-icon {
      gap: 12px;
    }

    .btn-primary.btn-with-icon .btn-icon {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(8, 37, 24, 0.14);
      border: 1px solid rgba(8, 37, 24, 0.22);
      font-size: 13px;
      line-height: 1;
      flex: 0 0 24px;
    }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.6);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    /* ===== News Ticker ===== */

    .news-ticker {
      background:
        radial-gradient(circle at 12% 50%, rgba(99, 178, 70, 0.24), transparent 18%),
        radial-gradient(circle at 82% 12%, rgba(134, 208, 255, 0.2), transparent 24%),
        linear-gradient(90deg, #082744 0%, #0f3a68 38%, #16526a 72%, #11495b 100%);
      border-top: 1px solid rgba(134, 208, 255, 0.24);
      border-bottom: 1px solid rgba(99, 178, 70, 0.34);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03),
        0 10px 24px rgba(4, 18, 31, 0.18);
      padding: 16px 40px;
    }

    body.scroll-animations-ready .catalog-shortcut-section,
    body.scroll-animations-ready .focus-areas,
    body.scroll-animations-ready .precision-feature,
    body.scroll-animations-ready .markets,
    body.scroll-animations-ready .market-intro,
    body.scroll-animations-ready .market-products,
    body.scroll-animations-ready .medical-market-layout,
    body.scroll-animations-ready .site-footer {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      will-change: opacity, transform;
    }

    body.scroll-animations-ready .catalog-shortcut-section.is-visible,
    body.scroll-animations-ready .focus-areas.is-visible,
    body.scroll-animations-ready .precision-feature.is-visible,
    body.scroll-animations-ready .markets.is-visible,
    body.scroll-animations-ready .market-intro.is-visible,
    body.scroll-animations-ready .market-products.is-visible,
    body.scroll-animations-ready .medical-market-layout.is-visible,
    body.scroll-animations-ready .site-footer.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .news-strip {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      position: relative;
      padding: 6px 0;
    }

    .news-strip::before {
      content: "";
      width: 4px;
      height: 36px;
      background: linear-gradient(180deg, #b0ed92 0%, var(--dp-green) 55%, #86d0ff 100%);
      box-shadow: 0 0 20px rgba(99, 178, 70, 0.42);
      border-radius: 999px;
      position: absolute;
      left: -12px;
      top: 50%;
      transform: translateY(-50%);
    }

    .news-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--dp-green);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .news-track {
      flex: 1;
      overflow: hidden;
      min-width: 0;
      mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    }

    .news-marquee {
      display: flex;
      width: max-content;
      align-items: center;
      flex-wrap: nowrap;
      gap: 36px;
      animation: ticker 44s linear infinite;
      will-change: transform;
    }

    .news-items {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      gap: 36px;
      padding-right: 36px;
    }

    .news-item {
      font-size: 13px;
      color: #eef7ff;
      white-space: nowrap;
      flex: 0 0 auto;
      position: relative;
      opacity: 0.92;
      text-shadow: 0 1px 0 rgba(5, 16, 29, 0.18);
    }

    .news-item::after {
      content: "•";
      color: rgba(155, 226, 127, 0.9);
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .news-item:last-child::after {
      content: "";
    }

    .news-item:hover,
    .news-item:focus {
      opacity: 1;
      color: #b9f59b;
    }

    .news-view {
      font-size: 12px;
      color: #c7e6ff;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      white-space: nowrap;
      padding: 8px 12px;
      border: 1px solid rgba(134, 208, 255, 0.26);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .news-view:hover,
    .news-view:focus {
      color: #fff;
      background: rgba(134, 208, 255, 0.1);
      border-color: rgba(155, 226, 127, 0.34);
    }

    .news-strip:hover .news-marquee,
    .news-strip:focus-within .news-marquee {
      animation-play-state: paused;
    }

    .client-logos-band {
      padding: 32px 40px;
      background: linear-gradient(135deg, #123a5f 0%, #0f3150 100%);
    }

    .client-logo-viewport {
      overflow: hidden;
      width: 100%;
    }

    .client-logo-track {
      display: flex;
      width: max-content;
      gap: 18px;
      align-items: center;
      flex-wrap: nowrap;
      animation: clientLogoTicker 48s linear infinite;
      will-change: transform;
    }

    .client-logo-viewport:hover .client-logo-track,
    .client-logo-viewport:focus-within .client-logo-track {
      animation-play-state: paused;
    }

    .client-logo-card {
      flex: 0 0 clamp(132px, 14vw, 190px);
      min-height: 84px;
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 14px;
      display: grid;
      place-items: center;
      padding: 12px 16px;
      box-shadow: 0 14px 28px rgba(6, 18, 30, 0.14);
    }

    .client-logo-card img {
      max-width: 100%;
      max-height: 34px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .client-logo-card img.client-logo-large {
      max-height: 46px;
    }

    .client-logo-card img.client-logo-xlarge {
      max-height: 54px;
    }

    @keyframes clientLogoTicker {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-50% - 9px));
      }
    }

    .certified-band {
      padding: 72px 40px;
      background: linear-gradient(135deg, #0b1f33 0%, #12385c 58%, #184c76 100%);
      color: #fff;
    }

    .certified-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 34px;
      align-items: start;
    }

    .certified-copy {
      display: grid;
      gap: 16px;
      max-width: 700px;
    }

    .certified-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.72);
    }

    .certified-copy h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.14;
    }

    .certified-copy p {
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
      font-size: 15px;
      line-height: 1.6;
    }

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

    .certified-list li {
      position: relative;
      padding-left: 28px;
      color: rgba(255, 255, 255, 0.84);
      line-height: 1.55;
    }

    .certified-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--dp-green);
      box-shadow: 0 0 0 4px rgba(99, 178, 70, 0.14);
    }

    .certified-list a {
      color: #b9f59b;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .certified-list a:hover,
    .certified-list a:focus {
      color: #fff;
    }

    .certified-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 4px;
    }

    .certified-grid {
      display: grid;
      gap: 16px;
    }

    .certified-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 20px 22px;
      display: grid;
      gap: 10px;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      box-shadow: 0 18px 34px rgba(6, 18, 30, 0.18);
    }

    .certified-card-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 700;
    }

    .certified-card strong {
      font-size: 18px;
      line-height: 1.35;
      color: #fff;
      font-weight: 600;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* ===== Section ===== */

    section {
      padding: 72px 40px;
      scroll-margin-top: 90px;
    }

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

    .section-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 48px;
    }

    /* ===== About Section (Focus Areas Replacement) ===== */

    .focus-areas {
      padding-top: 64px;
      padding-bottom: 64px;
      background: linear-gradient(180deg, #f4f8fc 0%, #eef4f9 100%);
    }

    .catalog-shortcut-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(177, 235, 146, 0.24), transparent 24%),
        radial-gradient(circle at 88% 22%, rgba(113, 199, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #0f7a3d 0%, #2c9b45 38%, #63b246 72%, #0f3a68 100%);
      padding-top: 24px;
      padding-bottom: 28px;
      color: #fff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(6, 34, 16, 0.12);
    }

    .catalog-shortcut-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(6, 34, 16, 0.22) 0%, rgba(6, 34, 16, 0.08) 42%, rgba(6, 34, 16, 0.2) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px);
      pointer-events: none;
    }

    .catalog-shortcut-section .section-inner {
      position: relative;
      z-index: 1;
    }

    .catalog-shortcut {
      padding: 34px;
      display: grid;
      gap: 28px;
    }

    .catalog-shortcut-intro {
      display: grid;
      gap: 12px;
      max-width: 1040px;
    }

    .catalog-shortcut-eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(239, 251, 243, 0.82);
      font-weight: 700;
    }

    .catalog-shortcut-intro h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.12;
      max-width: 26ch;
    }

    .catalog-shortcut-intro h2.catalog-shortcut-title-wide {
      max-width: none;
    }

    .catalog-shortcut-intro p {
      margin: 0;
      max-width: 88ch;
      color: rgba(240, 250, 244, 0.88);
    }

    .catalog-shortcut-form {
      display: grid;
      gap: 20px;
    }

    .catalog-shortcut-grid {
      display: grid;
      grid-template-columns: minmax(180px, 1.25fr) repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .catalog-shortcut-field {
      display: grid;
      gap: 8px;
    }

    .catalog-shortcut-field-wide {
      grid-column: span 1;
    }

    .catalog-shortcut-field span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
      color: rgba(241, 251, 245, 0.82);
    }

    .catalog-shortcut-field input,
    .catalog-shortcut-field select {
      width: 100%;
      min-height: 52px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      padding: 0 16px;
      font-size: 14px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .catalog-shortcut-field input::placeholder {
      color: rgba(232, 245, 237, 0.62);
    }

    .catalog-shortcut-field select {
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%);
      background-position:
        calc(100% - 19px) calc(50% - 3px),
        calc(100% - 13px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding-right: 36px;
    }

    .catalog-shortcut-field select option {
      color: var(--dp-text);
      background: #fff;
    }

    .catalog-shortcut-field input:focus,
    .catalog-shortcut-field select:focus {
      outline: none;
      border-color: rgba(255, 255, 255, 0.56);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 3px rgba(196, 245, 175, 0.18);
    }

    .catalog-shortcut-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .catalog-shortcut-actions .btn-primary {
      background: #fff;
      color: #145a2d;
      border-color: #fff;
      box-shadow: 0 14px 26px rgba(7, 25, 13, 0.16);
    }

    .catalog-shortcut-actions .btn-primary:hover {
      background: #f4fff6;
      border-color: #f4fff6;
    }

    .catalog-shortcut-actions .btn-primary .btn-icon {
      background: rgba(99, 178, 70, 0.16);
      border-color: rgba(99, 178, 70, 0.24);
      color: #145a2d;
    }

    .catalog-shortcut-link {
      color: #eff9ff;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
      border-bottom: 1px solid rgba(239, 249, 255, 0.36);
      padding-bottom: 4px;
    }

    .catalog-shortcut-link:hover,
    .catalog-shortcut-link:focus-visible {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.72);
    }

    .about-header {
      margin-bottom: 28px;
    }

    .about-subtitle {
      margin-top: 10px;
      color: var(--dp-muted);
      font-size: 15px;
      max-width: 720px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
      align-items: start;
      margin-bottom: 32px;
      justify-items: stretch;
    }

    .about-copy {
      min-width: 0;
      max-width: 100%;
      text-align: left;
    }

    .about-copy p {
      margin: 0 0 16px;
      color: var(--dp-muted);
      font-size: 15px;
    }

    .about-copy h3 {
      margin: 0 0 16px;
      font-size: 28px;
      font-weight: 600;
      color: var(--dp-text);
      max-width: 640px;
      line-height: 1.2;
    }

    .about-eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--dp-blue);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .about-copy ul {
      margin: 0 0 18px;
      padding-left: 18px;
      color: var(--dp-muted);
      font-size: 14px;
    }

    .about-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .about-cta .btn-secondary {
      color: var(--dp-blue);
      border-color: var(--dp-border);
      background: #fff;
    }

    .about-cta .btn-secondary:hover {
      border-color: rgba(15, 58, 104, 0.4);
      background: rgba(15, 58, 104, 0.06);
    }

    .custom-capabilities-section {
      padding: 88px 40px 72px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 20%, rgba(44, 152, 184, 0.08), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(99, 178, 70, 0.07), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    }

    .custom-capabilities-section::before,
    .custom-capabilities-section::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .custom-capabilities-section::before {
      background:
        linear-gradient(rgba(15, 58, 104, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 58, 104, 0.05) 1px, transparent 1px);
      background-size: 88px 88px;
      mask-image: linear-gradient(125deg, rgba(0, 0, 0, 0.7), transparent 82%);
      opacity: 0.3;
    }

    .custom-capabilities-section::after {
      background:
        radial-gradient(circle at 82% 28%, rgba(44, 152, 184, 0.08), transparent 18%),
        linear-gradient(120deg, rgba(15, 58, 104, 0.05), transparent 46%);
      opacity: 0.65;
    }

    .custom-capabilities-section .section-inner {
      position: relative;
      z-index: 1;
    }

    .custom-capabilities-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
      gap: 32px;
      align-items: stretch;
    }

    .custom-capabilities-copy {
      color: var(--dp-text);
      padding: 8px 0;
      display: grid;
      gap: 18px;
      align-content: center;
      position: relative;
      z-index: 1;
    }

    .custom-capabilities-eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--dp-blue);
      font-weight: 700;
    }

    .custom-capabilities-copy h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.12;
      max-width: 12ch;
    }

    .custom-capabilities-copy > p {
      margin: 0;
      font-size: 16px;
      line-height: 1.7;
      color: var(--dp-muted);
      max-width: 56ch;
    }

    .telecom-overview-copy {
      max-width: 980px;
    }

    .telecom-overview-copy h2,
    .telecom-overview-copy > p {
      max-width: none;
    }

    .custom-capabilities-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .custom-capabilities-actions .btn-secondary {
      background: #fff;
      border-color: rgba(15, 58, 104, 0.18);
      color: var(--dp-blue);
    }

    .custom-capabilities-actions .btn-secondary:hover {
      background: rgba(15, 58, 104, 0.04);
      border-color: rgba(15, 58, 104, 0.28);
    }

    .custom-capabilities-showcase {
      position: relative;
      min-height: 460px;
      z-index: 1;
    }

    .custom-capabilities-slide {
      position: absolute;
      inset: 0;
      display: none;
      overflow: visible;
      animation: heroFade 0.4s ease;
    }

    .custom-capabilities-slide.active {
      display: block;
    }

    .custom-capabilities-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
    }

    .custom-capabilities-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      padding: 0 38px 26px;
      position: relative;
      z-index: 1;
      transform: scale(1.08);
      transform-origin: center;
      filter: drop-shadow(0 24px 36px rgba(4, 17, 30, 0.28));
    }

    .custom-capabilities-slide-azimuth img {
      padding: 28px 72px 44px;
      transform: scale(0.84);
    }

    .custom-capabilities-caption {
      position: absolute;
      left: 18px;
      bottom: 0;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: transparent;
      border: none;
      color: rgba(11, 31, 51, 0.72);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .custom-capabilities-caption-long {
      max-width: calc(100% - 36px);
      min-height: 0;
      line-height: 1.25;
      letter-spacing: 0;
      white-space: normal;
    }

    .custom-capabilities-controls {
      position: absolute;
      right: 18px;
      bottom: 4px;
      z-index: 3;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .custom-capabilities-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(15, 58, 104, 0.18);
      background: rgba(255, 255, 255, 0.92);
      color: var(--dp-blue);
      display: grid;
      place-items: center;
      padding: 0;
      cursor: pointer;
      transform: translateY(-50%);
      box-shadow: 0 10px 22px rgba(11, 31, 51, 0.12);
    }

    .custom-capabilities-arrow:hover {
      background: #fff;
      border-color: rgba(15, 58, 104, 0.28);
    }

    .custom-capabilities-arrow-prev {
      left: 0;
    }

    .custom-capabilities-arrow-next {
      right: 0;
    }

    .custom-capabilities-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 1px solid rgba(15, 58, 104, 0.22);
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .custom-capabilities-dot.active {
      background: var(--dp-green);
      border-color: var(--dp-green);
    }

    .product-highlight {
      display: grid;
      gap: 28px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .product-highlight-header {
      display: grid;
      gap: 10px;
      max-width: 760px;
      text-align: center;
      margin: 0 auto;
    }

    .product-highlight-eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--dp-blue);
      font-weight: 700;
    }

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

    .product-highlight-card {
      background: #fff;
      border: 1px solid #cfd8e5;
      border-radius: 12px;
      overflow: hidden;
      display: grid;
      grid-template-rows: 170px minmax(0, 1fr);
      min-height: 0;
      box-shadow: 0 8px 20px rgba(11, 31, 51, 0.06);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      position: relative;
    }

    .product-highlight-card:hover {
      border-color: rgba(15, 58, 104, 0.22);
      transform: translateY(-8px);
      box-shadow: 0 24px 42px rgba(11, 31, 51, 0.14);
    }

    .product-highlight-card::after {
      content: none;
    }

    .product-model-stack {
      background: transparent;
      border: 0;
      box-shadow: none;
      cursor: pointer;
      display: grid;
      grid-template-rows: auto;
      overflow: visible;
    }

    .product-model-stack::before,
    .product-model-stack::after {
      content: "";
      position: absolute;
      inset: 10px -9px -10px 9px;
      z-index: 0;
      border: 1px solid rgba(15, 58, 104, 0.14);
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 8px 18px rgba(11, 31, 51, 0.08);
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .product-model-stack::after {
      inset: 18px -16px -18px 16px;
      opacity: 0.62;
    }

    .product-model-stack:hover {
      border-color: transparent;
      box-shadow: none;
    }

    .product-model-stack:hover::before {
      transform: translate(3px, -1px);
    }

    .product-model-stack:hover::after {
      transform: translate(6px, -2px);
    }

    .product-model-panel {
      grid-column: 1;
      grid-row: 1;
      display: grid;
      grid-template-rows: 170px minmax(0, 1fr);
      min-height: 100%;
      position: relative;
      z-index: 1;
      overflow: hidden;
      border: 1px solid #cfd8e5;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(11, 31, 51, 0.06);
      opacity: 0;
      pointer-events: none;
      transform: translateX(12px) scale(0.97);
      transition: opacity 0.28s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .product-model-panel.is-active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0) scale(1);
    }

    .product-model-stack:hover .product-model-panel.is-active {
      border-color: rgba(15, 58, 104, 0.22);
      box-shadow: 0 24px 42px rgba(11, 31, 51, 0.14);
    }

    .product-model-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .product-model-toggle {
      width: 38px;
      height: 32px;
      border: 1px solid rgba(15, 58, 104, 0.22);
      border-radius: 999px;
      background: #f5f8fc;
      color: var(--dp-blue);
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .product-model-toggle:hover,
    .product-model-toggle:focus-visible {
      background: var(--dp-blue);
      border-color: var(--dp-blue);
      color: #fff;
      outline: none;
    }

    .product-highlight-copy {
      padding: 20px 20px 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .applications-grid {
      display: grid;
      gap: 18px;
    }

    .tile-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 140px;
      gap: 16px;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid var(--dp-border);
      background: #fff;
      align-items: center;
    }

    .tile-card-link {
      text-decoration: none;
      color: inherit;
    }

    .tile-card-content h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 8px;
    }

    .tile-title-arrow {
      color: var(--dp-green);
      font-size: 1.1em;
    }

    .tile-card-media {
      width: 100%;
      height: 110px;
      border-radius: 12px;
      border: 1px dashed var(--dp-border);
      background: #f6f8fb;
    }

    .feature-section {
      padding: 72px 0;
    }

    .dental-equipment-page .feature-section,
    .oral-care-equipment-page .feature-section {
      padding: 56px 0;
    }

    .feature-section.feature-section-compact {
      padding: 48px 0;
    }

    .feature-section.two-col .feature-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 20px;
      align-items: start;
    }

    .feature-copy {
      display: grid;
      gap: 10px;
      max-width: 720px;
      margin-bottom: 0;
    }

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

    .feature-section.feature-section-compact .feature-callouts {
      gap: 10px;
    }

    .feature-section.two-col .feature-callouts {
      grid-template-columns: 1fr;
    }

    .feature-callout h4 {
      margin: 0;
    }

    .feature-callout p {
      margin: 0;
    }

    .feature-callout {
      background: transparent;
      border: 1px solid transparent;
      border-radius: 16px;
      padding: 12px 12px 12px 0;
      display: grid;
      gap: 6px;
    }

    .feature-section.feature-section-compact .feature-callout {
      padding: 8px 10px 8px 0;
      gap: 4px;
    }

    .feature-section.feature-section-compact .feature-icon {
      width: 34px;
      height: 34px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px dashed var(--dp-border);
      background: transparent;
      display: grid;
      place-items: center;
      color: var(--dp-green);
      font-size: 16px;
    }

    .feature-icon::before {
      content: "✓";
    }

    .hero-readmore {
      margin: 0;
    }

    .hero-readmore-extra {
      display: none;
    }

    .hero-readmore.expanded .hero-readmore-extra {
      display: inline;
    }

    .hero-readmore-toggle {
      display: inline-flex;
      gap: 6px;
      margin-left: 8px;
      color: var(--dp-green);
      font-weight: 600;
      text-decoration: none;
    }

    .hero-readmore-toggle:hover {
      text-decoration: underline;
    }

    .applications-table {
      padding: 72px 0;
    }

    .dental-equipment-page .applications-table,
    .oral-care-equipment-page .applications-table {
      padding: 56px 0 32px;
    }

    .dental-equipment-page .applications-table + .feature-section,
    .oral-care-equipment-page .applications-table + .feature-section {
      padding-top: 32px;
    }

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

    .applications-table-intro {
      display: grid;
      gap: 6px;
      padding-bottom: 6px;
      grid-column: 1 / -1;
    }

    .applications-table-intro h2 {
      margin: 0;
    }

    .applications-table-intro p {
      margin: 0;
      color: var(--dp-muted);
    }


    .applications-table-intro h2 {
      margin: 0;
    }

    .applications-table-intro p {
      margin: 0;
      color: var(--dp-muted);
    }

    .applications-diagram {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 24px;
      align-items: center;
    }

    .oral-care-equipment-page .applications-table-grid {
      align-items: start;
      grid-template-columns: minmax(280px, 0.95fr) minmax(0, 2.05fr);
      gap: 28px;
    }

    .application-template-page .applications-table-grid,
    .medical-equipment-page .applications-table-grid,
    .medical-imaging-equipment-page .applications-table-grid,
    .laboratory-equipment-page .applications-table-grid {
      align-items: start;
      grid-template-columns: minmax(280px, 0.95fr) minmax(0, 2.05fr);
      gap: 28px;
    }

    .oral-care-equipment-page .applications-table-intro {
      align-self: center;
      justify-self: start;
      text-align: left;
      padding-top: 0;
      max-width: 360px;
      grid-column: 1 / 2;
      padding-right: 8px;
    }

    .application-template-page .applications-table-intro,
    .medical-equipment-page .applications-table-intro,
    .medical-imaging-equipment-page .applications-table-intro,
    .laboratory-equipment-page .applications-table-intro {
      align-self: center;
      justify-self: start;
      text-align: left;
      padding-top: 0;
      max-width: 360px;
      grid-column: 1 / 2;
      padding-right: 8px;
    }

    .oral-care-equipment-page .applications-diagram {
      grid-column: 2 / 3;
    }

    .application-template-page .applications-diagram,
    .medical-equipment-page .applications-diagram,
    .medical-imaging-equipment-page .applications-diagram,
    .laboratory-equipment-page .applications-diagram {
      grid-column: 2 / 3;
    }

    .oral-care-equipment-page .applications-table-intro p {
      max-width: 34ch;
    }

    .application-template-page .applications-table-intro p,
    .medical-equipment-page .applications-table-intro p,
    .medical-imaging-equipment-page .applications-table-intro p,
    .laboratory-equipment-page .applications-table-intro p {
      max-width: 34ch;
    }

    .diagram-stage {
      position: relative;
      min-height: 360px;
      display: grid;
      place-items: center;
    }

    .diagram-stage::before {
      content: "";
      position: absolute;
      width: 78%;
      height: 78%;
      border: 2px dashed rgba(15, 58, 104, 0.2);
      border-radius: 50%;
    }

    .diagram-machine {
      width: 100%;
      max-width: 420px;
      height: auto;
      position: relative;
      z-index: 1;
    }

    .diagram-node {
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid var(--dp-green);
      background: #fff;
      box-shadow: 0 10px 18px rgba(11, 31, 51, 0.12);
      cursor: pointer;
      z-index: 2;
      transition: transform 0.2s ease;
    }

    .diagram-node::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: rgba(124, 186, 75, 0.2);
      transition: background 0.2s ease;
    }

    .diagram-node.is-active::after,
    .diagram-node:hover::after,
    .diagram-node:focus-visible::after {
      background: rgba(124, 186, 75, 0.5);
    }

    .diagram-node:focus-visible {
      outline: 2px solid rgba(124, 186, 75, 0.6);
      outline-offset: 3px;
    }

    .diagram-node.node-1 {
      top: 12%;
      right: 12%;
    }

    .diagram-node.node-2 {
      top: 38%;
      right: 4%;
    }

    .diagram-node.node-3 {
      bottom: 16%;
      right: 16%;
    }

    .oral-care-equipment-page .diagram-node.dpcc-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPCC.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .oral-care-equipment-page .diagram-node.hdm120-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/HDM120.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .oral-care-equipment-page .diagram-node.dpmsc60-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPMSC60.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .oral-care-equipment-page .diagram-node.hdm120-node::after,
    .oral-care-equipment-page .diagram-node.dpmsc60-node::after,
    .oral-care-equipment-page .diagram-node.dpcc-node::after {
      inset: 0;
      background: transparent;
    }

    .oral-care-equipment-page .diagram-node.hdm120-node.is-active,
    .oral-care-equipment-page .diagram-node.dpmsc60-node.is-active,
    .oral-care-equipment-page .diagram-node.dpcc-node.is-active {
      transform: scale(1.55);
      background-size: 122%;
      z-index: 3;
    }

    .application-template-page .diagram-machine {
      display: none;
    }

    .application-template-page .diagram-stage {
      --app-circle-size: 320px;
      --app-circle-radius: 160px;
      min-height: 380px;
      border: 0;
      background: #fff;
      overflow: visible;
    }

    .application-template-page .diagram-stage::before {
      content: "";
      position: absolute;
      width: var(--app-circle-size);
      height: var(--app-circle-size);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 2px solid rgba(124, 186, 75, 0.7);
      background: #fff;
      box-shadow: 0 12px 24px rgba(11, 31, 51, 0.08);
      z-index: 1;
    }

    .application-template-page .diagram-node {
      z-index: 2;
    }

    .application-template-page .diagram-node.node-1 {
      top: calc(50% - var(--app-circle-radius));
      left: 50%;
      right: auto;
      bottom: auto;
      transform: translate(-50%, -50%);
    }

    .application-template-page .diagram-node.node-2 {
      top: 50%;
      left: calc(50% + var(--app-circle-radius));
      right: auto;
      bottom: auto;
      transform: translate(-50%, -50%);
    }

    .application-template-page .diagram-node.node-3 {
      top: calc(50% + var(--app-circle-radius));
      left: 50%;
      right: auto;
      bottom: auto;
      transform: translate(-50%, -50%);
    }

    .application-template-page .diagram-node.node-1.is-active,
    .application-template-page .diagram-node.node-2.is-active,
    .application-template-page .diagram-node.node-3.is-active {
      transform: translate(-50%, -50%) scale(1.08);
    }

	    .medical-equipment-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/medicalheader2.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .laboratory-equipment-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/labequipmenthero.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .industrial-machines-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/industrialmachinery.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .industrial-computing-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/applications_images/industrial-computing/industrial-computing-1.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .enterprise-networking-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/applications_images/telecomm/telecomm2.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .airborne-systems-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/airbornesystemshero.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .land-based-systems-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/landbased.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .naval-systems-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/navalsystems.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .uavs-page .product-hero {
	      background-image:
	        linear-gradient(135deg, rgba(8, 24, 40, 0.84), rgba(15, 58, 104, 0.6)),
	        url("../images/uav2.jpg");
	      background-size: cover;
	      background-position: center;
	      background-repeat: no-repeat;
	    }

	    .airborne-systems-page .product-hero::after {
	      background:
	        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.07), transparent 44%),
        linear-gradient(120deg, rgba(5, 16, 27, 0.46), transparent 58%);
    }

    .airborne-systems-page .diagram-stage::before {
      background: transparent;
    }

    .airborne-systems-page .diagram-machine {
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(80%, 320px);
      height: auto;
      z-index: 2;
      pointer-events: none;
    }

    .airborne-systems-page .diagram-node {
      z-index: 3;
    }

    .airborne-systems-page .diagram-node.dpm4050-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPM4050.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .airborne-systems-page .diagram-node.dpm4700-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPM4700.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .airborne-systems-page .diagram-node.cpci3u-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/CPCI-3U.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .airborne-systems-page .diagram-node.dpm4050-node::after,
    .airborne-systems-page .diagram-node.dpm4700-node::after,
    .airborne-systems-page .diagram-node.cpci3u-node::after {
      inset: 0;
      background: transparent;
    }

    .airborne-systems-page .diagram-node.dpm4050-node.is-active,
    .airborne-systems-page .diagram-node.dpm4700-node.is-active,
    .airborne-systems-page .diagram-node.cpci3u-node.is-active {
      transform: translate(-50%, -50%) scale(1.38);
      background-size: 122%;
      z-index: 4;
    }

    .ground-vehicles-page .diagram-stage::before {
      background: transparent;
    }

    .ground-vehicles-page .diagram-machine {
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(74%, 280px);
      height: auto;
      z-index: 2;
      pointer-events: none;
    }

    .ground-vehicles-page .diagram-node {
      z-index: 3;
    }

    .ground-vehicles-page .diagram-node.dpm4050-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPM4050.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .ground-vehicles-page .diagram-node.dpm4700-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/DPM4700.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .ground-vehicles-page .diagram-node.cpci3u-node {
      background-image: url("https://digipwr2dev.wpenginepowered.com/wp-content/uploads/CPCI-3U.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: background-size 0.2s ease;
    }

    .ground-vehicles-page .diagram-node.dpm4050-node::after,
    .ground-vehicles-page .diagram-node.dpm4700-node::after,
    .ground-vehicles-page .diagram-node.cpci3u-node::after {
      inset: 0;
      background: transparent;
    }

    .ground-vehicles-page .diagram-node.dpm4050-node.is-active,
    .ground-vehicles-page .diagram-node.dpm4700-node.is-active,
    .ground-vehicles-page .diagram-node.cpci3u-node.is-active {
      transform: translate(-50%, -50%) scale(1.38);
      background-size: 122%;
      z-index: 4;
    }

    .diagram-node.node-4 {
      bottom: 18%;
      left: 14%;
    }


    .diagram-info {
      border: 1px solid var(--dp-border);
      border-radius: 16px;
      padding: 18px;
      background: #fff;
      display: grid;
      gap: 8px;
      min-height: 180px;
    }

    .diagram-info-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
      color: var(--dp-muted);
      font-weight: 600;
    }

    .diagram-info h3 {
      margin: 0;
      color: var(--dp-blue);
    }

    .diagram-info p {
      margin: 0;
      color: var(--dp-muted);
    }

    .diagram-info-link {
      margin-top: auto;
      color: var(--dp-green);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .diagram-info-link:hover {
      text-decoration: underline;
    }

    .applications-table-intro .diagram-info-link {
      margin-top: 6px;
    }

    .applications-hero-card {
      grid-column: 1 / -1;
      background: transparent;
      border-radius: 18px;
      padding: 24px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .applications-hero-card img {
      width: 100%;
      max-width: 520px;
      height: auto;
      display: block;
    }

    .applications-table-image {
      width: 72px;
      height: 72px;
      border-radius: 14px;
      border: 1px dashed var(--dp-border);
      background: linear-gradient(135deg, rgba(15, 58, 104, 0.08), rgba(124, 186, 75, 0.14));
      display: grid;
      place-items: center;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
      color: rgba(15, 58, 104, 0.7);
      font-weight: 600;
      overflow: hidden;
    }

    .applications-table-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .applications-table-card {
      border: 1px solid var(--dp-border);
      border-radius: 18px;
      padding: 20px;
      background: #fff;
    }

    .applications-table-cell {
      border-top: 1px solid var(--dp-border);
      padding: 14px 0;
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      text-decoration: none;
      color: inherit;
    }

    .applications-table-text h4 {
      margin: 0;
      color: var(--dp-blue);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .applications-table-text p {
      margin: 0;
      color: var(--dp-muted);
    }

    .applications-table-text {
      display: grid;
      gap: 6px;
    }

    .applications-table-arrow {
      color: var(--dp-green);
      font-weight: 600;
      font-size: 0.9em;
      opacity: 0.7;
      transition: transform 0.2s ease;
    }

    .applications-table-cell:hover .applications-table-arrow {
      opacity: 1;
    }

    .applications-table-cell:hover .applications-table-arrow {
      transform: translateX(4px);
    }

    .applications-table-cell:nth-child(-n + 2) {
      border-top: 0;
      padding-top: 0;
    }

    .dental-equipment-page .applications-table-cell:nth-child(-n + 3),
    .oral-care-equipment-page .applications-table-cell:nth-child(-n + 3) {
      border-top: 0;
      padding-top: 0;
    }

    .feature-note {
      margin: 16px 0 0;
      color: var(--dp-muted);
    }

    .product-highlight-media {
      text-decoration: none;
      background:
        linear-gradient(160deg, rgba(15, 58, 104, 0.12), rgba(99, 178, 70, 0.12)),
        linear-gradient(180deg, #eff5fb, #dfe9f4);
      display: grid;
      place-items: center;
      min-height: 170px;
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .product-highlight-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15, 58, 104, 0.16), rgba(15, 58, 104, 0.04));
      opacity: 0.7;
      transition: opacity 0.35s ease;
    }

    .product-highlight-media img {
      max-width: 100%;
      height: auto;
      max-height: 130px;
      object-fit: contain;
      position: relative;
      z-index: 1;
      transition: transform 0.35s ease;
    }

    .product-highlight-media .product-highlight-img-sm {
      max-width: 78%;
      max-height: 104px;
    }

    .product-highlight-slideshow {
      isolation: isolate;
    }

    .product-highlight-slideshow .product-highlight-slide {
      grid-column: 1;
      grid-row: 1;
      opacity: 0;
      transform: translateX(8px) scale(0.98);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .product-highlight-slideshow .product-highlight-slide.is-active {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .product-highlight-slideshow .product-highlight-slide-sm {
      max-width: 72%;
      max-height: 96px;
    }

    .product-highlight-slide-arrow {
      position: absolute;
      z-index: 2;
      top: 50%;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(15, 58, 104, 0.22);
      border-radius: 999px;
      background: var(--dp-blue);
      color: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
      font: inherit;
      font-size: 28px;
      line-height: 1;
      opacity: 0.88;
      transform: translateY(-50%);
      transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    }

    .product-highlight-slide-arrow-prev {
      left: 12px;
    }

    .product-highlight-slide-arrow-next {
      right: 12px;
    }

    .product-highlight-slide-arrow:hover,
    .product-highlight-slide-arrow:focus-visible {
      background: #0b1f33;
      border-color: #0b1f33;
      opacity: 1;
      outline: none;
      transform: translateY(-50%) scale(1.06);
    }

    .product-highlight-card:hover .product-highlight-media img {
      transform: scale(1.08);
    }

    .product-highlight-card:hover .product-highlight-slideshow .product-highlight-slide.is-active {
      transform: scale(1.08);
    }

    .product-highlight-card:hover .product-highlight-slideshow .product-highlight-slide-sm.is-active {
      transform: scale(1.02);
    }

    .product-highlight-card:hover .product-highlight-media::after {
      opacity: 0.5;
    }

    .product-highlight-title {
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--dp-blue);
      line-height: 1.25;
    }

    .product-highlight-card p {
      margin: 0;
      color: #46576b;
      line-height: 1.4;
      font-size: 14px;
    }

    .product-highlight-card a {
      color: inherit;
    }

    .product-highlight-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 600;
      color: #32475c;
    }

    .product-highlight-arrow {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: #eef3f8;
      color: var(--dp-blue);
      font-size: 14px;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .product-highlight-link:hover .product-highlight-arrow,
    .product-highlight-link:focus-visible .product-highlight-arrow {
      background: var(--dp-blue);
      color: #fff;
      transform: translateX(4px);
    }

    .about-feature-link {
      color: #fff;
    }

    .about-feature-arrow {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .about-feature-link:hover .about-feature-arrow,
    .about-feature-link:focus-visible .about-feature-arrow {
      background: #fff;
      color: var(--dp-blue);
    }

    .product-highlight-header h2 {
      font-size: 38px;
      margin: 0;
      line-height: 1.15;
    }

    .product-highlight-header p {
      margin: 0;
      color: var(--dp-muted);
      font-size: 16px;
    }

    .highlight-green {
      color: var(--dp-green);
    }


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

    .focus-row {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }

    .focus-thumb {
      width: 100%;
      height: 80px;
      border-radius: 8px;
      border: 1px solid rgba(15, 58, 104, 0.2);
      background: #f6f8fb;
      display: grid;
      place-items: center;
    }

    .focus-thumb svg {
      width: 46px;
      height: 46px;
      stroke: var(--dp-blue);
    }
    .focus-thumb.secondary svg {
      stroke: var(--dp-green);
    }
    .focus-thumb.tertiary svg {
      stroke: #2c7fb5;
    }

    .focus-row span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--dp-muted);
    }

    .focus-row h3 {
      margin: 0;
      font-size: 16px;
    }

    .focus-row p {
      margin: 0;
      color: var(--dp-muted);
      font-size: 13px;
    }

    .focus-link {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      color: var(--dp-blue);
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ===== Capabilities Feature Module ===== */

    .cap-feature {
      display: grid;
      gap: 20px;
    }

    .cap-media {
      position: relative;
      min-height: 340px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--dp-border);
      background:
        radial-gradient(circle at 20% 20%, rgba(99, 178, 70, 0.15), transparent 50%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 32px),
        linear-gradient(135deg, var(--dp-blue) 0%, var(--dp-blue-soft) 55%, #274F78 100%);
    }

    .cap-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15, 58, 104, 0.6), transparent 55%);
    }

    .cap-overlay {
      position: absolute;
      left: 32px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      border-radius: 10px;
      box-shadow: none;
      padding: 24px;
      max-width: 360px;
      display: grid;
      gap: 12px;
      z-index: 1;
    }

    .cap-eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 600;
    }

    .cap-overlay h3 {
      margin: 0;
      font-size: 20px;
      color: #fff;
    }

    .cap-overlay p {
      margin: 0;
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
    }

    .cap-list {
      display: grid;
      gap: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.75);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
    }

    .cap-overlay .btn {
      align-self: start;
    }

    .cap-actions {
      background: #fff;
      border: 1px solid var(--dp-border);
      border-radius: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      overflow: hidden;
    }

    .cap-action {
      padding: 20px 22px;
      display: grid;
      gap: 8px;
    }

    .cap-action + .cap-action {
      border-left: 1px solid var(--dp-border);
    }

    /* ===== Precision Feature ===== */

    .precision-feature {
      position: relative;
      padding: 132px 40px;
      background: url("../images/armoredvehicle.jpg") center/cover no-repeat;
      color: #fff;
      overflow: hidden;
    }

    .about-feature {
      background:
        radial-gradient(circle at 16% 24%, rgba(44, 152, 184, 0.28), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(242, 154, 58, 0.18), transparent 24%),
        radial-gradient(circle at 72% 78%, rgba(99, 178, 70, 0.18), transparent 26%),
        linear-gradient(135deg, #081421 0%, #0d2236 38%, #123758 100%);
    }

    .about-feature::before,
    .about-feature::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .about-feature::before {
      background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 90px 90px;
      mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75), transparent 78%);
      opacity: 0.22;
    }

    .about-feature::after {
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%),
        radial-gradient(circle at 22% 68%, rgba(255, 255, 255, 0.12), transparent 22%);
      mix-blend-mode: screen;
      opacity: 0.4;
    }

    .precision-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(6, 18, 30, 0.78), rgba(6, 18, 30, 0.42));
      z-index: 0;
    }

    .about-feature .precision-overlay {
      background:
        linear-gradient(90deg, rgba(5, 16, 27, 0.82) 0%, rgba(7, 23, 38, 0.7) 44%, rgba(8, 26, 42, 0.34) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%);
    }

    .precision-inner {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: flex-start;
      gap: 48px;
    }

    .precision-copy {
      max-width: 520px;
      display: grid;
      gap: 16px;
    }
    .btn-with-icon {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-with-icon .btn-icon {
      font-size: 16px;
      line-height: 1;
    }

    .precision-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 600;
    }

    .markets .precision-eyebrow {
      color: var(--dp-blue);
    }
    .markets .btn.btn-secondary {
      color: var(--dp-blue);
      border-color: transparent;
    }

    .precision-copy h2 {
      margin: 0;
      font-size: 28px;
      line-height: 1.2;
    }

    .precision-copy p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
    }

    .precision-stats {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .precision-stat {
      display: grid;
      gap: 6px;
      padding-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .precision-stat strong {
      font-size: 22px;
      color: #fff;
    }

    .precision-stat span {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
    }

    .about-feature .precision-inner {
      align-items: center;
    }

    .about-graphic {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }

    .about-graphic-image {
      display: block;
      width: min(440px, 100%);
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: left center;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(6, 18, 30, 0.32);
    }

    .cap-action h4 {
      margin: 0;
      font-size: 16px;
      color: var(--dp-blue);
    }

    .cap-action p {
      margin: 0;
      color: var(--dp-muted);
      font-size: 13px;
    }

    .cap-action .btn {
      background: transparent;
      color: var(--dp-blue);
      border-color: var(--dp-border);
    }

    .cap-action .btn:hover {
      border-color: rgba(15, 58, 104, 0.4);
      background: rgba(15, 58, 104, 0.06);
    }

    /* ===== Markets Rail ===== */

    .markets {
      background: #fff;
    }
    .markets .section-inner {
      display: grid;
      gap: 28px;
    }

    .markets-panel {
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      display: grid;
      gap: 24px;
    }

    .markets-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
    }

    .markets-title h2 {
      margin: 0 0 6px;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.12;
    }

    .markets-title p {
      margin: 0;
      color: var(--dp-muted);
      font-size: 15px;
      line-height: 1.6;
      max-width: 860px;
    }

    .applications-panel .markets-rail {
      display: grid;
      grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .applications-panel .rail-list {
      border: 1px solid var(--dp-border);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
    }

    .applications-panel .rail-item {
      width: 100%;
      text-align: left;
      padding: 16px 18px;
      border: none;
      background: transparent;
      font-size: 14px;
      color: var(--dp-muted);
      border-bottom: 1px solid var(--dp-border);
      cursor: pointer;
      position: relative;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .applications-panel .rail-item:last-child {
      border-bottom: none;
    }

    .applications-panel .rail-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: transparent;
      transition: background 0.2s ease;
    }

    .applications-panel .rail-item.active {
      color: var(--dp-blue);
      background: rgba(11, 31, 51, 0.02);
      font-weight: 600;
    }

    .applications-panel .rail-item.active::before {
      background: var(--dp-green);
    }

    .applications-panel .market-panel {
      min-height: 320px;
      border-radius: 10px;
      border: 1px solid var(--dp-border);
      background: #fff;
      box-shadow: var(--dp-shadow-soft);
      overflow: hidden;
    }

    .applications-panel .applications-panel-body {
      display: grid;
      gap: 22px;
      padding: 24px;
      align-content: start;
    }

    .applications-panel .applications-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .applications-panel .applications-mode-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--dp-blue);
      font-weight: 700;
    }

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

    .applications-panel #applications-grid {
      display: grid;
      gap: 16px;
    }

    .markets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 22px;
    }

	    .market-spotlight {
	      background: #0f3a68;
	      border: none;
	      border-radius: 24px;
      overflow: hidden;
      position: relative;
      display: grid;
      min-height: 420px;
      isolation: isolate;
      box-shadow: 0 16px 36px rgba(11, 31, 51, 0.16);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .market-spotlight > * {
      grid-area: 1 / 1;
    }

	    .market-spotlight:hover {
	      transform: translateY(-8px);
	      box-shadow: 0 26px 52px rgba(11, 31, 51, 0.22);
	    }

    .market-spotlight-media {
      display: block;
      position: relative;
      min-height: 100%;
      overflow: hidden;
      background: linear-gradient(135deg, #103e6d, #204f79);
    }

    .market-spotlight-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4, 17, 30, 0.08) 0%, rgba(4, 17, 30, 0.18) 24%, rgba(4, 17, 30, 0.72) 76%, rgba(4, 17, 30, 0.9) 100%),
        linear-gradient(135deg, rgba(15, 58, 104, 0.14), rgba(99, 178, 70, 0.16));
      transition: opacity 0.35s ease;
      z-index: 1;
    }

    .market-spotlight-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .market-spotlight:hover .market-spotlight-media img {
      transform: scale(1.08);
    }

    .market-spotlight:hover .market-spotlight-media::after {
      opacity: 0.92;
    }

    .market-spotlight-copy {
      position: relative;
      z-index: 2;
      align-self: end;
      padding: 28px 24px 24px;
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .market-spotlight-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #b5dcff;
      font-weight: 700;
    }

    .market-spotlight h3 {
      margin: 0;
      font-size: 24px;
      color: #fff;
      line-height: 1.12;
      max-width: 12ch;
      text-wrap: balance;
    }

    .market-spotlight p {
      margin: 0;
      color: rgba(235, 244, 252, 0.9);
      font-size: 14px;
      line-height: 1.6;
      max-width: 28ch;
    }

    .telecom-market-spotlight h3 {
      max-width: 16ch;
      text-wrap: pretty;
    }

    .telecom-market-spotlight p {
      max-width: 32ch;
    }

    .market-spotlight-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: #fff;
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      margin-top: 8px;
      padding: 11px 14px 11px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: linear-gradient(90deg, rgba(99, 178, 70, 0.92), rgba(56, 193, 114, 0.9));
      box-shadow: 0 12px 24px rgba(6, 28, 17, 0.18);
      width: fit-content;
    }

    .market-spotlight-arrow {
      width: 28px;
      height: 28px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(7, 32, 19, 0.18);
      color: #fff;
      font-size: 14px;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .market-spotlight-link:hover,
    .market-spotlight-link:focus-visible {
      background: linear-gradient(90deg, #71c554, #63b246);
    }

    .market-spotlight-link:hover .market-spotlight-arrow,
    .market-spotlight-link:focus-visible .market-spotlight-arrow {
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
      transform: translateX(4px);
    }

    /* ===== Footer ===== */

    .site-footer {
      margin-top: auto;
      background: linear-gradient(150deg, #0B1F33 0%, #102B47 55%, #153757 100%);
      color: #C7D6E5;
      font-size: 14px;
    }

    .footer-cta {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding: 48px 0;
      background: rgba(15, 58, 104, 0.2);
    }

    .footer-cta-inner {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
      align-items: center;
      padding-inline: var(--footer-inline-padding);
    }

    .footer-cta-copy h3 {
      margin: 0 0 10px;
      font-size: 22px;
      color: #fff;
    }

    .footer-cta-copy p {
      margin: 0;
      color: #C7D6E5;
    }

    .footer-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .footer-cta-actions .btn-secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.6);
      background: transparent;
    }

    .footer-cta-actions .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .footer-main {
      display: grid;
      gap: 24px;
      grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
      padding: 40px 0 28px;
      padding-inline: var(--footer-inline-padding);
    }

    .footer-brand strong {
      color: #fff;
      font-size: 16px;
      display: block;
      margin-bottom: 8px;
    }

    .footer-logo {
      height: 44px;
      width: auto;
      display: block;
      margin-bottom: 12px;
      filter: none;
      opacity: 1;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      max-width: 130px;
    }

    .footer-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 30px;
      width: 30px;
      max-width: 30px;
      height: 30px;
      max-height: 30px;
      overflow: hidden;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
    }

    .footer-social-link:hover,
    .footer-social-link:focus-visible {
      background: rgba(111, 178, 76, 0.22);
      border-color: rgba(111, 178, 76, 0.55);
      transform: translateY(-2px);
    }

    .footer-social-link svg {
      display: block;
      flex: 0 0 16px;
      width: 16px !important;
      max-width: 16px;
      height: 16px !important;
      max-height: 16px;
      fill: #fff;
    }

    .footer-social-link svg path {
      fill: #fff;
    }

    .footer-brand p {
      margin: 0;
    }

    .footer-col p {
      margin: 0;
    }

    .footer-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .site-footer a {
      color: #fff;
      opacity: 0.85;
    }

    .site-footer a:hover,
    .site-footer a:focus {
      opacity: 1;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding: 18px 0 34px;
      padding-inline: var(--footer-inline-padding);
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ===== Responsive ===== */

    @media (max-width: 600px) {
      .hero {
        min-height: 780px;
        padding: 0 0 120px;
      }

      .hero-slide-inner {
        align-items: flex-start;
        padding-top: 120px;
      }

      .hero-content {
        padding: 0 0 180px;
        transform: none;
      }

      .hero-controls {
        bottom: 36px;
      }

      .product-hero {
        padding: 112px 24px 56px;
      }

      .product-detail-hero {
        padding: 112px 24px 56px;
      }

      .product-detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .product-detail-copy h1 {
        font-size: 34px;
      }

      .product-detail-subtitle {
        font-size: 18px;
      }

      .product-detail-tabs-nav {
        flex-wrap: wrap;
      }

      .product-detail-tab {
        flex: 1 1 100%;
        border-right: 0;
        border-bottom: 1px solid var(--dp-border);
      }

      .product-detail-tab:last-child {
        border-bottom: 0;
      }

      .product-detail-table th,
      .product-detail-table td {
        font-size: 13px;
      }

      .hero-slide::after {
        background:
          linear-gradient(180deg, rgba(7, 19, 31, 0.44) 0%, rgba(7, 19, 31, 0.26) 48%, rgba(7, 19, 31, 0.4) 100%),
          linear-gradient(180deg, rgba(7, 19, 31, 0.08) 0%, rgba(7, 19, 31, 0.22) 100%);
      }

      .catalog-shortcut {
        padding: 28px 24px;
      }

      .custom-capabilities-shell {
        grid-template-columns: 1fr;
      }

      .custom-capabilities-media {
        min-height: 320px;
      }

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

      .catalog-shortcut-field-wide {
        grid-column: span 2;
      }

      .precision-feature {
        padding: 96px 24px;
      }

      .precision-copy {
        max-width: 100%;
      }

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

    .feature-callouts {
      grid-template-columns: 1fr;
    }

    .applications-table-grid {
      grid-template-columns: 1fr;
    }

    .applications-table-cell {
      grid-template-columns: 64px minmax(0, 1fr);
      align-items: start;
    }

    .applications-table-image {
      width: 64px;
      height: 64px;
    }

    .applications-diagram {
      grid-template-columns: 1fr;
    }

    .diagram-stage {
      min-height: 300px;
    }

    .diagram-node {
      width: 48px;
      height: 48px;
    }

    .diagram-node::after {
      inset: 10px;
    }

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

      .about-graphic {
        width: 100%;
      }

      .about-graphic-image {
        width: 100%;
        max-width: 440px;
      }

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

      .product-highlight-card {
        grid-template-rows: 160px minmax(0, 1fr);
      }

      .product-model-panel {
        grid-template-rows: 160px minmax(0, 1fr);
      }

      .tile-card {
        grid-template-columns: 1fr;
      }

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

      .feature-section.two-col .feature-layout {
        grid-template-columns: 1fr;
      }

    }

    @media (min-width: 601px) and (max-width: 900px) {
      :root {
        --hero-inline-padding: clamp(34px, 5.5vw, 48px);
        --footer-inline-padding: clamp(30px, 5vw, 44px);
      }

      .hero {
        padding-top: 188px;
      }
    }

    @media (max-width: 900px) {
    .site-header {
      background: var(--dp-blue);
      padding: 12px 20px;
    }

    .catalog-shortcut {
      padding: 30px 24px;
    }

    .custom-capabilities-section {
      padding: 72px 24px 40px;
    }

    .custom-capabilities-copy {
      padding: 30px 28px 28px;
    }

    .custom-capabilities-copy h2 {
      font-size: 30px;
      max-width: none;
    }

    .catalog-shortcut-intro h2 {
      max-width: none;
    }

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

    .catalog-shortcut-field-wide {
      grid-column: span 3;
    }

    .menu-toggle {
      display: inline-flex;
    }

    .primary-nav {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      background: var(--dp-blue);
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 28px 28px;
      gap: 18px;
      display: none;
      max-height: none;
      overflow: auto;
      transition: none;
      box-shadow: 0 18px 30px rgba(4, 14, 24, 0.28);
    }

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

    body.nav-open .primary-nav {
      display: flex;
      max-height: calc(100vh - 60px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nav {
      flex-wrap: nowrap;
    }

    body.nav-open {
      overflow: hidden;
    }

      .nav-items {
        flex-direction: column;
        gap: 14px;
        width: 100%;
      }

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

      .product-highlight-card {
        grid-template-rows: 150px minmax(0, 1fr);
        min-height: 0;
      }

      .product-highlight-copy {
        padding: 18px;
      }

      .dropdown-inner.products-menu {
        grid-template-columns: 1fr;
      }

      #menu-resources,
      #menu-resources .dropdown-inner.resources-menu {
        width: 100%;
        max-width: none;
      }

      #menu-resources .dropdown-inner.resources-menu {
        grid-template-columns: 1fr;
      }

      .resource-blog-grid {
        grid-template-columns: 1fr;
      }

      .resource-doc-grid {
        grid-template-columns: 1fr;
      }

      .products-branches {
        border-right: 0;
        border-bottom: 1px solid var(--dp-border);
        padding-right: 0;
        padding-bottom: 12px;
        margin-bottom: 12px;
      }

      #menu-resources .resources-menu .products-branches {
        border-right: 0;
        border-bottom: 1px solid var(--dp-border);
        padding-right: 0;
      }

      .products-branch-panel {
        grid-template-columns: 1fr;
      }

      .nav-actions {
        width: 100%;
        justify-content: flex-start;
        padding-top: 10px;
        flex-wrap: wrap;
      }

      .site-search {
        width: min(100%, 360px);
      }

      .site-search-results {
        left: 0;
        right: auto;
        width: min(100%, 360px);
        max-height: 320px;
      }

    .dropdown,
    .dropdown.mega {
      position: static;
      width: 100%;
      transform: none;
      margin-top: 10px;
      box-shadow: none;
      border-radius: 8px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      display: none;
    }

    .dropdown-inner.three-col {
      grid-template-columns: 1fr;
    }

    .has-dropdown.open > .dropdown {
      display: block;
    }

      .focus-grid,
      .tiles {
        grid-template-columns: 1fr;
      }

      .logo img {
        height: 30px;
      }

      .news-ticker {
        padding: 14px 24px;
      }

      .client-logo-card {
        flex-basis: calc((100% - 18px) / 2);
      }

      .certified-inner {
        grid-template-columns: 1fr;
      }

      .news-strip {
        gap: 16px;
        align-items: flex-start;
      }

      .news-strip::before {
        display: none;
      }

      .news-track {
        overflow: hidden;
      }

      .news-marquee {
        animation: ticker 52s linear infinite;
      }

      .news-items.clone {
        display: flex;
      }

      .markets-panel {
        padding: 20px;
      }

      .applications-panel .markets-rail {
        grid-template-columns: 1fr;
      }

      .applications-panel .rail-list {
        display: flex;
        overflow-x: auto;
        border-radius: 8px;
      }

      .applications-panel .rail-item {
        flex: 0 0 auto;
        border-bottom: none;
        border-right: 1px solid var(--dp-border);
      }

      .applications-panel .rail-item:last-child {
        border-right: none;
      }

      .applications-panel .market-panel {
        min-height: 280px;
      }

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

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

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

      .cap-media {
        min-height: 260px;
      }

      .cap-overlay {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 18px;
        max-width: none;
      }

      .cap-actions {
        grid-template-columns: 1fr;
      }

      .cap-action + .cap-action {
        border-left: none;
        border-top: 1px solid var(--dp-border);
      }

      .footer-cta-inner,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .footer-cta-actions {
        justify-content: flex-start;
      }

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

    @media (max-width: 600px) {
      .client-logos-band {
        padding: 28px 24px;
      }

      .client-logo-card {
        flex-basis: 100%;
      }

      .certified-band {
        padding: 56px 24px;
      }

      .certified-copy h2 {
        font-size: 30px;
      }

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

      .catalog-shortcut-section {
        padding-top: 18px;
        padding-bottom: 24px;
      }

      .custom-capabilities-section {
        padding: 64px 24px 32px;
      }

      .custom-capabilities-copy {
        padding: 26px 22px 24px;
      }

      .custom-capabilities-copy h2 {
        font-size: 28px;
      }

      .custom-capabilities-shell {
        gap: 20px;
      }

      .custom-capabilities-media {
        min-height: 260px;
      }

      .catalog-shortcut {
        padding: 24px 20px;
        border-radius: 24px;
      }

      .catalog-shortcut-intro h2 {
        font-size: 28px;
        max-width: none;
      }

      .catalog-shortcut-grid {
        grid-template-columns: 1fr;
      }

      .catalog-shortcut-field-wide {
        grid-column: auto;
      }

      .catalog-shortcut-actions {
        align-items: stretch;
      }

      .catalog-shortcut-actions .btn,
      .catalog-shortcut-link {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

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

      .product-highlight-card {
        grid-template-rows: 150px minmax(0, 1fr);
      }

      .product-model-panel {
        grid-template-rows: 150px minmax(0, 1fr);
      }

      .product-highlight-copy {
        padding: 20px 20px 18px;
      }

      .product-highlight-media {
        min-height: 170px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      body.scroll-animations-ready .catalog-shortcut-section,
      body.scroll-animations-ready .focus-areas,
      body.scroll-animations-ready .precision-feature,
      body.scroll-animations-ready .markets,
      body.scroll-animations-ready .market-intro,
      body.scroll-animations-ready .market-products,
      body.scroll-animations-ready .medical-market-layout,
      body.scroll-animations-ready .site-footer {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .news-marquee {
        animation: none;
      }
    }
