:root {
  --blue: #1050c0;
  --blue-dark: #0b2f59;
  --blue-soft: #eaf2ff;
  --mint: #56cbb0;
  --mint-soft: #e6f8f3;
  --red: #e02030;
  --ink: #183043;
  --muted: #647889;
  --line: #d7e6ec;
  --sky: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 56, 88, 0.12);
  --shadow-soft: 0 14px 36px rgba(18, 56, 88, 0.08);
  --radius: 20px;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.topbar {
  color: #dce9f5;
  background: var(--blue-dark);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar strong {
  color: var(--white);
}

.topbar a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 230, 236, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #29445a;
  font-size: 14px;
  font-weight: 700;
}

.nav li {
  display: flex;
}

.nav a {
  position: relative;
  padding-block: 28px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

.nav a:hover::after,
.nav a.active::after,
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--white);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(16, 80, 192, 0.22);
}

.button-primary:hover {
  background: #0b46ae;
}

.button-secondary {
  color: var(--blue-dark);
  border-color: var(--line);
  background: var(--white);
}

.button-mint {
  color: #063c32;
  background: var(--mint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--mint);
  content: "";
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 85% 14%, rgba(86, 203, 176, 0.2), transparent 27%),
    radial-gradient(circle at 12% 0%, rgba(16, 80, 192, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fcfe 0%, #f1f8fb 100%);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -290px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(86, 203, 176, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-dark);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(46px, 5.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 30px;
  color: #4e6679;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #3d5669;
  font-size: 14px;
  font-weight: 700;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.proof-dot {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0c5749;
  background: var(--mint-soft);
}

.hero-visual {
  min-height: 560px;
  position: relative;
  z-index: 1;
}

.visual-card {
  overflow: hidden;
  position: absolute;
  border: 1px solid rgba(215, 230, 236, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  top: 24px;
  right: 0;
  width: 76%;
  height: 470px;
}

.visual-secondary {
  bottom: 20px;
  left: 0;
  width: 42%;
  height: 230px;
  border: 8px solid var(--white);
}

.visual-badge {
  position: absolute;
  right: 12px;
  bottom: 22px;
  width: 220px;
  padding: 17px 18px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.visual-badge strong,
.visual-badge span {
  display: block;
}

.visual-badge span {
  margin-top: 3px;
  color: #c6d8e9;
  font-size: 13px;
}

.search-panel {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 14px;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--sky);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-title {
  margin: 0;
  color: var(--blue-dark);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  flex: none;
  color: var(--blue);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 180ms ease;
}

.category-card:hover {
  border-color: #afc9d6;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}

.category-card:nth-child(4n + 2) .category-icon {
  color: #0b6a58;
  background: var(--mint-soft);
}

.category-card:nth-child(4n + 3) .category-icon {
  color: var(--red);
  background: #fff0f2;
}

.category-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 18px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.category-card .arrow {
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(18, 56, 88, 0.05);
  transition: 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--sky);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #eef5f9 0%, #e2eef4 100%);
}

.product-image-placeholder::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b6cad6;
  font-size: 36px;
  font-weight: 900;
  content: "OR";
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 20px;
}

.product-meta {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 54px;
  margin: 7px 0 10px;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.45;
}

.product-reference {
  color: var(--muted);
  font-size: 13px;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #ebf1f4;
}

.product-actions a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 24px 30px 24px 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 45px;
  right: 18px;
  width: 40%;
  height: 1px;
  background: var(--line);
  content: "";
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.process-step:nth-child(2) .step-number,
.process-step:nth-child(4) .step-number {
  color: #073f34;
  background: var(--mint);
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  color: var(--white);
  background: var(--blue-dark);
}

.solution-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 32, 59, 0.88) 92%),
    var(--image) center / cover;
  content: "";
  opacity: 0.9;
}

.solution-card > * {
  position: relative;
}

.solution-card h3 {
  margin: 0;
  font-size: 28px;
}

.solution-card p {
  max-width: 520px;
  margin: 9px 0 16px;
  color: #d3e1ec;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-chip {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #5b6f7f;
  background: var(--white);
  font-weight: 900;
}

.cta-band {
  overflow: hidden;
  position: relative;
  padding: 54px;
  border-radius: 28px;
  color: var(--white);
  background: var(--blue);
}

.cta-band::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 52px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.cta-band p {
  margin: 12px 0 0;
  color: #dce9ff;
}

.site-footer {
  padding: 68px 0 24px;
  color: #c9d7e4;
  background: #082846;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-note {
  max-width: 360px;
  margin: 0;
  color: #aebfd0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a7ba;
  font-size: 13px;
}

.page-hero {
  padding: 58px 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(86, 203, 176, 0.18), transparent 22%),
    var(--sky);
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.filter-panel h2 {
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: 18px;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid #e9f0f3;
}

.filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.filter-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 8px;
  color: #536a7c;
  font-size: 14px;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.catalog-count {
  color: var(--muted);
}

.toolbar-actions {
  display: flex;
  gap: 10px;
}

