/* Public CMS additions loaded after the original premium styles. */
.nav-label-mobile {
  display: none;
}

/* Secure bilingual live-chat widget. All selectors are module-scoped. */
.site-chatbot {
  --chatbot-blue: #075fd8;
  --chatbot-ink: #09233f;
  position: fixed;
  z-index: 110;
  right: clamp(15px, 2.6vw, 36px);
  bottom: clamp(78px, 7vw, 104px);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  font-family: inherit;
}

.chatbot-launcher {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  width: 54px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  background: linear-gradient(135deg, #086ce6, #064cae);
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(4, 70, 159, .31), inset 0 1px rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  background: linear-gradient(135deg, #ffd84a, #ffbd20);
  color: var(--chatbot-ink);
  box-shadow: 0 20px 48px rgba(103, 76, 0, .25);
  transform: translateY(-3px);
}

.chatbot-launcher-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.chatbot-launcher-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chatbot-panel {
  display: flex;
  overflow: hidden;
  width: min(390px, calc(100vw - 30px));
  height: min(610px, calc(100vh - 155px));
  min-height: 430px;
  flex-direction: column;
  border: 1px solid rgba(22, 79, 139, .2);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 75px rgba(5, 35, 75, .28), 0 0 0 1px rgba(255, 255, 255, .8);
  transform-origin: right bottom;
  animation: chatbot-panel-in .24s ease both;
}

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

.chatbot-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  background: linear-gradient(135deg, #082d5d, #075fd8);
  color: #fff;
}

.chatbot-agent-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 15px;
  background: linear-gradient(145deg, #ffe57d, #ffc627);
  color: #09233f;
  font-size: 13px;
  font-weight: 950;
  box-shadow: inset 0 1px #fff;
}

.chatbot-agent-copy {
  min-width: 0;
}

.chatbot-agent-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.chatbot-header strong {
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chatbot-version-badge {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .45px;
  line-height: 1.2;
}

.chatbot-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font: inherit;
  font-size: 25px;
  cursor: pointer;
}

.chatbot-close:hover,
.chatbot-close:focus-visible {
  background: rgba(255, 255, 255, .22);
}

.chatbot-messages {
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 18px 15px;
  background:
    radial-gradient(circle at 90% 5%, rgba(66, 153, 245, .11), transparent 32%),
    linear-gradient(180deg, #f8fbff, #f2f7fc);
  overscroll-behavior: contain;
}

.chatbot-message {
  width: fit-content;
  max-width: 86%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.chatbot-message.is-ready {
  opacity: 1;
  transform: none;
}

.chatbot-message small {
  display: block;
  margin: 0 7px 4px;
  color: #58718c;
  font-size: 10px;
  font-weight: 800;
}

.chatbot-message p {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #dce7f1;
  border-radius: 7px 17px 17px 17px;
  background: #fff;
  color: #17324e;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  box-shadow: 0 6px 18px rgba(10, 56, 105, .07);
}

.chatbot-message-visitor {
  align-self: flex-end;
}

.chatbot-message-visitor small {
  text-align: right;
}

.chatbot-message-visitor p {
  border-color: #075fd8;
  border-radius: 17px 7px 17px 17px;
  background: linear-gradient(135deg, #0870ec, #0757c5);
  color: #fff;
}

.chatbot-message-admin p {
  border-color: #f0c83c;
  background: #fff9dd;
}

.chatbot-message-has-action {
  max-width: 92%;
}

.chatbot-whatsapp-action {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #b9e6cb;
  border-radius: 13px;
  background: #f0fff6;
  box-shadow: 0 7px 20px rgba(10, 115, 62, .1);
}

.chatbot-whatsapp-number {
  color: #17623c;
  font-size: 11px;
  font-weight: 800;
}

.chatbot-whatsapp-action a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #20bd68, #0b8e4d);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 7px 18px rgba(11, 142, 77, .22);
}

.chatbot-whatsapp-action a:hover,
.chatbot-whatsapp-action a:focus-visible {
  background: #087a42;
  color: #fff;
}

.chatbot-quick-actions {
  display: flex;
  overflow-x: auto;
  flex: 0 0 auto;
  gap: 7px;
  padding: 9px 12px 2px;
  background: #fff;
  scrollbar-width: thin;
}

.chatbot-quick-actions[hidden] {
  display: none;
}

.chatbot-quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #bdd6ee;
  border-radius: 999px;
  background: #f5faff;
  color: #0752a9;
  font: inherit;
  font-size: 10.5px;
  font-weight: 850;
  cursor: pointer;
}

.chatbot-quick-actions button:hover,
.chatbot-quick-actions button:focus-visible {
  border-color: #075fd8;
  background: #eaf4ff;
}

.chatbot-status {
  margin: 0;
  padding: 8px 15px 0;
  background: #fff;
  color: #54708b;
  font-size: 11px;
  line-height: 1.4;
}

.chatbot-status[data-kind="error"] {
  color: #b42318;
}

.chatbot-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: end;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
}

.chatbot-form textarea {
  width: 100%;
  min-height: 46px;
  max-height: 108px;
  resize: none;
  padding: 12px 13px;
  border: 1px solid #cbd9e7;
  border-radius: 14px;
  outline: 0;
  background: #f8fbfe;
  color: #112f4d;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
}

.chatbot-form textarea:focus {
  border-color: #0870ec;
  box-shadow: 0 0 0 3px rgba(8, 112, 236, .12);
}

.chatbot-form button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #0870ec, #074eb1);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 83, 185, .25);
}

.chatbot-form button span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.chatbot-form button b {
  font-size: 21px;
}

.chatbot-form button:disabled {
  opacity: .55;
  cursor: wait;
}

.chatbot-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.chatbot-privacy {
  margin: 0;
  padding: 0 14px 11px;
  background: #fff;
  color: #71849a;
  font-size: 9.5px;
  line-height: 1.35;
  text-align: center;
}

@keyframes chatbot-panel-in {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 520px) {
  .site-chatbot {
    right: 12px;
    bottom: 72px;
  }

  .chatbot-launcher {
    width: 54px;
    padding: 7px;
  }

  .chatbot-panel {
    position: fixed;
    right: 10px;
    bottom: 137px;
    left: 10px;
    width: auto;
    height: min(590px, calc(100dvh - 158px));
    min-height: 360px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chatbot-panel,
  .chatbot-message {
    animation: none;
    transition: none;
  }
}

@media (min-width: 861px) {
  .hero-section .hero-slide,
  .hero-section .hero-content {
    min-height: clamp(400px, 46vh, 460px);
  }

  .hero-section .hero-content {
    padding: 22px 0 48px;
  }

  .hero-section .hero-copy {
    width: min(560px, 100%);
    padding: 4px 0;
  }

  .hero-section .eyebrow {
    margin-bottom: 7px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero-section .hero-copy .hero-model-title {
    margin-bottom: 5px;
    font-size: clamp(50px, 5vw, 68px);
    line-height: .92;
  }

  .hero-section .outline-chip {
    padding: 5px 8px;
    border-width: 2px;
    border-radius: 9px;
    font-size: 24px;
  }

  .hero-section .hero-copy .hero-tagline {
    margin-bottom: 8px;
    font-size: clamp(21px, 2.1vw, 27px);
    line-height: 1.06;
  }

  .hero-section .hero-text {
    margin-bottom: 10px;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.4;
  }

  .hero-section .detail-grid {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-section .detail-grid div {
    padding: 7px 10px;
    border-radius: 10px;
  }

  .hero-section .detail-grid span {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .hero-section .detail-grid strong {
    font-size: 12px;
  }

  .hero-section .hero-actions {
    gap: 9px;
  }

  .hero-section .hero-actions .btn {
    padding: 10px 17px;
    border-radius: 11px;
    font-size: 14px;
  }
}

.cms-subsection-title {
  margin-top: clamp(48px, 6vw, 72px);
}

.cms-rich-text {
  color: #d8e7f9;
  line-height: 1.7;
}

.cms-rich-text > :first-child {
  margin-top: 0;
}

.cms-rich-text > :last-child {
  margin-bottom: 0;
}

.cms-public-flash {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(117, 207, 255, .48);
  border-radius: 14px;
  background: rgba(8, 63, 119, .9);
  color: #fff;
}

.cms-public-flash-error {
  border-color: rgba(255, 150, 150, .55);
  background: rgba(116, 25, 38, .92);
}

.cms-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.info-card > .cms-rich-text {
  flex: 1;
  padding: 14px 16px 18px;
  font-size: 14px;
}

.faq-panel details .cms-rich-text {
  margin-top: 12px;
}

.faq-panel details .cms-rich-text p {
  margin: 0;
}

.products-page-hero,
.cms-order-hero {
  min-height: clamp(520px, 68vh, 660px);
}

.products-catalogue {
  padding-top: clamp(62px, 7vw, 90px);
  padding-bottom: clamp(68px, 8vw, 98px);
}

.cms-products-grid {
  margin-bottom: 0;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.55vw, 20px);
}

.cms-empty-state {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

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

.cms-inline-order-form {
  display: flex;
  min-width: 0;
  margin: 0;
}

.cms-inline-order-form .btn {
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  border: 0;
  font: inherit;
}

.cms-commerce-actions .btn {
  min-height: 42px;
  padding: 10px 5px;
  font-size: 11.5px;
  line-height: 1.16;
  white-space: normal;
}

.btn-whatsapp {
  border-color: rgba(115, 255, 179, .5) !important;
  background: linear-gradient(135deg, #20bd68, #087c43);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 151, 79, .28);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  border-color: #a5ffd0 !important;
  background: #fff;
  color: #075b34;
  filter: none;
  text-shadow: none;
  box-shadow: 0 12px 30px rgba(44, 210, 123, .32);
}

.cms-product-hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  width: min(100%, 590px);
}

.cms-product-hero-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  text-align: center;
}

.cms-product-order-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(127, 188, 255, .32);
  border-radius: 16px;
  background: rgba(41, 116, 204, .1);
}

.cms-product-order-box h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 21px;
}

.cms-product-order-box > p {
  margin: 0 0 15px;
  color: #cfe4ff;
  font-size: 13px;
  line-height: 1.55;
}

.cms-order-choice-actions,
.cms-final-order-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.cms-order-choice-actions .btn,
.cms-final-order-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  text-align: center;
}

.cms-final-order-actions {
  width: min(410px, 100%);
}

.utility-grid.is-single,
.cms-bottom-grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

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

.cms-section-hero {
  min-height: clamp(430px, 56vh, 540px);
}

.cms-section-content {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.cms-service-grid {
  align-items: stretch;
}

.cms-service-card {
  display: flex;
  flex-direction: column;
}

.cms-service-card .cms-rich-text {
  flex: 0 0 auto;
  padding: 14px 16px 6px;
  font-size: 14px;
}

.cms-service-card .cms-rich-text + ul {
  padding-top: 6px;
}

.cms-section-process {
  padding-top: clamp(34px, 5vw, 56px);
}

.cms-section-cta {
  padding: clamp(38px, 5vw, 60px) 0 clamp(62px, 7vw, 88px);
}

.cms-about-grid,
.cms-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  align-items: stretch;
}

.cms-contact-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1101px) {
  .cms-footer-grid-1 {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (min-width: 861px) and (max-width: 1100px) {
  .cms-footer-grid-1 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cms-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cms-about-copy h2,
.cms-contact-details h2,
.cms-contact-form-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 4vw, 40px);
  line-height: 1.08;
}

.cms-inline-cta {
  align-self: flex-start;
  margin-top: 22px;
}

.cms-section-use-cases {
  padding: clamp(58px, 7vw, 88px) 0;
}

.cms-use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cms-use-case-grid .panel {
  min-width: 0;
  text-align: center;
}

.cms-use-case-grid span {
  display: block;
  margin-bottom: 10px;
  color: #a9d2ff;
  font-size: 42px;
}

.cms-about-features {
  margin-top: clamp(28px, 4vw, 44px);
}

.cms-faq-container {
  max-width: 940px;
}

.cms-faq-list {
  padding: clamp(18px, 3vw, 30px);
}

.cms-contact-details,
.cms-contact-form-panel {
  padding: clamp(22px, 3vw, 32px);
}

.cms-contact-details > p {
  color: #d6e8ff;
  line-height: 1.7;
}

.cms-contact-details .btn {
  margin-top: 8px;
}

.cms-order-section {
  padding-bottom: clamp(70px, 8vw, 100px);
}

.cms-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.cms-order-panel h2 {
  margin-top: 0;
  font-size: clamp(29px, 4vw, 39px);
}

.cms-order-form {
  margin-top: 24px;
}

.cms-field {
  display: grid;
  gap: 7px;
}

.cms-field label {
  color: #eaf4ff;
  font-size: 13px;
  font-weight: 800;
}

.cms-field label span,
.cms-field-error {
  color: #ffb7b7;
}

.cms-field-error {
  font-size: 12px;
  line-height: 1.45;
}

.cms-order-form [aria-invalid="true"] {
  border-color: #ff8d8d;
  box-shadow: 0 0 0 4px rgba(255, 92, 92, .12);
}

.cms-alert {
  margin: 18px 0;
  padding: 15px 17px;
  border: 1px solid rgba(255, 153, 153, .55);
  border-radius: 14px;
  background: rgba(109, 17, 30, .42);
  color: #ffe9e9;
}

.cms-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.cms-form-note {
  margin: 2px 0 0;
  color: #aebfd4;
  font-size: 12px;
  line-height: 1.55;
}

.cms-enquiry-success {
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(115, 255, 179, .42);
  border-radius: 14px;
  background: rgba(8, 101, 59, .28);
  color: #e8fff3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.cms-enquiry-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.cms-enquiry-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 16px;
  white-space: normal;
  line-height: 1.3;
}

.cms-enquiry-actions .btn:focus-visible {
  outline: 3px solid rgba(159, 216, 255, .72);
  outline-offset: 3px;
}

.cms-order-product {
  position: sticky;
  top: 102px;
}

.cms-order-product img {
  height: auto;
  aspect-ratio: 1672 / 941;
}

.cms-order-product-copy {
  padding: 20px;
}

.cms-order-product-copy h2 {
  margin: 0 0 8px;
  font-size: 27px;
}

.cms-order-product-copy p {
  padding: 0;
}

@media (max-width: 860px) {
  .hero-section .hero-slide,
  .hero-section .hero-content {
    min-height: auto;
  }

  .hero-section .hero-content {
    padding: 30px 0 60px;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .hero-section .hero-copy {
    padding: 8px 0;
  }

  .hero-section .hero-copy .hero-model-title {
    font-size: clamp(44px, 10vw, 60px);
  }

  .hero-section .hero-copy .hero-tagline {
    font-size: clamp(22px, 5vw, 29px);
  }

  .hero-section .hero-text {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-section .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 14px;
  }

  .hero-section .detail-grid div {
    padding: 9px 11px;
  }

  .cms-order-grid {
    grid-template-columns: 1fr;
  }

  .cms-final-order-actions {
    width: min(100%, 520px);
  }

  .cms-section-hero {
    min-height: 480px;
  }

  .cms-about-grid,
  .cms-contact-grid,
  .cms-bottom-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .cms-order-product {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .hero-section .hero-content {
    padding: 24px 0 54px;
  }

  .hero-section .hero-copy .hero-model-title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-section .hero-copy .hero-tagline {
    font-size: clamp(20px, 6.2vw, 25px);
  }

  .hero-section .hero-text {
    font-size: 15px;
  }

  .hero-section .detail-grid span {
    font-size: 9px;
  }

  .hero-section .detail-grid strong {
    font-size: 12px;
  }

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

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

  .perfect-grid > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .cms-order-panel,
  .cms-order-product-copy {
    padding: 19px;
  }

  .cms-product-hero-actions,
  .cms-order-choice-actions,
  .cms-final-order-actions,
  .cms-enquiry-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cms-product-order-box {
    padding: 16px;
  }

  .cms-section-hero {
    min-height: 440px;
  }

  .cms-use-case-grid > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cms-order-product {
    scroll-behavior: auto;
  }
}

/* Clean white premium palette: colour-only overrides keep the established layout. */
:root {
  --site-bg: #ffffff;
  --site-deep: #f4f8fd;
  --site-surface: #ffffff;
  --site-surface-2: #eef5fc;
  --site-blue: #0969da;
  --site-blue-deep: #064da8;
  --site-cyan: #0879b5;
  --site-yellow: #ffd84a;
  --site-gold: #e2a600;
  --site-violet: #7863dc;
  --site-green: #16845d;
  --site-text: #13243a;
  --site-muted: #52657d;
  --site-ink: #071a31;
  --site-line: rgba(9, 105, 218, .2);
}

body,
.product-page {
  background: var(--site-bg);
  color: var(--site-text);
}

body::after {
  display: none;
}

::selection {
  background: var(--site-yellow);
  color: var(--site-ink);
}

/* Image-backed hero areas intentionally retain light copy. */
.hero-section,
.hero-slider,
.hero-slide,
.hero-copy,
.product-page-hero,
.product-hero-copy,
.hero-copy .hero-model-title,
.hero-copy .hero-tagline,
.hero-text,
.detail-grid strong,
.product-hero-copy h1,
.product-hero-copy > p:not(.eyebrow) {
  color: #fff;
}

.hero-slide::after {
  background:
    radial-gradient(circle at 18% 38%, rgba(47, 155, 255, .18), transparent 35%),
    radial-gradient(circle at 82% 18%, rgba(255, 216, 74, .11), transparent 28%),
    linear-gradient(90deg, rgba(1, 7, 17, .46), rgba(2, 11, 25, .18) 42%, transparent 68%);
}

.product-page-hero::after {
  background:
    radial-gradient(circle at 22% 42%, rgba(47, 155, 255, .16), transparent 38%),
    radial-gradient(circle at 84% 18%, rgba(255, 216, 74, .1), transparent 27%),
    linear-gradient(180deg, transparent 68%, var(--site-bg));
}

.product-page-hero::before {
  background-position: var(--product-position, center);
}

.product-hero-copy h2,
.product-breadcrumb {
  color: #bce6ff;
}

.product-breadcrumb:hover,
.product-breadcrumb:focus-visible {
  color: #fff;
}

.hero-copy .hero-tagline span,
.hero-section .eyebrow,
.product-page-hero .eyebrow {
  color: var(--site-yellow);
}

.eyebrow {
  border-color: rgba(255, 216, 74, .5);
  background: rgba(7, 26, 49, .68);
}

.eyebrow::before {
  background: var(--site-yellow);
  box-shadow: 0 0 16px rgba(255, 216, 74, .78);
}

.outline-chip {
  border-color: var(--site-yellow);
  color: #fff3a8;
  box-shadow: 0 0 22px rgba(255, 216, 74, .18);
}

.detail-grid div:nth-child(even) {
  border-color: rgba(255, 216, 74, .44);
  background: rgba(50, 43, 23, .58);
}

.detail-grid div:nth-child(even) span {
  color: #ffe57d;
}

/* White page and section surfaces. */
.cards-section,
.product-detail-section,
.utility-section,
.bottom-sections,
.product-order-section {
  background: var(--site-bg);
}

.coverage-section,
.details-banner {
  background: var(--site-deep);
}

.info-card,
.utility-card,
.panel,
.banner-inner,
.product-info-panel,
.product-order-inner,
.feature-bar {
  border-color: var(--site-line);
  background: var(--site-surface);
  color: var(--site-text);
  box-shadow: 0 18px 48px rgba(18, 55, 93, .11), inset 0 1px rgba(255, 255, 255, .9);
}

.product-visual-card {
  border-color: var(--site-line);
  background: var(--site-surface-2);
  box-shadow: 0 18px 48px rgba(18, 55, 93, .11);
}

.info-card {
  --card-accent: #36a8e8;
  --card-accent-deep: var(--site-blue-deep);
  --card-accent-ink: #fff;
  box-shadow:
    0 18px 48px rgba(18, 55, 93, .11),
    inset 0 3px var(--card-accent);
}

.info-card:nth-child(5n + 2) {
  --card-accent: var(--site-yellow);
  --card-accent-deep: #916600;
  --card-accent-ink: var(--site-ink);
}

.info-card:nth-child(5n + 3) {
  --card-accent: var(--site-violet);
  --card-accent-deep: #5140a8;
  --card-accent-ink: #fff;
}

.info-card:nth-child(5n + 4) {
  --card-accent: #38b887;
  --card-accent-deep: #08704a;
  --card-accent-ink: #fff;
}

.info-card:nth-child(5n) {
  --card-accent: #f58f72;
  --card-accent-deep: #a3354b;
  --card-accent-ink: #fff;
}

.info-card:hover,
.info-card:focus-within,
.coverage-card:hover,
.coverage-card:focus-within {
  border-color: rgba(9, 105, 218, .42);
  box-shadow: 0 24px 56px rgba(18, 55, 93, .16), inset 0 3px var(--card-accent, #36a8e8);
}

.model-card::before,
.accessory-card::before {
  border-color: rgba(255, 255, 255, .72);
  background: linear-gradient(145deg, var(--card-accent), var(--card-accent-deep));
  color: var(--card-accent-ink);
  text-shadow: none;
}

/* Product photography must remain unobstructed: model names already render
   as accessible card headings, so the decorative badge is intentionally off. */
.model-card::before {
  content: none;
  display: none;
}

.card-label {
  border-bottom-color: rgba(9, 105, 218, .14);
  background: linear-gradient(90deg, rgba(9, 105, 218, .09), rgba(255, 216, 74, .08), transparent);
  color: var(--card-accent-deep, var(--site-blue-deep));
}

.model-actions {
  border-top-color: rgba(9, 105, 218, .13);
}

/* Dark, readable typography on light surfaces. */
.section-title h2,
.section-title h3,
.product-detail-section .section-title h2 {
  background: linear-gradient(100deg, var(--site-ink) 8%, var(--site-blue) 48%, var(--site-blue-deep) 74%, var(--site-ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title p,
.section-title.light p,
.cms-rich-text,
.info-card p,
.info-card ul,
.cms-contact-details > p,
.faq-panel p,
.banner-copy p,
.product-description,
.product-order-inner p:not(.product-section-kicker),
.cms-product-order-box > p {
  color: var(--site-muted);
}

.cms-rich-text a,
.contact-list a,
.product-source-link {
  color: var(--site-blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.product-section-kicker {
  color: var(--site-blue-deep) !important;
}

.utility-card h2,
.utility-card h3,
.panel h2,
.panel h3,
.banner-copy h2,
.banner-copy h3,
.product-info-panel h2,
.product-included h3,
.product-order-inner h2,
.perfect-grid b,
.feature-item strong {
  color: var(--site-text);
}

.feature-item {
  border-color: rgba(9, 105, 218, .13);
}

.feature-item small,
.contact-list li {
  color: var(--site-muted);
}

.feature-item:hover,
.perfect-grid div:hover {
  background: rgba(9, 105, 218, .055);
}

.feature-item:nth-child(odd) > span,
.perfect-grid div:nth-child(odd) > span {
  background: linear-gradient(145deg, var(--site-blue), var(--site-blue-deep));
  color: #fff;
}

.feature-item:nth-child(even) > span,
.perfect-grid div:nth-child(even) > span,
.price-list span,
.product-badge {
  border-color: #f2c426;
  background: linear-gradient(145deg, var(--site-yellow), var(--site-gold));
  color: var(--site-ink);
  text-shadow: none;
}

.price-list div,
.product-spec-grid div {
  border-color: rgba(9, 105, 218, .15);
  background: var(--site-surface-2);
  color: var(--site-text);
  box-shadow: none;
}

.price-list div:hover,
.product-spec-grid div:hover {
  border-color: rgba(9, 105, 218, .38);
  background: #e5f1ff;
}

.product-spec-grid span {
  color: var(--site-blue-deep);
}

.product-spec-grid strong,
.product-included li {
  color: var(--site-text);
}

.cms-product-order-box {
  border-color: rgba(9, 105, 218, .24);
  background: linear-gradient(135deg, rgba(9, 105, 218, .07), rgba(255, 216, 74, .12));
}

.cms-product-order-box h3 {
  color: var(--site-blue-deep);
}

.product-availability {
  border-left-color: var(--site-blue);
  background: #eaf4ff;
  color: #28425f;
}

/* Light FAQ and form controls. */
.faq-panel details {
  border-color: rgba(9, 105, 218, .17);
  background: #f8fbff;
}

.faq-panel details[open],
.faq-panel details:focus-within {
  border-color: rgba(9, 105, 218, .42);
  background: #eef6ff;
}

.faq-panel summary {
  color: var(--site-text);
}

.faq-panel details .cms-rich-text {
  color: var(--site-muted);
}

.cms-field label {
  color: var(--site-text);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(9, 105, 218, .24);
  background: #fff;
  color: var(--site-text);
  box-shadow: inset 0 1px 2px rgba(18, 55, 93, .05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6c7d90;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--site-blue);
  background: #fff;
  color: var(--site-text);
  box-shadow: 0 0 0 4px rgba(9, 105, 218, .12);
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--site-text);
  box-shadow: 0 0 0 1000px #fff inset;
}

.cms-field label span,
.cms-field-error {
  color: #a8202d;
}

.cms-alert {
  border-color: #e1a0a6;
  background: #fff1f2;
  color: #7a1721;
}

.cms-enquiry-success {
  border-color: #8bc9aa;
  background: #ebfff4;
  color: #075533;
}

.cms-form-note {
  color: var(--site-muted);
}

/* Buttons retain blue/yellow highlights with accessible text contrast. */
.btn-primary {
  border-color: var(--site-blue);
  background: linear-gradient(135deg, var(--site-blue), var(--site-blue-deep));
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: #d8ac00;
  background: var(--site-yellow);
  color: var(--site-ink);
}

.btn-secondary,
.view-btn {
  border-color: rgba(9, 105, 218, .38);
  background: #edf6ff;
  color: var(--site-blue-deep);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.view-btn:hover,
.view-btn:focus-visible {
  border-color: #d8ac00;
  background: var(--site-yellow);
  color: var(--site-ink);
}

.hero-section .btn-secondary,
.hero-section .view-btn,
.product-page-hero .btn-secondary,
.product-page-hero .view-btn {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(5, 25, 52, .62);
  color: #fff;
}

.hero-section .btn-secondary:hover,
.hero-section .btn-secondary:focus-visible,
.hero-section .view-btn:hover,
.hero-section .view-btn:focus-visible,
.product-page-hero .btn-secondary:hover,
.product-page-hero .btn-secondary:focus-visible,
.product-page-hero .view-btn:hover,
.product-page-hero .view-btn:focus-visible {
  border-color: #d8ac00;
  background: var(--site-yellow);
  color: var(--site-ink);
}

/* Image cards keep white text over their dark overlays. */
.coverage-card h3,
.coverage-card h4,
.product-visual-card figcaption,
.cta-card,
.cta-card h2,
.cta-card h3,
.cta-copy p {
  color: #fff;
}

/* White footer with dark, readable navigation and status text. */
.site-footer {
  border-top-color: rgba(9, 105, 218, .18);
  background: #fff;
  color: var(--site-text);
}

.footer-grid h4 {
  color: var(--site-blue-deep);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: #445b74;
}

.footer-disclaimer {
  color: #607187 !important;
}

.footer-bottom {
  border-top-color: rgba(9, 105, 218, .14);
  background: var(--site-deep);
}

.footer-mini {
  color: #53677f;
}

.contact-list a:hover,
.contact-list a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible,
.product-source-link:hover,
.product-source-link:focus-visible {
  color: var(--site-blue);
}

.section-title.center::after,
.topbar::after,
.site-footer::before {
  background: linear-gradient(90deg, transparent, var(--site-blue), var(--site-yellow), transparent);
}

.nav a.is-active {
  background: #fff3ad;
  color: var(--site-ink);
}

:where(a, button, input, textarea, summary):focus-visible {
  outline-color: var(--site-blue-deep);
}

.hero-section :where(a, button):focus-visible,
.product-page-hero :where(a, button):focus-visible {
  outline-color: var(--site-yellow);
}

.topbar :where(a, button):focus-visible {
  outline-color: var(--site-blue-deep);
}

@media (forced-colors: active) {
  .section-title h2,
  .section-title h3,
  .product-detail-section .section-title h2 {
    background: none;
    color: CanvasText;
  }
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .section-title h2,
  .section-title h3,
  .product-detail-section .section-title h2 {
    background: none;
    color: var(--site-text);
  }
}

/* Standard hero navigation and richer model photography. */
.hero-slider {
  touch-action: pan-y pinch-zoom;
}

.hero-slider::before {
  display: none;
}

.hero-section .hero-slide {
  --hero-glow-primary: rgba(47, 155, 255, .26);
  --hero-glow-secondary: rgba(255, 216, 74, .14);
}

.hero-section .hero-slide:nth-of-type(5n + 2) {
  --hero-glow-primary: rgba(255, 190, 60, .25);
  --hero-glow-secondary: rgba(245, 111, 98, .16);
}

.hero-section .hero-slide:nth-of-type(5n + 3) {
  --hero-glow-primary: rgba(126, 99, 220, .25);
  --hero-glow-secondary: rgba(35, 196, 224, .18);
}

.hero-section .hero-slide:nth-of-type(5n + 4) {
  --hero-glow-primary: rgba(56, 184, 135, .23);
  --hero-glow-secondary: rgba(255, 216, 74, .15);
}

.hero-section .hero-slide:nth-of-type(5n) {
  --hero-glow-primary: rgba(47, 155, 255, .25);
  --hero-glow-secondary: rgba(126, 99, 220, .2);
}

.hero-section .hero-slide::before {
  filter: saturate(1.2) contrast(1.05) brightness(1.06);
}

.hero-section .hero-slide::after {
  background:
    radial-gradient(circle at 72% 42%, var(--hero-glow-primary), transparent 34%),
    radial-gradient(circle at 88% 16%, var(--hero-glow-secondary), transparent 27%),
    linear-gradient(90deg, rgba(1, 7, 17, .5) 0%, rgba(2, 11, 25, .22) 38%, transparent 66%);
}

.hero-direction {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 15px;
  background: rgba(5, 25, 52, .72);
  color: #fff;
  box-shadow: 0 10px 26px rgba(2, 10, 23, .26), inset 0 1px rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, color .24s ease, box-shadow .24s ease;
}

.hero-previous {
  left: clamp(8px, 1.6vw, 24px);
}

.hero-next {
  right: clamp(8px, 1.6vw, 24px);
}

.hero-direction span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-direction:hover,
.hero-direction:focus-visible {
  border-color: #d8ac00;
  background: var(--site-yellow);
  color: var(--site-ink);
  box-shadow: 0 8px 20px rgba(255, 216, 74, .28);
  transform: translateY(-50%) scale(1.06);
}

.hero-direction:active {
  transform: translateY(-50%) scale(.96);
}

.hero-slider:focus-visible {
  outline: 3px solid var(--site-yellow);
  outline-offset: -3px;
}

/* Full hardware kits stay visible inside every product card. */
.info-card .model-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  object-position: center;
  border-top: 2px solid var(--card-accent, var(--site-blue));
  border-bottom: 2px solid var(--card-accent, var(--site-blue));
  background:
    radial-gradient(circle at 74% 34%, rgba(47, 155, 255, .24), transparent 34%),
    linear-gradient(145deg, #061426, #0b2b55);
  filter: saturate(1.14) contrast(1.06) brightness(1.04);
  box-shadow: inset 0 0 28px rgba(47, 155, 255, .12);
}

.info-card:hover .model-card-image,
.info-card:focus-within .model-card-image {
  filter: saturate(1.26) contrast(1.08) brightness(1.08);
}

.product-visual-card {
  border-color: rgba(9, 105, 218, .46);
  box-shadow:
    0 22px 54px rgba(18, 55, 93, .16),
    0 0 0 4px rgba(9, 105, 218, .07),
    0 0 38px rgba(255, 216, 74, .11);
}

.product-visual-card .product-detail-image {
  object-position: var(--product-position, center);
  filter: saturate(1.12) contrast(1.05) brightness(1.04);
}

.product-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.product-visual-card:hover .product-detail-image,
.product-visual-card:focus-within .product-detail-image {
  filter: saturate(1.22) contrast(1.07) brightness(1.07);
}

/* Multiple admin-managed Business Connectivity cards retain the established premium card design. */
.corporate-connection-list {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

@media (max-width: 560px) {
  .hero-direction {
    top: 52%;
    width: 40px;
    height: 44px;
    border-radius: 13px;
  }

  .hero-direction span {
    font-size: 27px;
  }
}

@media (forced-colors: active) {
  .hero-direction,
  .info-card .model-card-image,
  .product-visual-card {
    border-color: CanvasText;
    box-shadow: none;
  }

  .hero-direction {
    background: Canvas;
    color: CanvasText;
  }
}
