/*
Theme Name: Motus Tema
Theme URI: https://example.com
Author: Jurica Bednjanec
Description: Custom WordPress tema za MOTUS Mobility.
Version: 1.2.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: motus-theme
*/

:root {
  --navy: #031d30;
  --navy-2: #062b46;
  --navy-3: #545962;
  --navy-4: #c5b9a3;
  --navy-soft: #0c3552;
  --white: #f2f2f4;
  --offwhite: #f2f2f4;
  --panel: #cfd5dc;
  --text: #112638;
  --muted: #5f6772;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: #b9bcc1;
  --container: 1440px;
  --content: 1180px;
  --shadow: 0 20px 50px rgba(5, 18, 30, 0.08);
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  opacity: 0.95;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.text-light {
  color: rgba(255, 255, 255, 0.88);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-light {
  background: #f2f2f4;
  color: #102942;
  border-color: #f2f2f4;
}
.btn-outline-dark {
  color: #102942;
  border-color: #102942;
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.fullw{
	width:100% !important;
}

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
.site-branding {
  justify-self: start;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.site-branding a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}
.custom-logo-link img,
.site-branding img {
  max-height: 34px;
  width: auto;
}
.brand-mark {
  width: 34px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--white);
  transform: skewX(-28deg);
}
.brand-mark::before {
  left: 0;
  top: 2px;
  width: 9px;
  height: 18px;
}
.brand-mark::after {
  left: 11px;
  top: 2px;
  width: 18px;
  height: 6px;
  box-shadow: 0 8px 0 0 var(--white);
}
.site-title-text {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-navigation {
  justify-self: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.main-navigation ul,
.footer-menu ul,
.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.main-navigation a {
  color: #f2f2f4 ;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--white);
}
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 3;
}
.header-contact {
  padding: 10px 14px;
  font-size: 10px;
  position: relative;
  z-index: 4;
}
.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.mobile-panel {
  display: none;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 0 0 16px;
}
.mobile-panel.is-open {
  display: block;
}
.mobile-panel ul {
  display: grid;
  gap: 12px;
}
.mobile-panel a {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Homepage */
.home-reference {
  background: var(--navy);
  color: var(--white);
}
.home-grid {
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: calc(100vh - 74px);
}
.home-left-top {
  background: var(--navy);
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.home-left-top .left-copy {
  max-width: 210px;
  margin-left: clamp(20px, 4vw, 56px);
  font-size: 12px;
  line-height: 1.35;
  color: #f2f2f4;
}
.home-right-top {
  position: relative;
  padding: clamp(34px, 5vw, 72px);
  padding-top: clamp(82px, 10vw, 120px);
  background: linear-gradient(180deg, rgba(6, 43, 70, 0.98) 0%, rgba(3, 29, 48, 1) 100%);
  overflow: hidden;
  isolation: isolate;
}
.home-right-top::before,
.home-right-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-right-top::before {
   background: url(assets/img/motus-symbol-white.svg) center / clamp(420px, 58vw, 860px) auto no-repeat;
    opacity: 0.08;
    transform: scale(1.7);
    transform-origin: center;
}
.home-right-top::after {
  background:
    linear-gradient(90deg, rgba(6, 43, 70, 0.08) 0%, rgba(6, 43, 70, 0.02) 45%, rgba(3, 29, 48, 0) 100%),
    radial-gradient(circle at 14% 84%, rgba(197,185,163,0.08), transparent 24%);
}
.home-grid-logo {
  display: none;
}
.home-right-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-top: 0;
}
.home-right-inner .eyebrow {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.95);
}
.home-right-inner h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.home-left-bottom {
  background: var(--offwhite);
  color: #12283c;
  display: flex;
  align-items: center;
}
.home-left-bottom .left-feature {
  margin-left: clamp(20px, 4vw, 56px);
  max-width: 320px;
}
.home-left-bottom .label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.home-left-bottom h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.home-image-panel {
  min-height: 300px;
  background: var(--panel) url("assets/img/home-car-crop.png") center center / cover no-repeat;
}

/* Shared sections */
.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  height: 100%;
}
.card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #dfe7ef, #f7f9fc);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content {
  padding: 28px;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}
.card p {
  margin: 0 0 20px;
  color: var(--muted);
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.info-list li {
  padding-left: 18px;
  position: relative;
}
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: var(--navy);
}
.cta-banner {
  padding: 40px;
  background: linear-gradient(180deg, #0a3553 0%, #062b46 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.info-band {
  background: var(--navy);
  color: var(--white);
}
.info-band .section-heading p,
.info-band .feature-copy p,
.info-band .metric-value,
.info-band .metric-label,
.info-band .feature-panel p {
  color: var(--white);
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
}
.feature-copy {
  background: var(--offwhite);
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy.dark {
  background: linear-gradient(180deg, #0a3553 0%, #062b46 100%);
  color: var(--white);
}
.feature-copy h2,
.feature-copy h3 {
  margin: 0 0 16px;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.feature-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.feature-copy h3 {
  font-size: clamp(30px, 3vw, 40px);
}
.feature-visual {
  min-height: 340px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.05) 10%,
      transparent 10%,
      transparent 28%,
      rgba(255, 255, 255, 0.04) 28%,
      rgba(255, 255, 255, 0.04) 42%,
      transparent 42%
    ),
    linear-gradient(180deg, #103553 0%, #072e4b 100%);
  position: relative;
  overflow: hidden;
}
.feature-visual.image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
}
.feature-visual .visual-text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  max-width: 280px;
  color: var(--white);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 34px;
}
.metric {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 22px;
}
.metric-value {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.metric-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dark-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.feature-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
}
.feature-panel h3 {
  margin: 0 0 12px;
  color:var(--white) !important;
  font-size: 24px;
  line-height: 1.08;
}
.feature-panel p {
  margin: 0 0 18px;
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line-dark);
}
.product-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.product-card .card-meta {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.product-card h3 {
  font-size: 30px;
}
.product-card .product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.page-shell {
  background: var(--navy);
  color: var(--white);
}
.page-hero {
  background: linear-gradient(180deg, #0a3553 0%, #062b46 100%);
  color: var(--white);
  padding: 0;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: 430px;
}
.page-hero-side {
  background: var(--navy);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-side p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.4;
}
.page-hero-main {
  position: relative;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.06) 18%,
      transparent 18%,
      transparent 34%,
      rgba(255, 255, 255, 0.04) 34%,
      rgba(255, 255, 255, 0.04) 46%,
      transparent 46%,
      transparent 64%,
      rgba(255, 255, 255, 0.04) 64%,
      rgba(255, 255, 255, 0.04) 74%,
      transparent 74%
    ),
    linear-gradient(180deg, #103553 0%, #072e4b 100%);
}
.page-hero-main::before {
  content: "";
  position: absolute;
  right: 12%;
  top: 0;
  width: 210px;
  height: 100%;
  transform: skewX(30deg);
  background: rgba(255, 255, 255, 0.03);
}
.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.page-hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.catalog-shell,
.content-shell,
.single-shell,
.contact-shell,
.parts-shell {
  background: var(--white);
  color: var(--text);
}
.catalog-shell .container,
.content-shell .container,
.single-shell .container,
.contact-shell .container,
.parts-shell .container {
  position: relative;
}
.single-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.single-gallery {
  background: linear-gradient(180deg, #103553 0%, #072e4b 100%);
  min-height: 100%;
}
.single-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.single-copy {
  padding: clamp(28px, 4vw, 46px);
}
.single-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.spec-grid {
  display: grid;
  gap: 14px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 700;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  font: inherit;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.alert {
  padding: 14px 18px;
  margin-bottom: 20px;
}
.alert-success {
  background: #ecfdf5;
  color: #166534;
}
.alert-error {
  background: #fef2f2;
  color: #b91c1c;
}
.entry-content {
  max-width: 840px;
}
.contact-grid,
.parts-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.contact-info,
.parts-info {
  background: var(--offwhite);
  padding: clamp(28px, 4vw, 46px);
}
.contact-form-wrap,
.parts-form-wrap {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
}
.contact-list {
  display: grid;
  gap: 16px;
}
.contact-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mini-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.site-footer {
  background: #071f34;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 34% 66%;
}
.footer-brand {
  background: var(--navy);
  padding: 46px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand h3,
.footer-content h4,
.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}
.footer-brand p,
.footer-content p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}
.footer-content {
  padding: 46px 34px 28px;
  background: linear-gradient(180deg, #0a3553 0%, #062b46 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .main-navigation,
  .header-contact {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-right {
    justify-self: end;
  }
  .home-grid,
  .page-hero-inner,
  .footer-top,
  .feature-split,
  .contact-grid,
  .parts-grid,
  .single-layout {
    grid-template-columns: 1fr;
  }
  .home-left-top,
  .home-left-bottom {
    min-height: 220px;
  }
  .archive-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .metrics-grid,
  .dark-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-side {
    min-height: 180px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, var(--content));
  }
  .section {
    padding: 64px 0;
  }
  .header-inner {
    width: min(100% - 28px, var(--container));
    min-height: 68px;
  }
  .site-title-text {
    font-size: 13px;
  }
  .mobile-panel {
    width: min(100% - 28px, var(--container));
  }
  .home-right-top,
  .page-hero-main {
    padding: 30px 24px 40px;
  }
  .home-right-inner h1,
  .page-hero h1,
  .single-copy h1 {
    font-size: 34px;
  }
  .home-left-bottom h2,
  .feature-copy h2,
  .section-heading h2 {
    font-size: 34px;
  }
  .home-left-top .left-copy,
  .home-left-bottom .left-feature {
    margin: 0 24px;
  }
  .archive-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .metrics-grid,
  .dark-panel-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card .card-content {
    min-height: auto;
  }
  .single-gallery img {
    min-height: 320px;
  }
  .footer-brand,
  .footer-content {
    padding: 32px 24px;
  }
}

.card-subtitle {
  display: inline-block;
  margin-bottom: 8px;
  color: #082A42;
  font-weight: 600 !important;
  font-size: 22px;
  line-height: 1.1;
  border-bottom: 1px solid #a9b6c2;
  padding-bottom: 15px !important;

}
.product-card-detailed {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #082A42;
  color: #f2f2f4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card-detailed .card-media {
  background: #f3f5f7;
  padding: 18px 18px 0;
}
.product-card-detailed .card-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.product-card-detailed .card-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-detailed h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.card-intro {
  margin: 0;
  color: var(--muted);
}
.feature-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #4b5563;
  line-height: 1.35;
  font-size: 15px;
}
.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: 800;
}
.feature-list li.feature-icon-check::before {
  content: "✔";
  color: #14a44d;
}
.feature-list li.feature-icon-x::before {
  content: "✕";
  color: #dc2626;
}
.feature-list li.feature-icon-info::before {
  content: "ℹ";
  color: #1772c9;
}
.btn-card {
  width: 100%;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 16px;
}
.single-subtitle {
  margin: 10px 0 0;
  color: #2a7bcf;
  font-weight: 800;
  font-size: 22px;
}
.feature-list-single {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}


.btn-primary {
  background: #082A42;
  color: #fff;
  border-color: #082A42;
}
.btn-primary:hover {
  background: #082A42;
  border-color: #082A42;
}

.archive-heading-simple {
  margin-bottom: 34px;
}
.archive-heading-simple h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}
.archive-heading-simple p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
}
.archive-grid-products {
  align-items: stretch;
}