.select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ── Taxonomy / catalog pagination ── */
.navigation.pagination {
  margin: 40px 0 8px;
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.navigation.pagination .screen-reader-text {
  display: none;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}

.navigation.pagination a.page-numbers:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.navigation.pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

.navigation.pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
  color: var(--ink-light);
  min-width: 28px;
}

.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
  padding: 0 16px;
  font-weight: 600;
  letter-spacing: .02em;
}

.product-detail {
  padding: 64px 0 88px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
}

.gallery-main {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--sky);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-note {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sky);
  cursor: pointer;
}

.thumb.active {
  border: 2px solid var(--blue);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 8px 0 13px;
  color: var(--blue-dark);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.reference-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}

.product-lead {
  margin: 22px 0;
  color: #506a7d;
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
}

.feature-list li::before {
  width: 24px;
  height: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b6655;
  background: var(--mint-soft);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.document-row {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #36536a;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.detail-sections {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  padding-top: 72px;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card + .detail-card {
  margin-top: 18px;
}

.detail-card h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 25px;
}

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

.spec-table th,
.spec-table td {
  padding: 13px 0;
  border-bottom: 1px solid #e7eef2;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--muted);
  font-size: 14px;
}

.quote-card {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: 26px;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.quote-card h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.quote-card p {
  margin: 0 0 20px;
  color: #c8d9e7;
}

.form-grid {
  display: grid;
  gap: 11px;
}

.field {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.field::placeholder {
  color: #a9c0d1;
}

textarea.field {
  min-height: 94px;
  resize: vertical;
}

.mobile-filter-button {
  display: none;
}

/* ============================================================
   ORLIMEDIS ADDITIONS (WP nav, language switcher, quote form)
   ============================================================ */

/* Language switcher dropdown (flag + active language) */
.orl-lang-switcher {
  position: relative;
}

.orl-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.orl-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(18, 56, 88, 0.08);
}

.orl-caret {
  font-size: 11px;
  color: var(--muted);
}

.orl-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: none;
}

.orl-lang-switcher.open .orl-lang-menu {
  display: block;
}

.orl-lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.orl-lang-menu a:hover {
  background: var(--sky);
}

.orl-lang-menu a.is-active {
  color: var(--blue);
}

/* Floating WhatsApp button */
.orl-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.orl-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.orl-whatsapp img {
  width: 34px;
  height: 34px;
}

@media (max-width: 640px) {
  .orl-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .orl-whatsapp img {
    width: 30px;
    height: 30px;
  }
}

/* Skip link — clip-based visually-hidden (no off-screen offset, so it never
   widens the page; the old `left:-9999px` caused horizontal overflow in RTL). */
.orl-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.orl-skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  inset-inline-start: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 8px;
}

/* Product page: expandable quote form (replaces sticky card) */
.orl-quote {
  align-self: start;
  position: sticky;
  top: 96px;
}

.orl-quote > summary {
  list-style: none;
  width: 100%;
}

.orl-quote > summary::-webkit-details-marker {
  display: none;
}

.orl-quote-toggle {
  width: 100%;
}

.orl-quote-panel {
  margin-top: 14px;
  padding: 26px;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.orl-quote-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.orl-quote-intro {
  margin: 0 0 18px;
  color: #c8d9e7;
  font-size: 14px;
}

.orl-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.orl-field {
  display: grid;
  gap: 5px;
}

.orl-field--full {
  grid-column: 1 / -1;
}

.orl-field-label {
  font-size: 12px;
  font-weight: 700;
  color: #c8d9e7;
}

.orl-req {
  color: var(--mint);
}

.orl-form-submit {
  margin-top: 12px;
  width: 100%;
}

.orl-form-feedback {
  margin-top: 10px;
  font-size: 14px;
}

.orl-form-feedback.is-success {
  color: #8be6cf;
}

.orl-form-feedback.is-error {
  color: #ffb4bc;
}

.orl-form-wrap .field {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.orl-form-wrap .orl-field-label {
  color: var(--muted);
}

/* Contact page form (light surface) */
.orl-contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.orl-contact-form .field {
  color: var(--ink);
  border-color: var(--line);
  background: var(--sky);
}

.orl-contact-form .orl-field-label {
  color: var(--muted);
}

/* Compact catalog header (search prominent at top, first product row visible) */
.catalog-hero {
  padding: 20px 0 18px;
  background:
    radial-gradient(circle at 90% 40%, rgba(86, 203, 176, 0.15), transparent 28%),
    var(--sky);
  border-bottom: 1px solid var(--line);
}

.catalog-hero .breadcrumb {
  margin-bottom: 10px;
}

.catalog-hero-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.catalog-hero-title {
  flex: none;
  max-width: 360px;
  margin: 0;
  color: var(--blue-dark);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.catalog-search {
  flex: 1 1 auto;
  margin: 0;
}

.catalog-body {
  padding: 24px 0 80px;
}

@media (max-width: 760px) {
  .catalog-hero-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .catalog-hero-title {
    max-width: none;
    font-size: 22px;
  }
}

/* CTA band with image background (keeps brand blue via overlay) */
.cta-band.has-bg::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 80, 192, 0.96) 0%, rgba(16, 80, 192, 0.88) 48%, rgba(11, 47, 89, 0.78) 100%),
    var(--image) center / cover no-repeat;
  content: "";
  z-index: 0;
}