.product-card-detailed {
  height: 100%;
  border: 0;
  box-shadow: none;
}
.product-card-detailed .card-media {
  background: transparent;
  padding: 0 0 14px;
}
.product-card-detailed .card-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.product-card .card-content {
  min-height: 0;
}
.product-card-detailed .card-content {
  padding: 0;
  gap: 18px;
  height: 100%;
}
.product-card-detailed .card-content-main {
  display: grid;
  gap: 10px;
}
.card-subtitle {
  margin-bottom: 0;
  color: #082A42;
  font-weight: 800;
  font-size: 17px;
}
.product-card-detailed h3 {
  margin: 0;
  min-height:0px !important;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800 !important;
  padding-bottom: 0px !important;
  border-bottom: 1px solid #5a6168;
}
.card-intro {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.45;
}
.feature-list {
  gap: 6px;
}
.feature-list li {
  padding-left: 24px;
  color: #243240;
  line-height: 1.3;
  font-size: 14px;
}
.feature-list li::before {
  width: 16px;
  height: 16px;
}
.product-card .product-actions {
  margin-top: auto;
}
.btn-card {
  width: 100%;
  min-height: 42px;
  border-radius: 4px;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0;
}

.product-detail-hero-shell {
  background: #dbe5ee;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 38px;
  align-items: center;
}
.product-detail-copy {
  max-width: 760px;
}
.product-detail-eyebrow {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
  color: #20242a;
}
.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #20242a;
}
.product-detail-copy h1 span {
  color: #f2f2f4 !important;
}
.product-detail-intro {
  margin-top: 20px;
  max-width: 700px;
  color: #2f3b47;
  font-size: 17px;
}
.product-detail-intro p {
  margin: 0;
}
.product-detail-media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}
.product-advantages-wrap {
  margin-top: 28px;
}
.product-advantages-title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.2;
  color: #101418;
}
.product-advantages-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
}
.product-advantages-grid li {
  position: relative;
  padding-left: 28px;
  min-height: 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #1d2730;
}
.product-advantages-grid li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  font-weight: 800;
}
.product-advantages-grid li.feature-icon-check::before { content: "✔"; color: #18a44c; }
.product-advantages-grid li.feature-icon-x::before { content: "✕"; color: #dc2626; }
.product-advantages-grid li.feature-icon-info::before { content: "ℹ"; color: #1772c9; }
.product-content-shell {
  padding-top: 56px;
  padding-bottom: 56px;
}
.product-detail-content {
  max-width: 980px;
}
.product-form-shell {
  padding-top: 0;
  padding-bottom: 80px;
}
.motus-product-form {
  background: transparent;
  padding: 0;
  color: inherit;
  overflow: visible;
  position: static;
}
.motus-product-form::before,
.motus-product-form::after {
  display: none;
}
.motus-product-form > * {
  position: static;
  z-index: auto;
}

@media (max-width: 1100px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }
  .product-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .product-card-detailed .card-media img {
    height: 180px;
  }
  .product-detail-eyebrow {
    font-size: 22px;
  }
  .product-detail-copy h1 {
    font-size: 38px;
  }
  .product-advantages-grid {
    grid-template-columns: 1fr;
  }
  .motus-product-form {
    padding: 22px;
  }
}


.product-card-detailed {
  border: 1px solid #d5dde5;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f2f4 100%);
  box-shadow: 0 12px 30px rgba(20, 39, 62, 0.08);
  overflow: hidden;
}
.product-card-detailed .card-media {
  background: #eef4f8;
  padding: 18px 18px 8px;
}
.product-card-detailed .card-content {
  padding: 20px 20px 22px;
}
.product-card-detailed h3 {
  font-size: 19px;
  font-weight: 700;
  border-bottom: 0;
  padding-bottom: 10px;
}
.feature-list li {
  font-size: 15px;
}
.btn-card {
  border-radius: 10px;
  min-height: 48px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 115, 200, 0.18);
}

.product-detail-hero-shell {
  background: #dbe5ee;
  padding-top: 0px;
  padding-bottom: 0px;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}
.product-detail-copy {
  max-width: 620px;
}
.product-detail-title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #20242a;
}
.product-detail-title span {
  color: #1772c9;
}
.product-detail-intro {
  margin-top: 18px;
  max-width: 590px;
  color: #273544;
  font-size: 16px;
  line-height: 1.65;
}
.product-detail-media {
  display: flex;
  justify-content: center;
}
.product-detail-media img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.product-advantages-wrap {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 36, 42, 0.1);
}
.product-advantages-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: #101418;
}
.product-advantages-title span {
  color: #1772c9;
}
.product-advantages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
}
.product-advantages-grid li {
  font-size: 15px;
}
.product-form-shell {
  padding-top: 8px;
  padding-bottom: 80px;
}
@media (max-width: 1100px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .product-card-detailed {
    border-radius: 14px;
  }
  .product-detail-title {
    font-size: 34px;
  }
}

/* Product detail hero split section */
.product-detail-hero-shell {
  background: #e8eaed;
  padding-top: 0px;
  padding-bottom: 0px;
}
.product-detail-stage {
  position: relative;
  overflow: hidden;
  background: #082a42;
  color:#f2f2f4;
}
.product-detail-stage::before,
.product-detail-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-detail-top,
.product-detail-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
	width: min(100% - 40px, var(--content));
   margin: 0 auto;
}
.product-detail-top {
  min-height: 520px;
}
.product-detail-copy {
  padding: 72px 0px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-detail-title,
.product-detail-copy h1.product-detail-title {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #f2f2f4;
  font-weight: 300;
}
.product-detail-title .accent,
.product-detail-title span,
.product-detail-copy h1 span {
  color: #2f8ef0;
  font-weight: 700;
}
.product-detail-intro {
  margin-top: 26px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.92);
}
.product-detail-intro p { margin: 0; }
.product-detail-media {
  display: flex;
    align-items: end;
    padding: 40px 30px 24px;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.product-detail-media img {
  width: 100%;
  max-width: 640px;
  max-height: 390px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,0.18));
}
.product-detail-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  min-height: 210px;
}


.product-advantages-wrap {
  margin: 0;
  padding: 0px 56px 38px;
  border: 0;
	width: min(100% - 40px, var(--content));
    margin: 0 auto;
}
.product-advantages-title {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #f2f2f4;
}
.product-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}
.product-advantages-grid li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.95);
}
.product-advantages-grid li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
  font-weight: 700;
}
.product-advantages-grid li.feature-icon-check::before { content: "✔"; color: #22c55e; }
.product-advantages-grid li.feature-icon-x::before { content: "✕"; color: #f87171; }
.product-advantages-grid li.feature-icon-info::before { content: "●"; color: #2f8ef0; font-size: 10px; top: 8px; }
.product-detail-bottom-fill {
  min-height: 100%;
}
.product-content-shell {
  padding-top: 36px;
}
.product-form-shell {
  padding-top: 8px;
  padding-bottom: 80px;
}
@media (max-width: 1100px) {
  .product-detail-top,
  .product-detail-bottom {
    grid-template-columns: 1fr;
  }
 
  .product-detail-top {
    min-height: 0;
  }
  .product-detail-copy {
    padding: 48px 34px 24px;
  }
  .product-detail-media {
    padding: 10px 24px 28px;
  }
  .product-detail-media img {
    max-height: 340px;
  }
  .product-advantages-wrap {
    padding: 28px 34px 34px;
  }
  .product-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-bottom-fill {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-detail-hero-shell {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .product-detail-copy {
    padding: 34px 22px 18px;
  }
  .product-detail-title,
  .product-detail-copy h1.product-detail-title {
    font-size: 44px;
    line-height: 0.98;
  }
  .product-detail-intro {
    margin-top: 18px;
    font-size: 15px;
  }
  .product-detail-media {
    padding: 6px 14px 18px;
  }
  .product-detail-media img {
    max-height: 250px;
  }
  .product-advantages-wrap {
    padding: 24px 22px 28px;
  }
  .product-advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


@media (max-width: 767px) {
  .home-right-top { padding-top: 76px; }
  .home-right-inner h1 { max-width: none; }
}

/* Homepage only updates */
.dark-panel-grid {
  align-items: stretch;
}
.feature-panel {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.feature-panel p {
  margin-bottom: 24px;
}
.feature-panel .btn {
  margin-top: auto;
  align-self: flex-start;
}

.home-showcase-shell {
  background: var(--offwhite);
}
.home-showcase-shell .section-heading {
  margin-bottom: 34px;
}
.home-carousel-shell {
  position: relative;
}
.home-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 340px);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 35px 12px;
  scrollbar-width: thin;
  align-items: stretch;
}
.home-carousel-track::-webkit-scrollbar {
  height: 8px;
}
.home-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(17, 38, 56, 0.22);
}
.home-carousel-item {
  scroll-snap-align: start;
  display: flex;
  height: 100%;
}
.home-showcase-shell .product-card-detailed {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 139, 158, 0.26);
  border-radius: 18px;
  background: #eef2f5;
  box-shadow: 0 10px 24px rgba(3, 29, 48, 0.05);
}
.home-showcase-shell .product-card-detailed .card-media {
  padding: 18px 18px 0;
  background: #eef2f5;
}
.home-showcase-shell .product-card-detailed .card-media img {
  height: 195px;
}
.home-showcase-shell .product-card-detailed .card-content {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 18px 18px 20px;
  background: #f6f7f9;
}
.home-showcase-shell .product-card-detailed .card-content-main {
  display: grid;
  align-content: start;
  gap: 5px !important;
}
.home-showcase-shell .product-card-detailed h3 {
  min-height: 52px;
}
.home-showcase-shell .feature-list {
  display: grid;
  gap: 8px;
  min-height: 148px;
}
.home-showcase-shell .product-actions {
  margin-top: auto;
}
.home-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(17, 38, 56, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(3, 29, 48, 0.08);
}
.home-carousel-arrow-prev {
  left: -12px;
}
.home-carousel-arrow-next {
  right: -12px;
}
.home-carousel-arrow:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 991px) {
  .feature-panel {
    min-height: 0;
  }
  .home-carousel-arrow {
    display: none;
  }
}


.contact-modal-open {
  overflow: hidden;
}
.motus-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.motus-contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.motus-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 27, 0.7);
  backdrop-filter: blur(4px);
}
.motus-contact-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f6f7f9;
  color: var(--navy);
  border: 1px solid rgba(117, 139, 158, 0.24);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(3, 29, 48, 0.28);
}
.motus-contact-modal__content {
  padding: 32px;
}
.motus-contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 38, 56, 0.08);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.motus-contact-modal__content h2 {
  margin-bottom: 10px;
}
.motus-contact-modal__content > p {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .motus-contact-modal {
    padding: 12px;
  }
  .motus-contact-modal__content {
    padding: 22px 18px;
  }
}