.cta-band.has-bg .cta-grid {
  position: relative;
  z-index: 2;
}

.cta-band.has-bg::after {
  z-index: 1;
}

/* Products mega menu (auto from category taxonomy) */
.nav .has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 70;
  padding: 30px 0 34px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 26px 50px rgba(18, 56, 88, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.nav .has-mega:hover > .mega-menu,
.nav .has-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reset the top-nav link padding/underline that would otherwise leak in. */
.mega-menu a {
  padding: 0;
}

.mega-menu a::after {
  content: none;
  display: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 30px;
  align-items: start;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.mega-cat-thumb {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 10px;
  background-color: #e7f0f6;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
}

.mega-cat-name {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}

.mega-subs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 0 55px;
  padding: 0;
  list-style: none;
}

.mega-subs li {
  margin: 0;
  line-height: 1.2;
}

.mega-subs a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.mega-subs a:hover,
.mega-subs a.mega-all {
  color: var(--blue);
}

/* Hero single image */
.hero-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(215, 230, 236, 0.92);
  border-radius: 28px;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image--placeholder {
  background:
    radial-gradient(circle at 70% 20%, rgba(86, 203, 176, 0.35), transparent 45%),
    linear-gradient(135deg, #e9f3f9, #cfe7f1);
}

/* Category cards with image background */
.category-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.category-card.has-bg {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  justify-content: flex-end;
  border: none;
  color: var(--white);
}

.category-card.has-bg .category-card-content {
  flex: 0 0 auto;
}

.category-card.has-bg .arrow {
  margin-top: 12px;
}

.category-card.has-bg::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 47, 89, 0.12) 0%, rgba(7, 33, 58, 0.86) 80%),
    var(--image) center / cover no-repeat;
  content: "";
  transition: transform 400ms ease;
}

.category-card.has-bg:hover::before {
  transform: scale(1.06);
}

.category-card.has-bg > * {
  position: relative;
  z-index: 1;
}

.category-card.has-bg .category-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.category-card.has-bg h3 {
  color: var(--white);
}

.category-card.has-bg p {
  color: rgba(255, 255, 255, 0.85);
}

.category-card.has-bg .arrow {
  color: var(--white);
}

.category-card .arrow {
  margin-top: auto;
}

/* Partners carousel (brand logos) */
.brand-carousel {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: orl-marquee 38s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  flex: none;
}

.brand-logo img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}

.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes orl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Product page brand logo */
.product-brand-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.product-brand-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

/* Single-column detail section (quote moved inline above) */
.detail-sections.is-single {
  grid-template-columns: 1fr;
}

/* Variants table */
.variant-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.variant-table th,
.variant-table td {
  padding: 10px 12px;
  border: 1px solid #e7eef2;
  text-align: left;
  font-size: 14px;
}

/* About page */
.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}
.about-story-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-value {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.about-value-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}
.about-value h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 18px;
}
.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.about-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-locations .detail-card h2 {
  font-size: 19px;
}
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .about-locations { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
}

/* Page content (generic) */
.page-content {
  padding: 64px 0;
}
.page-content .container {
  max-width: 820px;
}
.page-content h2 {
  color: var(--blue-dark);
  font-family: Manrope, Inter, sans-serif;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 170px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .topbar-group:first-child span:last-child,
  .header-actions .button {
    display: none;
  }

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

  .menu-button {
    display: inline-grid;
  }

  .nav {
    position: fixed;
    inset: 82px 0 0;
    z-index: 60;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--white);
  }

  .nav.open {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid #e8eff3;
    font-size: 17px;
  }

  .hero-grid,
  .product-detail-grid,
  .detail-sections {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image {
    height: 420px;
  }

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

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

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

  .process-step::after {
    display: none;
  }

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

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

  .filter-panel {
    display: none;
    position: static;
  }

  .filter-panel.open {
    display: block;
  }

  .mobile-filter-button {
    display: inline-flex;
  }

  .quote-card,
  .orl-quote {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar-group {
    gap: 12px;
  }

  .topbar-group:first-child span:first-child {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .nav {
    inset-block-start: 70px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .product-cta {
    display: grid;
  }

  .hero-actions .button,
  .product-cta .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image {
    height: 280px;
  }

  .visual-main {
    width: 88%;
    height: 340px;
  }

  .visual-secondary {
    width: 48%;
    height: 170px;
  }

  .visual-badge {
    width: 190px;
    right: 0;
    bottom: 5px;
  }

  .search-panel {
    margin-top: -22px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .cta-grid,
  .footer-bottom,
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .product-grid,
  .solution-grid,
  .process-grid,
  .footer-grid,
  .orl-form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .page-hero {
    padding: 42px 0;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-actions .select,
  .mobile-filter-button {
    flex: 1;
  }
}
