﻿:root {
  --color-primary: #0087ff;
  --color-primary-soft: #006fd1;
  --color-accent: #00e676;
  --color-accent-strong: #00964e;
  --color-cyan: #8bd8dd;
  --color-bg: #f5fbff;
  --page-pattern-bg:
    radial-gradient(circle at 14% 22%, rgba(0, 230, 118, 0.30) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 74%, rgba(0, 230, 118, 0.25) 0 3px, transparent 4px),
    radial-gradient(closest-side at 14% 22%, transparent 72%, rgba(0, 135, 255, 0.25) 73%, rgba(0, 135, 255, 0.25) 75%, transparent 76%),
    radial-gradient(closest-side at 14% 22%, transparent 82%, rgba(0, 230, 118, 0.20) 83%, rgba(0, 230, 118, 0.20) 85%, transparent 86%),
    radial-gradient(closest-side at 88% 76%, transparent 72%, rgba(0, 135, 255, 0.20) 73%, rgba(0, 135, 255, 0.20) 75%, transparent 76%),
    radial-gradient(closest-side at 88% 76%, transparent 82%, rgba(0, 230, 118, 0.25) 83%, rgba(0, 230, 118, 0.25) 85%, transparent 86%);
  --glass-primary-bg:
    radial-gradient(circle at 8% 12%, rgba(0, 135, 255, 0.07), transparent 34rem),
    radial-gradient(circle at 96% 16%, rgba(0, 230, 118, 0.06), transparent 36rem),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 44%, #f7fbff 100%);
  --color-surface: #ffffff;
  --color-surface-soft: #eef7f3;
  --color-ink: #0f1b2b;
  --color-muted: #5f6874;
  --color-line: #e3e0d8;
  --shadow-soft: 0 22px 60px rgba(15, 27, 43, 0.08);
  --shadow-card: 0 12px 34px rgba(15, 27, 43, 0.07);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}




body {
  background: var(--glass-primary-bg), var(--color-bg);
  background-attachment: fixed;
  color: var(--color-ink);
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  opacity: 0;
  animation: pageFadeIn 0.75s ease forwards;
}

main {
  isolation: isolate;
  position: relative;
}


@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font: inherit;
}

.top-bar {
  background: #050505;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  background: transparent;
  left: 0;
  padding: 12px 28px 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar {
  align-items: center;
  background: rgba(222, 228, 229, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 27, 43, 0.16);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: min(1320px, calc(100vw - 56px));
  min-height: 82px;
  padding: 0 20px 0 26px;
}

.logo {
  align-items: center;
  color: #050505;
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 800;
  gap: 12px;
  line-height: 1;
  max-width: 230px;
}

.logo img {
  height: auto;
  max-height: 58px;
  object-fit: contain;
  width: 190px;
}

.logo-mark {
  align-items: center;
  background: #050505;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.nav-links {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
  padding: 0;
}

.nav-links a {
  border-radius: 0;
  color: #050505;
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
  color: #050505;
}

.nav-links a::after {
  background: var(--color-accent);
  content: "";
  display: block;
  height: 3px;
  margin-top: 8px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  padding-right: 18px;
  position: relative;
}

.nav-dropdown > a::before {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  right: 1px;
  top: 43%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  width: 7px;
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before,
.nav-dropdown.open > a::before {
  transform: translateY(-20%) rotate(225deg);
}

.nav-dropdown::after {
  content: "";
  display: none;
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.nav-dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 27, 43, 0.14);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 240px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.open::after {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  border-radius: 12px;
  color: #050505;
  font-size: 0.9rem;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 135, 255, 0.20);
  color: var(--color-primary);
}

.nav-cta,
.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: var(--color-accent);
  color: #050505;
}

.nav-cta {
  min-height: 54px;
  padding: 15px 26px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--color-accent-strong);
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-cta:hover {
  background: var(--color-accent-strong);
  color: #ffffff;
}

.nav-cta::after,
.btn::after {
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  content: "↗";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 800;
  height: 54px;
  justify-content: center;
  line-height: 1;
  margin: -14px -26px -14px 0;
  width: 54px;
}

.nav-cta::after,
.btn-primary::after,
.btn-light::after {
  background: var(--color-accent-strong);
  color: #ffffff;
}

.nav-cta::after,
.nav-cta:hover::after {
  background: var(--color-accent-strong);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #050505;
}

.btn-secondary::after {
  display: none;
}

.btn-light {
  background: var(--color-accent);
  color: #050505;
}

.btn-light:hover {
  background: var(--color-accent-strong);
  color: #ffffff;
}

.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.btn-ghost-light::after {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.btn-ghost-light:hover::after,
.btn-ghost-light:focus-visible::after {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  margin-left: auto;
  width: 42px;
}

.menu-toggle span {
  background: var(--color-primary);
  display: block;
  height: 2px;
  margin: 7px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 26px;
}

.hero-slider {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(82, 78, 77, 0.24);
  margin: 0 auto;
  height: 100svh;
  max-width: none;
  min-height: 590px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}

.hero-slide {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  inset: 0;
  opacity: 0;
  padding: 160px max(24px, calc((100vw - var(--max-width)) / 2)) 104px;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide img,
.hero-slide video {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  transition: transform 6.2s ease, opacity 0.7s ease;
  width: 100%;
  will-change: transform;
}

.hero-slide.active img,
.hero-slide.active video {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgba(82, 78, 77, 0.68) 0%, rgba(82, 78, 77, 0.46) 28%, rgba(82, 78, 77, 0.12) 48%, transparent 58%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.20) 100%);
  content: "";
  display: block;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.slide-copy {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #050505;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-heading h2,
.stats-heading h2,
.about-orprotec h2,
.testimonials-heading h2,
.faq-copy h2,
.contact-form-heading h2,
.about-video-copy h2,
.about-final h2,
.brochure-cta h2,
.blog-hero h1,
.page-hero h1 {
  color: #050505;
}

.hero-slide .eyebrow,
.about-banner .eyebrow,
.cta-band .eyebrow {
  color: var(--color-accent);
}

.hero-slide h1,
.about-banner h1,
.cta-band h2,
.about-orprotec h2,
.footer h2,
.footer h3 {
  color: #ffffff;
}

.eyebrow {
  display: none;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.06;
}

h1 {
  color: #ffffff;
  font-size: clamp(2.55rem, 5.6vw, 5.25rem);
  font-weight: 800;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-slide h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.55rem);
  max-width: 680px;
}

h2 {
  color: #050505;
  font-size: clamp(1.85rem, 3.25vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  color: #050505;
  font-size: 1.18rem;
  font-weight: 700;
}

.title-accent-word {
  color: var(--color-primary);
}

.slide-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.04vw, 1rem);
  margin-top: 18px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.slider-controls {
  bottom: 96px;
  display: flex;
  gap: 10px;
  left: max(24px, calc((100vw - var(--max-width)) / 2));
  position: absolute;
  z-index: 4;
}

.slider-dot {
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  height: 8px;
  transition: background 0.2s ease, width 0.2s ease;
  width: 34px;
}

.slider-dot.active {
  background: #ffffff;
  width: 68px;
}

.hero-slider .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.hero-slider .btn::after {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  display: inline-flex;
}

.hero-slider .btn:hover,
.hero-slider .btn:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.hero-slider .btn:hover::after,
.hero-slider .btn:focus-visible::after {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.nav-cta:hover::after,
.btn:hover::after {
  background: var(--color-accent-strong);
  color: #ffffff;
}

.nav-cta:hover::after {
  background: var(--color-accent-strong);
}

.section,
.trust-strip,
.page-hero,
.footer {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
  width: calc(100% - 40px);
}

.stats-section {
  background: #ffffff;
  border-radius: 46px 46px 0 0;
  box-shadow: 0 -18px 42px rgba(15, 27, 43, 0.09);
  margin-top: -64px;
  max-width: none;
  padding: 94px max(20px, calc((100vw - var(--max-width)) / 2)) 42px;
  position: relative;
  width: 100%;
  z-index: 3;
}


.hero-slider ~ .section:not(.contact-form-section) {
  background: var(--color-bg);
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  width: 100%;
  z-index: 2;
}
.hero-slider ~ .stats-section {
  background: #ffffff;
  z-index: 3;
}

.stats-section.reveal,
.stats-section.reveal.visible {
  opacity: 1;
  transform: none;
}

.stats-section.visible .trust-strip strong {
  animation: none;
}

.stats-section + .products-preview {
  padding-top: 92px;
  position: relative;
  z-index: 1;
}

.stats-section::after {
  background: linear-gradient(180deg, #ffffff 0%, rgba(245, 251, 255, 0.92) 58%, rgba(245, 251, 255, 0) 100%);
  content: "";
  height: 96px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
}

.stats-heading {
  margin: 0 auto 38px;
  max-width: 780px;
  text-align: center;
}

.stats-heading h2 {
  color: #050505;
}

.stats-heading p:not(.eyebrow) {
  color: #3f4650;
  font-size: 1.02rem;
  margin-top: 16px;
}

.trust-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  padding: 64px 0 26px;
}

.trust-strip article {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: auto;
  padding: 44px 18px 36px;
  position: relative;
  text-align: center;
  overflow: visible;
}

.trust-strip article::after {
  background: var(--color-accent);
  border-radius: 30% 42% 34% 38%;
  content: "";
  height: 170px;
  left: 50%;
  opacity: 0.11;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: min(240px, 88%);
  z-index: 0;
}

.trust-strip span,
.product-card span,
.line-card span,
.blog-card span,
.values-grid span,
.process-grid strong {
  color: #050505;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.trust-strip strong {
  color: #141923;
  display: block;
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.stats-strip p {
  color: #596273;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 auto;
  max-width: 210px;
  position: relative;
  z-index: 1;
}

p,
li {
  color: var(--color-muted);
}

.section {
  background: var(--color-bg);
  overflow: hidden;
  padding: 76px 0;
  position: relative;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section:not(.contact-form-section):not(.stats-section)::before {
  background:
    radial-gradient(circle, rgba(0, 135, 255, 0.22) 0 2.4px, transparent 2.8px),
    radial-gradient(closest-side at 24% 28%, transparent 68%, rgba(0, 135, 255, 0.18) 69%, rgba(0, 135, 255, 0.18) 71%, transparent 72%),
    radial-gradient(closest-side at 82% 76%, transparent 70%, rgba(0, 230, 118, 0.15) 71%, rgba(0, 230, 118, 0.15) 73%, transparent 74%);
  background-position: 0 0, -44px -34px, 48px 42px;
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: 18px 18px, 220px 220px, 190px 190px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 55% 100%, 0 100%);
  content: "";
  height: 170px;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  right: max(22px, calc((100vw - var(--max-width)) / 2));
  top: 34px;
  width: 140px;
  z-index: 0;
}

.section:nth-of-type(even):not(.contact-form-section):not(.stats-section)::before {
  background:
    radial-gradient(circle, rgba(0, 230, 118, 0.22) 0 2.4px, transparent 2.8px),
    radial-gradient(closest-side at 22% 76%, transparent 68%, rgba(0, 230, 118, 0.17) 69%, rgba(0, 230, 118, 0.17) 71%, transparent 72%),
    radial-gradient(closest-side at 84% 26%, transparent 70%, rgba(0, 135, 255, 0.15) 71%, rgba(0, 135, 255, 0.15) 73%, transparent 74%);
  bottom: 34px;
  left: max(22px, calc((100vw - var(--max-width)) / 2));
  right: auto;
  top: auto;
  transform: rotate(180deg);
}

.split {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.95fr 1.05fr;
}

.text-stack {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: none;
  display: grid;
  gap: 18px;
  padding: 32px;
}

.text-stack p,
.page-hero p,
.newsletter p {
  font-size: 1rem;
}

.text-link {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}

.about-orprotec {
  align-items: center;
  background: transparent;
  box-shadow: none;
  color: var(--color-ink);
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: var(--max-width);
  padding: 72px max(24px, calc((100vw - var(--max-width)) / 2));
  place-items: center;
  text-align: center;
  width: calc(100% - 40px);
}

.about-orprotec h2,
.about-orprotec .eyebrow {
  color: #050505;
}

.about-orprotec .eyebrow {
  color: var(--color-primary);
}

.about-orprotec h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  text-align: center;
  white-space: nowrap;
}

.about-orprotec .text-stack {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  justify-items: center;
  padding: 0;
}

.about-orprotec .text-stack p {
  color: #394452;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  max-width: 690px;
  text-align: center;
}

.team-photo {
  aspect-ratio: 16 / 8.5;
  border: 1px solid rgba(15, 27, 43, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(15, 27, 43, 0.12);
  margin: 12px auto 4px;
  max-width: 880px;
  object-fit: cover;
  object-position: center;
  padding: 8px;
  background: #ffffff;
  width: 100%;
}

.experience-number {
  color: var(--color-primary);
  display: block;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.text-link::after {
  background: var(--color-accent);
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 780px;
  text-align: center;
}

.about-orprotec {
  padding-bottom: 34px;
}

.about-orprotec + .why-choose {
  padding-top: 22px;
}

.why-choose {
  padding-top: 52px;
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding: 12px 0 10px;
}

.why-grid article {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(15, 27, 43, 0.09);
  display: flex;
  flex-direction: column;
  min-height: 255px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-grid article:nth-child(1) {
  background: var(--color-primary);
}

.why-grid article:nth-child(2) {
  background: var(--color-accent);
}

.why-grid article:nth-child(3) {
  background: #050505;
}

.why-grid article::before {
  background:
    radial-gradient(65% 42% at 18% 24%, transparent 56%, rgba(255, 255, 255, 0.22) 57%, rgba(255, 255, 255, 0.22) 59%, transparent 60%),
    radial-gradient(58% 38% at 82% 18%, transparent 57%, rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0.2) 60%, transparent 61%),
    radial-gradient(74% 46% at 68% 86%, transparent 58%, rgba(255, 255, 255, 0.18) 59%, rgba(255, 255, 255, 0.18) 61%, transparent 62%);
  background-size: 280px 190px, 240px 170px, 320px 210px;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.why-grid article:nth-child(2)::before {
  background-position: 34px -18px, -28px 42px, 80px 18px;
  opacity: 0.72;
}

.why-grid article:nth-child(3)::before {
  background-position: -42px 28px, 54px -24px, 12px 72px;
  opacity: 0.72;
}

.why-grid article::after {
  display: none;
}

.why-grid article:hover {
  box-shadow: 0 22px 48px rgba(15, 27, 43, 0.14);
  transform: translateY(-5px);
}

.why-chip {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: auto;
  max-width: max-content;
  padding: 6px 10px;
  position: relative;
  z-index: 1;
}

.why-grid h3 {
  color: #ffffff;
  font-size: clamp(1.28rem, 1.75vw, 1.72rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.05;
  margin: auto 0 8px;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.34;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.product-grid,
.values-grid,
.process-grid,
.blog-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(12, 1fr);
}


.product-card,
.line-card,
.blog-card,
.values-grid article,
.process-grid article,
.newsletter {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: none;
}

.product-card {
  align-items: flex-start;
  background-position: center;
  background-size: 105%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  grid-column: span 5;
  justify-content: flex-start;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: background-size 0.45s ease, transform 0.25s ease;
}

.product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.32) 42%, rgba(5, 5, 5, 0.72));
  content: "";
  inset: 0;
  position: absolute;
  transition: background 0.25s ease;
}

.product-card > * {
  position: relative;
}

.product-card::after {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.15);
  border-radius: 50%;
  bottom: 22px;
  color: var(--color-primary);
  content: "↗";
  display: inline-flex;
  font-size: 1.35rem;
  height: 56px;
  justify-content: center;
  position: absolute;
  right: 22px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 56px;
  z-index: 1;
}

.product-card h3 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 430px;
}

.product-card:hover {
  background-size: 114%;
  transform: translateY(-4px) scale(1.015);
}

.product-card span {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  padding: 6px 14px;
}

.product-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
  margin-top: auto;
  max-width: 440px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-card:hover p,
.product-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.42) 42%, rgba(5, 5, 5, 0.84));
}

.product-card:hover::after,
.product-card:focus-visible::after {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-4px);
}

.product-card-wide {
  grid-column: span 7;
}

.product-card-cadera {
  background-image: url("assets/img/artroplastia-cadera.jpg");
}

.product-card-rodilla {
  background-image: url("assets/img/orprotec-hero-2.png");
}

.product-card-osteosintesis {
  background-image: url("assets/img/orprotec-hero-1.png");
}

.product-gallery-section {
  padding-top: 28px;
}

.product-gallery {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.05fr 0.96fr 1.05fr 0.9fr;
  margin: 0 auto;
  max-width: 1180px;
}

.product-gallery-card {
  align-items: flex-start;
  background-position: center;
  background-size: 112%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  justify-content: flex-start;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: background-size 0.45s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-gallery-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.7));
  content: "";
  inset: 0;
  position: absolute;
  transition: background 0.25s ease;
  z-index: -1;
}

.product-gallery-card::after {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  bottom: 18px;
  color: #050505;
  content: "↗";
  display: inline-flex;
  font-size: 1.12rem;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.product-gallery-card span {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.product-gallery-card h3 {
  color: #ffffff;
  font-size: clamp(1.12rem, 1.8vw, 1.7rem);
  line-height: 1.04;
  margin: auto 0 14px;
  max-width: 240px;
}

.product-gallery-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 240px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-gallery-card:hover,
.product-gallery-card:focus-visible {
  background-size: 122%;
  box-shadow: 0 24px 46px rgba(0, 135, 255, 0.18);
  transform: translateY(-6px);
}

.product-gallery-card:hover::before,
.product-gallery-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.82));
}

.product-gallery-card:hover::after,
.product-gallery-card:focus-visible::after {
  background: var(--color-accent);
  color: #050505;
  transform: translateY(-4px);
}

.product-gallery-card:hover p,
.product-gallery-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.product-gallery-small {
  min-height: 210px;
}

.product-gallery-tall {
  min-height: 390px;
}

.product-gallery-card:nth-child(1) {
  border-radius: 18px 18px 44px 18px;
}

.product-gallery-card:nth-child(2) {
  border-radius: 44px 18px 18px 18px;
}

.product-gallery-card:nth-child(4) {
  border-radius: 18px 18px 18px 44px;
}

.product-gallery-card:nth-child(5) {
  border-radius: 18px 44px 18px 18px;
}

.product-gallery-center {
  align-self: end;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 135, 255, 0.14);
  border-radius: 999px 999px 26px 26px;
  box-shadow: 0 22px 54px rgba(0, 135, 255, 0.12);
  padding: 26px 20px;
  text-align: center;
}

.product-gallery-center h3 {
  color: #050505;
  font-size: clamp(1.18rem, 1.7vw, 1.62rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.gallery-pill {
  background: var(--color-accent);
  border-radius: 999px;
  color: #050505;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 11px 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-pill:hover,
.gallery-pill:focus-visible {
  background: #00964e;
  transform: translateY(-2px);
}

.product-carousel-section {
  padding-top: 28px;
}

.orpro-carousel {
  margin: 0 auto;
  max-width: 1120px;
}

.orpro-carousel-outer {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.orpro-carousel-stage {
  align-items: center;
  display: flex;
  height: 470px;
  justify-content: center;
  perspective: 1400px;
  position: relative;
  width: 100%;
}

.orpro-carousel-card {
  background: #ffffff;
  backface-visibility: hidden;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(15, 27, 43, 0.16), 0 8px 18px rgba(0, 135, 255, 0.1);
  clip-path: inset(0 round 26px);
  cursor: pointer;
  overflow: hidden;
  outline: 1px solid rgba(0, 135, 255, 0.12);
  outline-offset: -1px;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease, opacity 0.35s ease, width 0.35s ease;
  user-select: none;
  width: 260px;
}

.orpro-carousel-card[data-slot="-2"] {
  opacity: 0.34;
  pointer-events: none;
  transform: translateX(-380px) translateZ(-270px) rotateY(28deg);
  width: 205px;
}

.orpro-carousel-card[data-slot="-1"] {
  opacity: 0.72;
  transform: translateX(-232px) translateZ(-120px) rotateY(18deg);
  width: 230px;
}

.orpro-carousel-card[data-slot="0"] {
  opacity: 1;
  transform: translateX(0) translateZ(0) rotateY(0);
  width: 300px;
  z-index: 10;
  box-shadow: 0 34px 82px rgba(0, 135, 255, 0.24), 0 14px 34px rgba(15, 27, 43, 0.18);
}

.orpro-carousel-card[data-slot="1"] {
  opacity: 0.72;
  transform: translateX(232px) translateZ(-120px) rotateY(-18deg);
  width: 230px;
}

.orpro-carousel-card[data-slot="2"] {
  opacity: 0.34;
  pointer-events: none;
  transform: translateX(380px) translateZ(-270px) rotateY(-28deg);
  width: 205px;
}

.orpro-carousel-card[data-slot="hidden"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateZ(-520px);
}

.orpro-card-image {
  aspect-ratio: 3 / 4;
  background: #eef7ff;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.orpro-card-image::after {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), transparent 58%);
  bottom: -1px;
  content: "";
  height: calc(58% + 2px);
  left: 0;
  position: absolute;
  right: 0;
}

.orpro-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  transform: translateZ(0);
  width: 100%;
}

.orpro-carousel-card[data-slot="0"]:hover .orpro-card-image img {
  transform: scale(1.055);
}

.orpro-card-body {
  background: #ffffff;
  border-radius: 0 0 26px 26px;
  padding: 18px 20px 20px;
  text-align: left;
}

.orpro-card-body h3 {
  color: #050505;
  font-size: 1.08rem;
  line-height: 1.1;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orpro-card-body p {
  color: #697386;
  display: -webkit-box;
  font-size: 0.84rem;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.orpro-carousel-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.orpro-nav-btn {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 135, 255, 0.2);
  border-radius: 50%;
  color: #050505;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  line-height: 0;
  padding: 0;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  width: 48px;
}

.orpro-nav-btn svg {
  display: block;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 22px;
}

.orpro-nav-btn:hover,
.orpro-nav-btn:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.orpro-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.orpro-dot {
  background: #cdd8e4;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  transition: background 0.22s ease, width 0.22s ease;
  width: 8px;
}

.orpro-dot.active {
  background: var(--color-primary);
  width: 28px;
}

.pdf-viewer-section {
  padding-top: 70px;
}

.pdf-viewer-card {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 43, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(15, 27, 43, 0.1);
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  overflow: hidden;
}

.pdf-viewer-card iframe {
  background: #f5fbff;
  border: 0;
  display: block;
  height: min(78vh, 820px);
  min-height: 560px;
  width: 100%;
}

.testimonials {
  padding-top: 64px;
}

.testimonials-heading {
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.testimonials-heading h2 {
  color: #050505;
}

.testimonials-heading p:not(.eyebrow) {
  color: #596273;
  margin-top: 16px;
}

.testimonial-slider {
  margin: -28px 0;
  overflow: hidden;
  padding: 28px 0;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  transform: translateX(0);
  transition: transform 0.38s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(15, 27, 43, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 30px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 135, 255, 0.35);
  box-shadow: 0 22px 58px rgba(0, 135, 255, 0.24);
  transform: translateY(-4px);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.testimonial-dot {
  background: #d4dce3;
  border: 0;
  border-radius: 999px;
  height: 8px;
  transition: background 0.2s ease, width 0.2s ease;
  width: 28px;
}

.testimonial-dot.active {
  background: var(--color-primary);
  width: 56px;
}

.quote-mark {
  color: var(--color-primary);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #263241;
  font-size: 0.98rem;
}

.testimonial-author {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
}

.avatar {
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.testimonial-author strong {
  color: #050505;
  display: block;
}

.testimonial-author span {
  color: #6c7480;
  display: block;
  font-size: 0.88rem;
}

.faq-section {
  padding-top: 42px;
}

.faq-panel {
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0;
}

.faq-copy {
  text-align: center;
}

.faq-copy h2 {
  color: #050505;
}

.faq-copy p:not(.eyebrow) {
  color: #596273;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 430px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: transparent;
  border-bottom: 1px solid rgba(15, 27, 43, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-list details[open] {
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.faq-list summary {
  align-items: center;
  color: #050505;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 18px 20px;
  text-align: left;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--color-primary);
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: #596273;
  padding: 0 20px 18px;
}

.faq-list details[open] p {
  animation: faqAnswerIn 0.28s ease both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-section.reveal {
  opacity: 1;
  transform: none;
}

.contact-form-section {
  background: transparent;
  border-radius: 0;
  color: var(--color-text);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  max-width: none;
  padding: 72px max(24px, calc((100vw - var(--max-width)) / 2)) 0;
  width: 100vw;
}

.contact-form-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.contact-form-panel {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 230, 118, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 86% 72%, rgba(0, 230, 118, 0.24) 0 4px, transparent 5px),
    radial-gradient(closest-side at 12% 24%, transparent 68%, rgba(255, 255, 255, 0.15) 69%, rgba(255, 255, 255, 0.15) 72%, transparent 73%),
    radial-gradient(closest-side at 12% 24%, transparent 78%, rgba(0, 230, 118, 0.22) 79%, rgba(0, 230, 118, 0.22) 82%, transparent 83%),
    radial-gradient(closest-side at 94% 84%, transparent 66%, rgba(255, 255, 255, 0.12) 67%, rgba(255, 255, 255, 0.12) 70%, transparent 71%),
    radial-gradient(closest-side at 94% 84%, transparent 78%, rgba(0, 230, 118, 0.14) 79%, rgba(0, 230, 118, 0.14) 82%, transparent 83%),
    var(--color-primary);
  background-position: 8% 16%, 92% 76%, -130px -90px, -130px -90px, calc(100% + 120px) calc(100% + 90px), calc(100% + 120px) calc(100% + 90px), center;
  background-repeat: no-repeat;
  background-size: 220px 220px, 180px 180px, 520px 520px, 620px 620px, 520px 520px, 650px 650px, auto;
  border-radius: 34px;
  color: #ffffff;
  padding: clamp(32px, 5vw, 58px);
}

.contact-form-heading {
  margin-bottom: 32px;
  max-width: 760px;
  text-align: left;
}

.contact-form-heading .eyebrow,
.contact-form-heading .title-accent-word {
  color: #ffffff;
}

.contact-form-heading h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3.25vw, 3.1rem);
  line-height: 1.04;
}

.contact-form-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 100%;
}

.contact-form {
  display: grid;
  gap: 28px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.contact-map {
  background:
    radial-gradient(circle at 12% 102%, transparent 0 42%, rgba(0, 230, 118, 0.16) 43% 67%, transparent 68%),
    radial-gradient(circle at 78% 88%, rgba(255, 255, 255, 0.96) 0 34%, transparent 35%),
    radial-gradient(circle at -8% 18%, rgba(0, 230, 118, 0.08) 0 28%, transparent 29%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 27, 43, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(15, 27, 43, 0.08);
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 14px;
}

.contact-map-copy {
  padding: clamp(24px, 4vw, 44px) clamp(24px, 4vw, 42px) 8px;
}

.contact-map-copy > span {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-map-copy h3 {
  color: #050505;
  font-size: clamp(1.85rem, 3.25vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.contact-map-copy p {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 20px 0 14px;
}


.contact-map-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-map-item {
  align-items: center;
  color: #050505;
  display: grid;
  font-size: 0.98rem;
  font-weight: 700;
  gap: 12px;
  grid-template-columns: 36px 1fr;
  line-height: 1.35;
  text-decoration: none;
}


.contact-map-item span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}
.contact-map-item::before {
  background: var(--color-primary);
  content: "";
  display: block;
  height: 22px;
  justify-self: center;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 22px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.contact-map-address::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-map-email::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
}

.contact-map-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.contact-map iframe {
  border: 0;
  border-radius: 22px;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  min-height: 460px;
  width: 100%;
}
.form-grid {
  display: grid;
  gap: 28px 34px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #ffffff;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  color: #ffffff;
  font: inherit;
  min-height: 46px;
  outline: none;
  padding: 8px 0 12px;
  transition: border-color 0.2s ease;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 8px 8px, 8px 8px;
  padding-right: 38px;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--color-accent);
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.custom-select {
  position: relative;
}

.custom-select-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  display: flex;
  font: inherit;
  justify-content: space-between;
  min-height: 46px;
  padding: 8px 0 12px;
  text-align: left;
  width: 100%;
}

.custom-select-toggle::after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 10px;
  margin-right: 8px;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s ease;
  width: 10px;
}

.custom-select.open .custom-select-toggle {
  border-color: var(--color-accent);
}

.custom-select.open .custom-select-toggle::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.custom-select-menu {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 135, 255, 0.16);
  display: grid;
  gap: 2px;
  left: 0;
  max-height: 230px;
  opacity: 0;
  overflow-y: auto;
  padding: 12px 6px 12px 16px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 15;
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: rgba(0, 135, 255, 0.20);
  border-radius: 999px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 999px;
}

.custom-select-menu button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #050505;
  font: inherit;
  padding: 13px 10px;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-select-menu button:hover,
.custom-select-menu button.active {
  background: rgba(0, 135, 255, 0.09);
  color: var(--color-primary);
}

.form-field-full {
  grid-column: 1 / -1;
}

.privacy-check {
  align-items: start;
  display: flex !important;
  gap: 14px;
  max-width: 900px;
}

.privacy-check input {
  appearance: none;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  flex: 0 0 auto;
  height: 28px;
  margin-top: 2px;
  min-height: 28px;
  padding: 0;
  width: 28px;
}

.privacy-check input:checked {
  background: var(--color-accent);
  box-shadow: inset 0 0 0 5px var(--color-primary);
}

.privacy-check span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400 !important;
  line-height: 1.5;
}

.form-submit {
  border: 0;
  justify-self: center;
  box-shadow: 0 16px 34px rgba(0, 230, 118, 0.30);
  gap: 18px;
  min-width: 0;
  padding: 12px 12px 12px 28px;
}

.form-submit::after {
  height: 46px;
  margin: 0;
  width: 46px;
}

.form-submit:hover {
  box-shadow: 0 18px 36px rgba(0, 230, 118, 0.24);
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32);
  color: #ffffff;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 62px;
  z-index: 998;
}

.whatsapp-float svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 32px;
}

.whatsapp-float::after {
  background: #25d366;
  border-radius: 999px;
  color: #ffffff;
  content: "Escríbenos";
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  padding: 10px 14px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 12px);
  transform: translateX(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.whatsapp-float:hover {
  background: #25d366;
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.34);
  transform: translateX(-8px);
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.cta-band {
  align-items: center;
  background:
    radial-gradient(circle at 14% 20%, rgba(99, 198, 167, 0.38), transparent 18rem),
    #050505;
  border-radius: 42px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  margin-bottom: 84px;
  padding: 54px;
  text-align: center;
}

.cta-band h2 {
  color: #ffffff;
  max-width: 820px;
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.cta-band .eyebrow {
  color: var(--color-accent);
}

.page-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.04fr 0.84fr;
  padding: 76px 0 34px;
}

.page-hero h1 {
  color: #050505;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.page-hero img {
  aspect-ratio: 0.95 / 1;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.page-hero p:not(.eyebrow) {
  margin-top: 26px;
  max-width: 760px;
}

.about-page {
  padding-top: 0;
}

.about-banner {
  align-items: center;
  background: #050505;
  color: #ffffff;
  display: grid;
  height: 100svh;
  min-height: 590px;
  overflow: hidden;
  padding: 160px max(24px, calc((100vw - var(--max-width)) / 2)) 104px;
  position: relative;
}

.about-banner img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  width: 100%;
  will-change: transform;
}

.about-banner-copy + img {
  display: none;
}

.about-banner::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.64) 44%, rgba(5, 5, 5, 0.18) 78%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-banner-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.about-banner h1 {
  color: #ffffff;
  font-size: clamp(2.55rem, 5.6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.06;
}

.about-banner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  margin-top: 18px;
  max-width: 540px;
}

.about-banner .btn {
  margin-top: 34px;
}

.about-video {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.82fr 1.18fr;
}

.about-video-copy {
  max-width: 470px;
}

.about-video-copy h2 {
  color: #050505;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}

.about-video-copy p:not(.eyebrow) {
  color: #394452;
  font-size: 1.02rem;
  line-height: 1.7;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 0;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.about-story {
  text-align: center;
}

.about-story-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.95fr 1.05fr;
  text-align: left;
}

.about-story-grid img,
.about-final img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
}

.about-story-grid p {
  color: #394452;
  font-size: 1.06rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.mission-vision {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.mission-vision article {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.mission-icon {
  align-items: center;
  background: transparent;
  color: rgba(0, 135, 255, 0.12);
  display: inline-flex;
  height: 146px;
  justify-content: center;
  margin: 0;
  position: absolute;
  right: 28px;
  top: 22px;
  width: 146px;
}

.mission-icon svg {
  fill: none;
  height: 128px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 128px;
}

.mission-vision span {
  color: #050505;
  display: inline-block;
  font-size: clamp(1.85rem, 3.25vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 34px;
  padding-bottom: 16px;
  position: relative;
  text-transform: none;
  z-index: 1;
}

.mission-vision span::after {
  background: var(--color-accent);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 54px;
}

.mission-vision h2 {
  color: #050505;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  margin-bottom: 16px;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.mission-vision p {
  position: relative;
  z-index: 1;
}

.about-services .process-grid article {
  text-align: center;
}

.about-final {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 0.9fr;
}

.about-final > div {
  text-align: left;
}

.about-final p:not(.eyebrow) {
  color: #394452;
  font-size: 1.06rem;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 680px;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid article {
  padding: 34px;
}

.values-grid h2 {
  font-size: 1.55rem;
  line-height: 1.14;
  margin-bottom: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  padding: 28px;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.product-lines {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.product-detail-hero .btn {
  margin-top: 30px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.product-hero-actions .btn {
  margin-top: 0;
}

.btn-brochure {
  background: transparent;
  border: 1px solid #050505;
  color: #050505;
}

.btn-brochure::after {
  background: #050505;
  color: #ffffff;
}

.btn-brochure:hover {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-brochure:hover::after {
  background: #050505;
  color: #ffffff;
}

.product-detail-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.product-detail-grid article {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px;
}

.product-detail-grid span {
  color: var(--color-primary);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.product-detail-grid h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin-bottom: 14px;
}

.product-education {
  padding-top: 74px;
}

.product-info-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.product-info-grid article {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.product-info-grid span {
  color: var(--color-primary);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.product-info-grid h2 {
  color: #050505;
  font-size: clamp(1.28rem, 2vw, 1.76rem);
  margin-bottom: 12px;
}

.product-info-grid p {
  color: #4b5563;
}

.product-note {
  color: #596273;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 26px auto 0;
  max-width: 900px;
  text-align: center;
}

.brochure-cta {
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 38px;
}

.brochure-cta > div {
  max-width: 720px;
}

.brochure-cta h2 {
  color: #050505;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.brochure-cta p:not(.eyebrow) {
  color: #4b5563;
  font-size: 1rem;
}

.line-card {
  padding: 38px;
}

.line-card h2 {
  font-size: 1.9rem;
  line-height: 1.12;
  margin-bottom: 18px;
}

.line-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-left: 20px;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-page {
  padding-top: 120px;
}

.blog-hero {
  padding-bottom: 34px;
  padding-top: 34px;
  text-align: center;
}

.blog-hero h1 {
  color: #050505;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 820px;
}

.blog-hero p:not(.eyebrow) {
  color: #596273;
  margin: 20px auto 0;
  max-width: 660px;
}

.blog-search {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  margin: 28px auto 22px;
  max-width: 430px;
  padding: 6px 8px 6px 18px;
}

.blog-search input {
  background: transparent;
  border: 0;
  color: #050505;
  flex: 1;
  font: inherit;
  min-width: 0;
  outline: 0;
}

.blog-search button {
  align-items: center;
  background: var(--color-accent);
  border: 0;
  border-radius: 50%;
  color: #050505;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.blog-topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.blog-topic-tabs a {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: #050505;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 16px;
}

.blog-topic-tabs a.active,
.blog-topic-tabs a:hover {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.blog-feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 26px;
}

.blog-feature-card,
.top-blog-main,
.top-blog-list article {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.blog-feature-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.blog-feature-card div {
  padding: 24px;
}

.blog-feature-card span,
.top-blog-main span,
.top-blog-list span {
  color: #596273;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-feature-card h2 {
  color: #050505;
  font-size: 1.3rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.blog-feature-card p {
  color: #596273;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.blog-feature-card a,
.blog-card-link {
  color: #050505;
  font-weight: 800;
}

.top-blog-section {
  padding-top: 84px;
}

.top-blog-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.03fr 0.97fr;
}

.top-blog-main {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.top-blog-main h2 {
  color: #050505;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.02;
  margin-bottom: 14px;
}

.top-blog-main p {
  color: #596273;
}

.top-blog-main img {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
}

.top-blog-list {
  display: grid;
  gap: 14px;
}

.top-blog-list article {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr 42px;
  padding: 12px;
}

.top-blog-list article.wide {
  align-items: end;
  grid-template-columns: 1fr 42px;
  min-height: 280px;
  position: relative;
}

.top-blog-list article.wide img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.top-blog-list img {
  aspect-ratio: 1.35 / 1;
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
}

.top-blog-list h3 {
  color: #050505;
  font-size: 1.04rem;
  line-height: 1.18;
}

.top-blog-list a {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: #050505;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
  z-index: 1;
}

.top-blog-list article.wide div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.blog-card {
  padding: 32px;
}

.blog-card h2 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.blog-card p {
  margin-bottom: 20px;
}

.featured-post {
  grid-column: span 2;
}

.featured-post h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.newsletter {
  margin-bottom: 84px;
  padding: 46px;
}

.newsletter p {
  margin: 18px 0 28px;
  max-width: 720px;
}

.footer {
  background: #050505;
  color: #ffffff;
  border-top: 0;
  margin-top: 20px;
  max-width: none;
  overflow: hidden;
  padding: 104px max(28px, calc((100vw - 1280px) / 2)) 78px;
  position: relative;
  width: 100%;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.78fr));
  margin: 0 auto 46px;
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.footer-column {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 16px;
}

.footer h3 {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  color: rgba(248, 247, 243, 0.88);
  display: block;
  font-family: inherit;
  font-size: clamp(0.92rem, 1.03vw, 1.08rem);
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact a {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-contact a::before {
  background: currentColor;
  content: "";
  flex: 0 0 18px;
  height: 18px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0.78;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 18px;
}

.footer-contact a[href^="mailto:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.footer-contact a[href^="tel:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.footer-contact .footer-address::before,
.footer-contact a[href*="maps.app"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.footer-about p {
  color: rgba(248, 247, 243, 0.72);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.48;
  max-width: 320px;
}

.footer-brand-row {
  display: block;
  bottom: 52px;
  left: 50%;
  margin: 0;
  max-width: 1280px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 56px));
  z-index: 0;
}

.footer-brand-row strong {
  color: #a8a2a2;
  display: block;
  font-family: inherit;
  font-size: clamp(4.6rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.8;
  opacity: 0.42;
  text-transform: uppercase;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  margin: 68px auto 0;
  max-width: 1280px;
  padding-top: 22px;
  position: relative;
  z-index: 1;
}

.footer-bottom span,
.footer-bottom a {
  color: rgba(248, 247, 243, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.footer-bottom span {
  margin-right: auto;
}

.section-heading h2,
.stats-heading h2,
.about-orprotec h2,
.testimonials-heading h2,
.faq-copy h2,
.contact-form-heading h2,
.about-video-copy h2,
.about-final h2,
.brochure-cta h2,
.blog-hero h1,
.page-hero h1 {
  color: #050505;
}

.hero-slide h1,
.about-banner h1,
.cta-band h2,
.footer h2,
.footer h3 {
  color: #ffffff;
}
.contact-form-panel .contact-form-heading h2,
.contact-form-panel .contact-form-heading .title-accent-word {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-gallery-center {
    align-self: stretch;
    border-radius: 24px;
    grid-column: span 2;
    order: -1;
  }

  .product-gallery-card {
    min-height: 300px;
  }

  .product-gallery-small,
  .product-gallery-tall {
    min-height: 300px;
  }

  .orpro-carousel-stage {
    height: 430px;
    perspective: 1050px;
  }

  .orpro-carousel-card[data-slot="-2"],
  .orpro-carousel-card[data-slot="2"] {
    opacity: 0;
  }

  .orpro-carousel-card[data-slot="-1"] {
    transform: translateX(-190px) translateZ(-110px) rotateY(16deg);
    width: 210px;
  }

  .orpro-carousel-card[data-slot="0"] {
    width: 270px;
  }

  .orpro-carousel-card[data-slot="1"] {
    transform: translateX(190px) translateZ(-110px) rotateY(-16deg);
    width: 210px;
  }

  .product-card,
  .product-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 14px 0;
  }

  .navbar {
    min-height: 82px;
    max-width: calc(100vw - 28px);
    padding: 0 18px 0 22px;
  }

  .hero-slider {
    height: 100svh;
    min-height: 560px;
  }

  .stats-section {
    border-radius: 32px 32px 0 0;
    margin-top: -86px;
    padding-top: 104px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    height: 100%;
    padding: 136px 24px 92px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
  }
  .contact-map iframe {
    min-height: 360px;
  }

  .hero-slide img {
    height: 100%;
    inset: 0;
    max-height: none;
    position: absolute;
    width: 100%;
  }

  .hero-slide-sports img {
    object-position: 62% center;
  }

  .hero-slide-hip img {
    object-position: 72% center;
  }

  .hero-slide-trauma img {
    object-position: 42% center;
  }

  .hero-slide::after {
    background: transparent;
  }

  .about-banner {
    height: 100svh;
    min-height: 560px;
    padding: 136px 24px 92px;
  }

  .about-banner img {
    object-position: 42% center;
  }

  .about-banner::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72) 58%, rgba(5, 5, 5, 0.34)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.52));
  }

  .slider-controls {
    bottom: 128px;
    left: 24px;
  }

  .split,
  .page-hero,
  .about-video,
  .about-story-grid,
  .about-final {
    grid-template-columns: 1fr;
  }

  .about-video,
  .about-story-grid,
  .about-final > div {
    text-align: center;
  }

  .about-video-copy {
    margin: 0 auto;
  }

  .about-final p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip,
  .values-grid,
  .product-lines,
  .product-detail-grid,
  .product-info-grid,
  .blog-feature-grid,
  .top-blog-layout,
  .blog-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid article {
    flex-basis: min(48%, 360px);
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery-center {
    grid-column: 1 / -1;
  }

  .orpro-carousel-stage {
    height: 390px;
  }

  .orpro-carousel-card[data-slot="-1"] {
    transform: translateX(-160px) translateZ(-90px) rotateY(15deg);
    width: 190px;
  }

  .orpro-carousel-card[data-slot="0"] {
    width: 245px;
  }

  .orpro-carousel-card[data-slot="1"] {
    transform: translateX(160px) translateZ(-90px) rotateY(-15deg);
    width: 190px;
  }

  .top-blog-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .faq-panel {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: center;
    flex-direction: column;
  }

  .brochure-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mission-icon {
    height: 124px;
    right: 24px;
    top: 24px;
    width: 124px;
  }

  .mission-icon svg {
    height: 108px;
    width: 108px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .about-orprotec h2 {
    white-space: normal;
  }

  body {
    background-attachment: scroll;
  }

  .navbar {
    border-radius: 34px;
    min-height: 70px;
  }

  .hero-slider {
    height: 100svh;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    background: #ffffff;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 27, 43, 0.14);
    display: none;
    gap: 4px;
    left: 14px;
    padding: 16px 20px 20px;
    position: absolute;
    right: 14px;
    top: calc(100% + 8px);
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    border-radius: 999px;
    padding: 13px 16px;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-menu {
    background: rgba(0, 135, 255, 0.05);
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    display: none;
    left: auto;
    margin-top: 4px;
    min-width: 0;
    opacity: 1;
    padding: 8px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-slide {
    padding-bottom: 120px;
  }

  .slider-controls {
    bottom: 78px;
  }

  .hero-slider ~ .section:not(.contact-form-section) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-section {
    margin-top: -42px;
    padding-top: 72px;
  }

  .trust-strip,
  .values-grid,
  .product-lines,
  .product-detail-grid,
  .product-info-grid,
  .blog-feature-grid,
  .blog-grid,
  .why-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .contact-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 460px) {
  .top-bar {
    font-size: 0.72rem;
  }

  .logo {
    font-size: 1.22rem;
  }

  .logo img {
    max-height: 48px;
    width: 150px;
  }

  .logo-mark {
    height: 40px;
    width: 40px;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-slider {
    border-radius: 0;
  }

  .hero-slide-sports img {
    object-position: 58% center;
  }

  .hero-slide-hip img {
    object-position: 76% center;
  }

  .hero-slide-trauma img {
    object-position: 36% center;
  }

  .whatsapp-float {
    bottom: 18px;
    height: 56px;
    right: 18px;
    width: 56px;
  }

  .whatsapp-float::after {
    display: none;
  }

  .section,
  .trust-strip,
  .page-hero {
    width: calc(100% - 24px);
  }
}
















/* Dynamic polish */
.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide p:not(.eyebrow),
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

.hero-slide.active .eyebrow,
.hero-slide.active h1,
.hero-slide.active p:not(.eyebrow),
.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.active h1 { transition-delay: 0.08s; }
.hero-slide.active p:not(.eyebrow) { transition-delay: 0.16s; }
.hero-slide.active .hero-actions { transition-delay: 0.24s; }

.slider-dot,
.testimonial-dot,
.orpro-nav-btn,
.custom-select-toggle,
.faq-list summary {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal {
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible { transform: translateY(0) scale(1); }

.reveal.visible .product-card,
.reveal.visible .why-grid article,
.reveal.visible .testimonial-card,
.reveal.visible .blog-card,
.reveal.visible .line-card,
.reveal.visible .values-grid article,
.reveal.visible .process-grid article {
  animation: cardLiftIn 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal.visible .product-card:nth-child(2),
.reveal.visible .why-grid article:nth-child(2),
.reveal.visible .testimonial-card:nth-child(2),
.reveal.visible .blog-card:nth-child(2) { animation-delay: 0.08s; }

.reveal.visible .product-card:nth-child(3),
.reveal.visible .why-grid article:nth-child(3),
.reveal.visible .testimonial-card:nth-child(3),
.reveal.visible .blog-card:nth-child(3) { animation-delay: 0.16s; }

@keyframes cardLiftIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stats-section.stats-complete .trust-strip strong { color: #050505; }

@keyframes statNumberPop {
  from { opacity: 0; transform: translateY(14px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}



.why-grid article::before {
  animation: whyCardPatternDrift 12s ease-in-out infinite alternate;
}

.why-grid article:nth-child(2)::before {
  animation-duration: 14s;
}

.why-grid article:nth-child(3)::before {
  animation-duration: 16s;
}

.why-grid article:hover::before {
  animation-duration: 5.5s;
  opacity: 0.86;
}

@keyframes whyCardPatternDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
    transform: scale(1);
  }

  to {
    background-position: 30px -18px, -24px 32px, 42px 18px;
    transform: scale(1.035);
  }
}

.product-card,
.line-card,
.blog-card,
.values-grid article,
.process-grid article,
.testimonial-card,
.orpro-carousel-card { will-change: transform; }

.product-card:hover,
.line-card:hover,
.blog-card:hover,
.values-grid article:hover,
.process-grid article:hover { box-shadow: 0 24px 54px rgba(15, 27, 43, 0.12); }

.product-card::after,
.orpro-nav-btn,
.whatsapp-float,
.form-submit::after { transition-duration: 0.28s; }

.orpro-carousel-card[data-slot="0"] { animation: carouselCenterBreath 4.8s ease-in-out infinite; }

@keyframes carouselCenterBreath {
  0%, 100% { box-shadow: 0 34px 82px rgba(0, 135, 255, 0.24), 0 14px 34px rgba(15, 27, 43, 0.18); }
  50% { box-shadow: 0 38px 92px rgba(0, 135, 255, 0.30), 0 16px 38px rgba(15, 27, 43, 0.2); }
}

.faq-list summary::after { transition: transform 0.28s ease, color 0.22s ease; }
.faq-list details[open] summary::after { color: var(--color-accent); transform: rotate(180deg); }
.faq-list details p { animation-duration: 0.36s; }

.whatsapp-float { animation: whatsappPulse 3.8s ease-in-out infinite; }

@keyframes whatsappPulse {
  0%, 70%, 100% { box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32); transform: translateX(0) scale(1); }
  82% { box-shadow: 0 18px 42px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.12); transform: translateX(0) scale(1.035); }
}

.whatsapp-float:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Stats visual alignment */
.stats-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -10px 30px rgba(15, 27, 43, 0.055);
  margin-top: -46px;
  padding-top: 72px;
  padding-bottom: 58px;
}

.stats-heading {
  margin-bottom: 34px;
  max-width: 840px;
}

.stats-heading h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.1rem);
  letter-spacing: 0;
}

.stats-heading p:not(.eyebrow) {
  color: #596273;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.trust-strip.stats-strip {
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1040px;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.trust-strip.stats-strip article {
  align-content: center;
  background: transparent;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
  display: grid;
  min-height: 172px;
  overflow: hidden;
  padding: 34px 22px 30px;
  position: relative;
  text-align: center;
}

.trust-strip.stats-strip article + article {
  border-left: 0;
}

.trust-strip.stats-strip article::before {
  background: rgba(0, 135, 255, 0.1);
  border-radius: 42% 36% 48% 34%;
  content: "";
  height: 132px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  width: min(230px, 82%);
  z-index: 0;
}

.trust-strip.stats-strip article:nth-child(2)::before {
  background: rgba(0, 230, 118, 0.16);
  border-radius: 36% 48% 34% 42%;
  transform: translate(-50%, -50%) rotate(5deg);
}

.trust-strip.stats-strip article:nth-child(3)::before {
  background: rgba(0, 135, 255, 0.09);
  border-radius: 48% 34% 42% 36%;
  transform: translate(-50%, -50%) rotate(7deg);
}

.trust-strip.stats-strip article::after {
  display: none;
}

.trust-strip.stats-strip strong {
  color: #050505;
  font-size: clamp(2.75rem, 5vw, 4.55rem);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.trust-strip.stats-strip p {
  color: #3f4650;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 650;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  max-width: 190px;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .trust-strip.stats-strip {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .stats-section {
    margin-top: -38px;
    padding-top: 62px;
    padding-bottom: 46px;
  }

  .trust-strip.stats-strip article + article {
    border-left: 0;
    border-top: 0;
  }
}












/* Unified heading weight */
h1,
h2,
h3,
.section-heading h2,
.stats-heading h2,
.about-orprotec h2,
.testimonials-heading h2,
.faq-copy h2,
.contact-form-heading h2,
.contact-map-copy h3,
.about-video-copy h2,
.about-final h2,
.brochure-cta h2,
.blog-hero h1,
.page-hero h1,
.hero-slide h1,
.about-banner h1,
.cta-band h2,
.mission-vision h2,
.values-grid h2,
.product-detail-grid h2,
.product-info-grid h2,
.line-card h2,
.blog-feature-card h2,
.top-blog-main h2,
.blog-card h2,
.featured-post h2,
.footer h2,
.footer h3,
.title-accent-word {
  font-weight: 700;
}






/* UX polish pass: spacing, mobile and contrast */
:root {
  --section-space-desktop: clamp(72px, 8vw, 108px);
  --section-space-mobile: clamp(52px, 12vw, 72px);
}

.section {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.hero-slider ~ .section:not(.contact-form-section) {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.stats-section {
  padding-bottom: clamp(52px, 6vw, 76px);
}

.stats-section + .products-preview {
  padding-top: clamp(70px, 7vw, 96px);
}

.section-heading,
.stats-heading,
.testimonials-heading,
.faq-copy,
.contact-form-heading {
  margin-bottom: clamp(26px, 3vw, 38px);
}

.contact-form-panel {
  min-height: 100%;
}

.contact-form-panel .contact-form-heading h2,
.contact-form-panel .contact-form-heading p:not(.eyebrow),
.contact-form label span,
.custom-select-toggle,
.privacy-check span {
  text-shadow: 0 1px 18px rgba(0, 57, 110, 0.18);
}

.contact-form-panel .contact-form-heading p:not(.eyebrow),
.privacy-check span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form select,
.custom-select-toggle {
  border-bottom-color: rgba(255, 255, 255, 0.82);
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.why-grid p,
.product-card p,
.product-gallery-card p,
.slide-copy p:not(.eyebrow),
.about-video-copy p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .section,
  .hero-slider ~ .section:not(.contact-form-section) {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .stats-section {
    padding-top: 92px;
    padding-bottom: 56px;
  }

  .stats-section + .products-preview {
    padding-top: 64px;
  }

  .contact-form-section {
    padding-top: 58px;
  }

  .contact-form-panel,
  .contact-map {
    border-radius: 26px;
  }

  .contact-map-copy {
    padding: 30px 26px 8px;
  }
}

@media (max-width: 760px) {
  .section,
  .hero-slider ~ .section:not(.contact-form-section) {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-heading,
  .stats-heading,
  .testimonials-heading,
  .faq-copy,
  .contact-form-heading {
    margin-bottom: 24px;
  }

  .contact-form-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 52px;
  }

  .contact-form-layout {
    gap: 22px;
  }

  .contact-form-panel {
    padding: 30px 22px;
  }

  .form-grid {
    gap: 22px;
  }

  .contact-map {
    padding: 12px;
  }

  .contact-map-copy {
    padding: 26px 20px 6px;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .trust-strip,
  .values-grid,
  .product-lines,
  .product-detail-grid,
  .product-info-grid,
  .blog-feature-grid,
  .top-blog-layout,
  .blog-grid,
  .why-grid,
  .product-grid,
  .footer-grid {
    gap: 18px;
  }

  .product-card,
  .why-grid article,
  .testimonial-card {
    border-radius: 24px;
  }
}

@media (max-width: 460px) {
  .contact-form-panel {
    padding: 28px 18px;
  }

  .contact-map-copy h3,
  .contact-form-heading h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .contact-map-item {
    font-size: 0.92rem;
    grid-template-columns: 30px 1fr;
  }

  .contact-map-item::before {
    height: 20px;
    width: 20px;
  }
}

/* Product form modal */
.product-info-float {
  align-items: center;
  background: var(--color-primary);
  border: 0;
  border-radius: 999px;
  bottom: 96px;
  box-shadow: 0 18px 42px rgba(0, 135, 255, 0.24);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  position: fixed;
  right: 24px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  z-index: 998;
}

.product-info-float::before {
  background: currentColor;
  content: "";
  height: 20px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M10 9H8'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M10 9H8'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.product-info-float:hover,
.product-info-float:focus-visible {
  background: #006dcc;
  box-shadow: 0 20px 48px rgba(0, 135, 255, 0.28);
  transform: translateY(-2px);
}

body.product-page .contact-form-section {
  align-items: center;
  background: rgba(5, 5, 5, 0.58);
  display: none;
  inset: 0;
  margin: 0;
  max-width: none;
  overflow-y: auto;
  padding: 8px;
  position: fixed;
  scrollbar-width: none;
  width: 100%;
  z-index: 1200;
}

body.product-page.product-form-open {
  overflow: hidden;
}
body.product-page.product-form-open .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.product-page.product-form-open .contact-form-section {
  display: grid;
  opacity: 1;
  transform: none;
}

body.product-page .contact-form-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  max-width: min(1120px, calc(100vw - 220px));
  width: min(1120px, calc(100vw - 220px));
}

body.product-page .contact-map {
  display: none;
}

body.product-page .contact-form-panel {
  align-content: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  display: grid;
  min-height: min(78svh, 760px);
  max-height: calc(100svh - 96px);
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
}

body.product-page .contact-form-panel::-webkit-scrollbar,
body.product-page .contact-form-section::-webkit-scrollbar {
  display: none;
}
body.product-page .contact-form-panel {
  border-radius: 28px;
  padding: clamp(34px, 4vw, 58px);
}

body.product-page .contact-form-heading {
  margin: 0 auto 26px;
  max-width: 760px;
  padding-left: 44px;
  padding-right: 44px;
  text-align: center;
}

body.product-page .contact-form-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1;
}

body.product-page .contact-form-heading p:not(.eyebrow) {
  font-size: 0.96rem;
  line-height: 1.42;
  margin: 12px auto 0;
  max-width: 620px;
}

body.product-page .contact-form,
body.product-page .form-grid {
  gap: 22px 30px;
}

body.product-page .contact-form label {
  gap: 5px;
}

body.product-page .contact-form label span,
body.product-page .privacy-check span {
  font-size: 0.9rem;
}

body.product-page .contact-form input,
body.product-page .contact-form select,
body.product-page .custom-select-toggle {
  font-size: 0.92rem;
  min-height: 38px;
  padding-bottom: 8px;
  padding-top: 6px;
}

body.product-page .privacy-check {
  gap: 10px;
  margin-top: 0;
}

body.product-page .privacy-check input {
  height: 24px;
  width: 24px;
}

body.product-page .form-submit {
  justify-self: center;
  margin-top: 8px;
  min-height: 56px;
  padding: 11px 12px 11px 28px;
}

.product-form-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.45rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.product-form-close:hover,
.product-form-close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

@media (max-width: 760px) {
  .product-info-float {
    bottom: 84px;
    min-height: 48px;
    padding: 10px 15px;
    right: 18px;
  }

  body.product-page .contact-form-section {
    padding: 8px;
  }

  body.product-page .contact-form-panel {
    max-height: calc(100svh - 14px);
  }
}









@media (max-width: 1100px) {
  body.product-page .contact-form-layout {
    max-width: min(920px, calc(100vw - 48px));
    width: min(920px, calc(100vw - 48px));
  }

  body.product-page .contact-form-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.product-page .contact-form-layout {
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }

  body.product-page .contact-form-heading {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Product modal refinements */
body.product-page .privacy-check {
  align-items: flex-start;
}

body.product-page .privacy-check input {
  flex: 0 0 24px;
  height: 24px;
  margin-top: 2px;
  min-height: 24px;
  width: 24px;
}

body.product-page .product-info-float {
  bottom: 24px;
}

body.product-page .whatsapp-float {
  bottom: 96px;
}

@media (max-width: 760px) {
  body.product-page .product-info-float {
    bottom: 18px;
  }

  body.product-page .whatsapp-float {
    bottom: 84px;
  }
}

/* Home product vertical cards */
.product-vertical-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-vertical-grid .product-card,
.product-vertical-grid .product-card-wide {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.00) 42%),
    var(--product-card-image),
    var(--product-card-color);
  background-position: center, center bottom, center;
  background-repeat: no-repeat;
  background-size: auto, auto 54%, auto;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(15, 27, 43, 0.08);
  color: var(--product-card-ink, #ffffff);
  grid-column: auto;
  isolation: isolate;
  min-height: clamp(430px, 45vw, 570px);
  padding: clamp(24px, 2.4vw, 34px);
  text-decoration: none;
}

.product-vertical-grid .product-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.16), transparent 44%);
  inset: 0;
  opacity: 0.9;
  z-index: -1;
}

.product-vertical-grid .product-card::after {
  display: none;
}

.product-vertical-grid .product-card span {
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  color: #050505;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 6px 12px;
}

.product-vertical-grid .product-card h3 {
  color: var(--product-card-ink, #ffffff);
  font-size: clamp(1.75rem, 2.6vw, 3.05rem);
  line-height: 0.98;
  margin: 0;
  max-width: 100%;
}

.product-vertical-grid .product-card p {
  color: color-mix(in srgb, var(--product-card-ink, #ffffff) 88%, transparent);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.38;
  margin: 16px 0 0;
  max-width: 100%;
  opacity: 1;
  transform: none;
}

.product-card-cta {
  align-items: center;
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: #050505;
  display: inline-flex;
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 800;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
  min-height: 56px;
  padding: 8px 8px 8px 22px;
  position: relative;
  width: min(100%, 250px);
  z-index: 1;
}

.product-card-cta i {
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-style: normal;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto, auto 59%, auto;
  transform: translateY(-6px);
}

.product-vertical-grid .product-card:hover .product-card-cta,
.product-vertical-grid .product-card:focus-visible .product-card-cta {
  background: #ffffff;
}

.product-vertical-grid .product-card:hover .product-card-cta i,
.product-vertical-grid .product-card:focus-visible .product-card-cta i {
  background: var(--color-accent);
  color: #050505;
}

.product-vertical-grid .product-card-cadera {
  --product-card-color: #0087FF;
  --product-card-image: url("assets/img/artroplastia-cadera.jpg");
  --product-card-ink: #ffffff;
}

.product-vertical-grid .product-card-rodilla {
  --product-card-color: #00e676;
  --product-card-image: url("assets/img/orprotec-hero-2.png");
  --product-card-ink: #050505;
}

.product-vertical-grid .product-card-osteosintesis {
  --product-card-color: #0d589b;
  --product-card-image: url("assets/img/orprotec-hero-1.png");
  --product-card-ink: #ffffff;
}

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

@media (max-width: 680px) {
  .product-vertical-grid {
    grid-template-columns: 1fr;
  }

  .product-vertical-grid .product-card {
    min-height: 430px;
  }
}

/* Product cards corporate refinement */
.product-vertical-grid {
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.product-vertical-grid .product-card,
.product-vertical-grid .product-card-wide {
  --product-card-ink: #050505;
  align-items: flex-start;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.74) 0 8px, transparent 9px),
    radial-gradient(circle at 92% 28%, rgba(255, 255, 255, 0.48) 0 5px, transparent 6px),
    radial-gradient(closest-side at 100% 100%, transparent 67%, rgba(255, 255, 255, 0.22) 68%, rgba(255, 255, 255, 0.22) 71%, transparent 72%),
    linear-gradient(135deg, color-mix(in srgb, var(--product-card-color) 92%, #ffffff 8%), var(--product-card-color));
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid color-mix(in srgb, var(--product-card-color) 48%, transparent);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 27, 43, 0.08);
  color: var(--product-card-ink);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  position: relative;
}

.product-vertical-grid .product-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  inset: 0;
  opacity: 0.22;
  z-index: 0;
}

.product-vertical-grid .product-card > * {
  position: relative;
  z-index: 1;
}

.product-vertical-grid .product-card span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #050505;
  margin-bottom: 28px;
}

.product-vertical-grid .product-card span::before {
  color: var(--product-card-number-color, var(--color-primary));
  content: var(--product-card-number);
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 18px;
}

.product-vertical-grid .product-card h3 {
  color: var(--product-card-ink);
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  line-height: 1;
  max-width: 520px;
}

.product-vertical-grid .product-card p {
  color: color-mix(in srgb, var(--product-card-ink) 72%, transparent);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 18px;
  max-width: 500px;
}

.product-card-cta {
  align-self: end;
  justify-self: start;
  margin-top: 34px;
  width: auto;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto;
  box-shadow: 0 28px 68px rgba(15, 27, 43, 0.12);
  transform: translateY(-6px);
}

.product-vertical-grid .product-card-cadera {
  --product-card-color: #eaf5ff;
  --product-card-number: "01";
  --product-card-number-color: var(--color-primary);
}

.product-vertical-grid .product-card-rodilla {
  --product-card-color: #e7fff2;
  --product-card-number: "02";
  --product-card-number-color: #00964e;
}

.product-vertical-grid .product-card-osteosintesis {
  --product-card-color: #f3f6f8;
  --product-card-number: "03";
  --product-card-number-color: var(--color-primary);
}

@media (max-width: 760px) {
  .product-vertical-grid {
    grid-template-columns: 1fr;
  }

  .product-vertical-grid .product-card {
    min-height: 300px;
  }
}

/* Product cards gallery showcase */
.products-preview .section-heading {
  max-width: 760px;
}

.product-vertical-grid {
  align-items: center;
  background:
    radial-gradient(circle at 9% 12%, rgba(0, 135, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 86%, rgba(0, 230, 118, 0.10) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(0, 135, 255, 0.08), rgba(0, 230, 118, 0.08));
  background-size: 26px 26px, 30px 30px, auto;
  border: 1px solid rgba(15, 27, 43, 0.06);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(15, 27, 43, 0.10);
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  padding: clamp(20px, 3vw, 34px);
}

.product-vertical-grid .product-card,
.product-vertical-grid .product-card-wide {
  --product-card-ink: #050505;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0)),
    var(--product-card-image),
    var(--product-card-color, #ffffff);
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: auto, cover, auto;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 27, 43, 0.12);
  color: var(--product-card-ink);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 5, 0.05) 42%, rgba(5, 5, 5, 0.46));
  inset: 0;
  opacity: 1;
  z-index: 0;
}

.product-vertical-grid .product-card::after {
  display: none;
}

.product-vertical-grid .product-card > * {
  position: relative;
  z-index: 1;
}

.product-vertical-grid .product-card span {
  align-self: start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #050505;
  font-size: 0.68rem;
  font-weight: 800;
  margin: 0;
  padding: 7px 12px;
  width: max-content;
}

.product-vertical-grid .product-card span::before {
  content: none;
}

.product-vertical-grid .product-card h3 {
  align-self: end;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1;
  margin: auto 0 16px;
  max-width: 260px;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.product-vertical-grid .product-card p {
  display: none;
}

.product-card-ghost {
  align-self: end;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.16);
  color: #050505;
  justify-self: stretch;
  margin: 0;
  min-height: 52px;
  padding: 7px 7px 7px 18px;
  width: 100%;
}

.product-card-ghost i {
  background: #050505;
  color: #ffffff;
  height: 38px;
  width: 38px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto, 108%, auto;
  box-shadow: 0 26px 58px rgba(15, 27, 43, 0.16);
  transform: translateY(-8px);
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: rgba(255, 255, 255, 0.94);
}

.product-vertical-grid .product-card:hover .product-card-ghost i,
.product-vertical-grid .product-card:focus-visible .product-card-ghost i {
  background: var(--color-primary);
}

.product-vertical-grid .product-card-cadera {
  --product-card-color: #eaf5ff;
  --product-card-image: url("assets/img/artroplastia-cadera.jpg");
}

.product-vertical-grid .product-card-rodilla {
  --product-card-color: #e7fff2;
  --product-card-image: url("assets/img/orprotec-hero-2.png");
}

.product-vertical-grid .product-card-osteosintesis {
  --product-card-color: #eef5fb;
  --product-card-image: url("assets/img/banner-osteosintesis.png");
}

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

@media (max-width: 640px) {
  .product-vertical-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .product-vertical-grid .product-card {
    min-height: 360px;
  }
}

/* Product gallery hover cleanup */
.product-vertical-grid .product-card span {
  display: none;
}

.product-vertical-grid .product-card {
  transition: background-size 0.55s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto, 116%, auto;
  transform: translateY(-6px) scale(1.018);
}

/* Product gallery true zoom hover */
.product-vertical-grid .product-card,
.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto, cover, auto;
}

.product-vertical-grid .product-card {
  transform-origin: center;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  box-shadow: 0 28px 64px rgba(15, 27, 43, 0.16);
  transform: translateY(-6px) scale(1.025);
}

/* Product gallery stronger readable hover */
.product-vertical-grid .product-card {
  background-size: auto, cover, auto;
  transform-origin: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.10) 42%, rgba(5, 5, 5, 0.78) 100%);
}

.product-vertical-grid .product-card h3 {
  align-self: end;
  font-size: clamp(1.18rem, 1.6vw, 1.72rem);
  line-height: 1.06;
  margin: auto 0 14px;
  max-width: 230px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  box-shadow: 0 34px 76px rgba(15, 27, 43, 0.20);
  transform: translateY(-10px) scale(1.07);
}

.product-vertical-grid .product-card:hover::before,
.product-vertical-grid .product-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.00) 0%, rgba(5, 5, 5, 0.08) 34%, rgba(5, 5, 5, 0.84) 100%);
}

.product-vertical-grid .product-card:hover h3,
.product-vertical-grid .product-card:focus-visible h3,
.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  transform: scale(0.965);
  transform-origin: left bottom;
}

/* Product cards portrait profile style */
.product-vertical-grid {
  align-items: stretch;
}

.product-vertical-grid .product-card,
.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background-size: auto, cover, auto;
}

.product-vertical-grid .product-card {
  border-radius: 28px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: clamp(390px, 34vw, 520px);
  padding: clamp(18px, 2vw, 24px);
  transform-origin: center;
}

.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.00) 38%, rgba(5, 5, 5, 0.46) 68%, rgba(5, 5, 5, 0.88) 100%);
  inset: 0;
  opacity: 1;
  z-index: 0;
}

.product-vertical-grid .product-card h3 {
  align-self: end;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.45vw, 1.48rem);
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 90%;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.product-card-ghost {
  align-self: end;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  color: #050505;
  justify-self: stretch;
  margin: 0;
  min-height: 54px;
  padding: 7px 8px 7px 20px;
  width: 100%;
}

.product-card-ghost i {
  background: rgba(5, 5, 5, 0.82);
  color: #ffffff;
  height: 40px;
  width: 40px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  box-shadow: 0 34px 78px rgba(15, 27, 43, 0.20);
  transform: translateY(-10px) scale(1.055);
}

.product-vertical-grid .product-card:hover::before,
.product-vertical-grid .product-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.00) 32%, rgba(5, 5, 5, 0.40) 64%, rgba(5, 5, 5, 0.9) 100%);
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: #ffffff;
}

.product-vertical-grid .product-card:hover .product-card-ghost i,
.product-vertical-grid .product-card:focus-visible .product-card-ghost i {
  background: var(--color-primary);
  color: #ffffff;
}

@media (max-width: 640px) {
  .product-vertical-grid .product-card {
    min-height: 380px;
  }
}

.product-vertical-grid .product-card:hover h3,
.product-vertical-grid .product-card:focus-visible h3,
.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  transform: none;
}

/* Product cards image structure */
.product-vertical-grid {
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  padding: 0;
}

.product-vertical-grid .product-card,
.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  background: #050505;
  background-size: auto;
}

.product-vertical-grid .product-card {
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 27, 43, 0.10);
  display: block;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: none;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.product-card-img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1);
  transition: transform 0.55s ease;
  width: 100%;
  z-index: 0;
}

.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 34%, rgba(5, 5, 5, 0.38) 65%, rgba(5, 5, 5, 0.86) 100%);
  inset: 0;
  opacity: 1;
  z-index: 1;
}

.product-card-content {
  bottom: 0;
  display: grid;
  gap: 14px;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.product-vertical-grid .product-card h3 {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  line-height: 1.08;
  margin: 0;
  max-width: 92%;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.44);
}

.product-card-ghost {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  color: #050505;
  margin: 0;
  min-height: 50px;
  padding: 7px 7px 7px 18px;
  width: 100%;
}

.product-card-ghost i {
  background: rgba(5, 5, 5, 0.86);
  color: #ffffff;
  height: 36px;
  width: 36px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  box-shadow: 0 28px 64px rgba(15, 27, 43, 0.18);
  transform: translateY(-8px);
}

.product-vertical-grid .product-card:hover .product-card-img,
.product-vertical-grid .product-card:focus-visible .product-card-img {
  transform: scale(1.14);
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: #ffffff;
}

.product-vertical-grid .product-card:hover .product-card-ghost i,
.product-vertical-grid .product-card:focus-visible .product-card-ghost i {
  background: var(--color-primary);
}

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

@media (max-width: 640px) {
  .product-vertical-grid {
    grid-template-columns: 1fr;
  }

  .product-vertical-grid .product-card {
    min-height: 320px;
  }
}

/* Product card title and ghost CTA visibility */
.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.18) 46%, rgba(5, 5, 5, 0.9) 100%);
}

.product-card-content {
  gap: 16px;
  padding: 24px;
}

.product-vertical-grid .product-card h3 {
  color: #ffffff;
  display: block;
  font-size: clamp(1.22rem, 1.65vw, 1.72rem);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72);
  visibility: visible;
}

.product-card-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  box-shadow: none;
  color: #ffffff;
}

.product-card-ghost i {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  color: #ffffff;
}

.product-vertical-grid .product-card:hover .product-card-ghost i,
.product-vertical-grid .product-card:focus-visible .product-card-ghost i {
  background: #ffffff;
  color: var(--color-primary);
}

/* Product card structure priority fix */
.product-vertical-grid .product-card > .product-card-img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1);
  transition: transform 0.55s ease;
  width: 100%;
  z-index: 0;
}

.product-vertical-grid .product-card > .product-card-content {
  bottom: 0;
  display: grid;
  gap: 16px;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.product-vertical-grid .product-card > .product-card-content h3 {
  color: #ffffff;
  display: block;
  font-size: clamp(1.22rem, 1.65vw, 1.72rem);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  opacity: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72);
  transform: none;
  visibility: visible;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost {
  align-items: center;
  display: inline-flex;
  justify-content: space-between;
  opacity: 1;
  transform: none;
  visibility: visible;
}

.product-vertical-grid .product-card:hover > .product-card-img,
.product-vertical-grid .product-card:focus-visible > .product-card-img {
  transform: scale(1.14);
}

/* Full-width products section background */
.products-preview {
  background: #edfaff;
  box-shadow: 0 0 0 100vmax #edfaff;
  clip-path: inset(0 -100vmax);
}


/* Product card content hard visibility fix */
.product-vertical-grid .product-card {
  isolation: isolate;
}

.product-vertical-grid .product-card::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.product-vertical-grid .product-card > .product-card-content {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.94) 100%);
  bottom: 0 !important;
  left: 0 !important;
  opacity: 1 !important;
  padding: 76px 22px 22px !important;
  position: absolute !important;
  right: 0 !important;
  top: auto !important;
  transform: none !important;
  visibility: visible !important;
  z-index: 5 !important;
}

.product-vertical-grid .product-card > .product-card-content h3 {
  color: #ffffff !important;
  opacity: 1 !important;
  position: relative !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.85) !important;
  transform: none !important;
  visibility: visible !important;
  z-index: 6 !important;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost {
  opacity: 1 !important;
  position: relative !important;
  transform: none !important;
  visibility: visible !important;
  z-index: 6 !important;
}



/* Products section background specificity fix */
.hero-slider ~ .section.products-preview,
.section.products-preview,
.products-preview {
  background: #edfaff !important;
  box-shadow: 0 0 0 100vmax #edfaff !important;
  clip-path: inset(0 -100vmax);
}

.section.products-preview::before {
  display: none;
}


/* Product cards primary inner shadow */
.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(0, 135, 255, 0.01) 0%, rgba(0, 135, 255, 0.11) 46%, rgba(0, 135, 255, 0.39) 100%) !important;
}

.product-vertical-grid .product-card > .product-card-content {
  background: linear-gradient(180deg, rgba(0, 135, 255, 0) 0%, rgba(0, 135, 255, 0.31) 42%, rgba(0, 135, 255, 0.44) 100%) !important;
}


/* Product cards subtle black inner shadow */
.product-vertical-grid .product-card::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.16) 48%, rgba(5, 5, 5, 0.46) 100%) !important;
}

.product-vertical-grid .product-card > .product-card-content {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.34) 44%, rgba(5, 5, 5, 0.58) 100%) !important;
}

/* Product cards 2x2 polished layout */
.product-vertical-grid {
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1120px;
}

.product-vertical-grid .product-card {
  border-radius: 30px;
  min-height: clamp(280px, 28vw, 380px) !important;
}

.product-vertical-grid .product-card > .product-card-content {
  align-items: end;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.58) 34%, rgba(5, 5, 5, 0.74) 100%) !important;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 68px 24px 22px !important;
  -webkit-backdrop-filter: blur(10px);
}

.product-vertical-grid .product-card > .product-card-content h3 {
  align-self: center;
  font-size: clamp(1.22rem, 1.75vw, 1.85rem);
  max-width: 360px;
}

.product-card-ghost,
.product-vertical-grid .product-card > .product-card-content .product-card-ghost {
  align-self: center;
  font-size: 0.84rem;
  gap: 10px;
  justify-self: end;
  min-height: 44px;
  padding: 6px 6px 6px 15px;
  width: auto;
  white-space: nowrap;
}

.product-card-ghost i {
  height: 32px;
  width: 32px;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  box-shadow: 0 28px 66px rgba(15, 27, 43, 0.16);
  transform: translateY(-6px);
}

.product-vertical-grid .product-card:hover > .product-card-img,
.product-vertical-grid .product-card:focus-visible > .product-card-img {
  transform: scale(1.10);
}

@media (max-width: 760px) {
  .product-vertical-grid {
    grid-template-columns: 1fr !important;
  }

  .product-vertical-grid .product-card > .product-card-content {
    grid-template-columns: 1fr;
  }

  .product-card-ghost,
  .product-vertical-grid .product-card > .product-card-content .product-card-ghost {
    justify-self: start;
  }
}

/* Product cards remove glass strip */
.product-vertical-grid .product-card > .product-card-content {
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.28) 42%, rgba(5, 5, 5, 0.58) 100%) !important;
  -webkit-backdrop-filter: none;
}


/* Products section primary glass background */
.hero-slider ~ .section.products-preview,
.section.products-preview,
.products-preview {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 135, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 78%, rgba(0, 135, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(237, 250, 255, 0.94), rgba(237, 250, 255, 0.82)) !important;
  box-shadow: 0 0 0 100vmax #edfaff !important;
  clip-path: inset(0 -100vmax);
  overflow: hidden;
  position: relative;
}

.section.products-preview::before {
  background:
    radial-gradient(circle at 20% 26%, rgba(0, 135, 255, 0.20), transparent 22rem),
    radial-gradient(circle at 78% 70%, rgba(0, 135, 255, 0.14), transparent 24rem);
  content: "";
  display: block !important;
  filter: blur(28px);
  inset: 0 -100vmax;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.products-preview > * {
  position: relative;
  z-index: 1;
}

/* Products cards 3-line layout after portfolio update */
.products-preview .section-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.products-preview .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}

.product-vertical-grid {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: min(100%, 1420px) !important;
  padding: 0 !important;
}

.product-vertical-grid .product-card {
  aspect-ratio: 1.02 / 1;
  border: 1px solid rgba(15, 27, 43, 0.10);
  border-radius: 28px;
  box-shadow: 0 20px 54px rgba(15, 27, 43, 0.10);
  min-height: 0 !important;
  outline: 1px solid rgba(255, 255, 255, 0.26);
  outline-offset: -1px;
  width: 100%;
}

.product-vertical-grid .product-card > .product-card-content {
  align-items: end;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.20) 36%, rgba(5, 5, 5, 0.68) 100%) !important;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 96px 24px 24px !important;
}

.product-vertical-grid .product-card > .product-card-content h3 {
  font-size: clamp(1.08rem, 1.38vw, 1.46rem);
  letter-spacing: 0;
  max-width: 100%;
  text-wrap: balance;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost {
  align-self: center;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.70);
  flex: 0 0 auto;
  font-size: 0.88rem;
  min-height: 50px;
  padding: 7px 7px 7px 18px;
  white-space: nowrap;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost i {
  height: 38px;
  width: 38px;
}

.product-vertical-grid .product-card > .product-card-img {
  object-position: center;
}

.product-vertical-grid .product-card-cadera > .product-card-img {
  object-position: 48% center;
}

.product-vertical-grid .product-card-rodilla > .product-card-img {
  object-position: 54% center;
}

.product-vertical-grid .product-card-osteosintesis > .product-card-img {
  object-position: 50% center;
}

.product-vertical-grid .product-card:hover,
.product-vertical-grid .product-card:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 26px 64px rgba(0, 135, 255, 0.18);
  transform: translateY(-7px);
}

.product-vertical-grid .product-card:hover > .product-card-img,
.product-vertical-grid .product-card:focus-visible > .product-card-img {
  transform: scale(1.09);
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
}

@media (max-width: 1080px) {
  .product-vertical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .product-vertical-grid {
    grid-template-columns: 1fr !important;
  }

  .product-vertical-grid .product-card {
    aspect-ratio: 1.08 / 1;
  }

  .product-vertical-grid .product-card > .product-card-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-vertical-grid .product-card > .product-card-content .product-card-ghost {
    justify-self: start;
  }
}

/* Global primary glass page background */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 135, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 34%, rgba(0, 135, 255, 0.10), transparent 32rem),
    radial-gradient(circle at 20% 82%, rgba(0, 230, 118, 0.06), transparent 30rem),
    linear-gradient(180deg, #edfaff 0%, #ffffff 46%, #f4fbff 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 135, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 76%, rgba(0, 135, 255, 0.12), transparent 26rem);
  content: "";
  filter: blur(30px);
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.hero-slider ~ .section:not(.contact-form-section):not(.products-preview),
.section:not(.contact-form-section):not(.products-preview),
.stats-section,
.product-detail-section,
.product-gallery-section,
.testimonials-section,
.faq-section,
.blog-hero,
.featured-blog-section,
.top-blog-section {
  background: transparent !important;
}

.section:not(.contact-form-section):not(.products-preview)::before,
.stats-section::before,
.product-detail-section::before,
.product-gallery-section::before,
.testimonials-section::before,
.faq-section::before {
  display: none !important;
}

/* Unified page glass background flow */
main > .section:not(.contact-form-section),
.hero-slider ~ .section:not(.contact-form-section),
.stats-section,
.products-preview,
.product-detail-section,
.product-gallery-section,
.testimonials-section,
.faq-section,
.blog-hero,
.featured-blog-section,
.top-blog-section {
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
}

main > .section:not(.contact-form-section)::before,
.hero-slider ~ .section:not(.contact-form-section)::before,
.stats-section::before,
.products-preview::before,
.product-detail-section::before,
.product-gallery-section::before,
.testimonials-section::before,
.faq-section::before {
  display: none !important;
}

/* Mobile global responsive stabilization */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 900px) {
  :root {
    --mobile-gutter: clamp(18px, 5vw, 24px);
  }

  .site-header {
    padding: 10px var(--mobile-gutter) 0;
  }

  .navbar {
    gap: 14px;
    max-width: 100%;
    min-height: 70px;
    padding: 8px 14px 8px 18px;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(210px, calc(100vw - 116px));
  }

  .logo img {
    max-height: 48px;
    width: min(170px, 100%);
  }

  .menu-toggle {
    align-items: center;
    display: inline-grid;
    flex: 0 0 42px;
    place-items: center;
  }

  .menu-toggle span {
    margin: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(15, 27, 43, 0.18);
    display: none;
    gap: 6px;
    left: 0;
    margin: 0;
    max-height: calc(100svh - 112px);
    overflow-y: auto;
    padding: 14px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 100%;
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-links li,
  .nav-links a {
    min-width: 0;
    width: 100%;
  }

  .nav-links a {
    border-radius: 16px;
    padding: 12px 14px;
  }

  .nav-links a::after {
    margin-top: 6px;
  }

  .nav-dropdown > a {
    padding-right: 36px;
  }

  .nav-dropdown > a::before {
    right: 16px;
  }

  .nav-dropdown-menu {
    background: rgba(0, 135, 255, 0.06);
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    display: none;
    left: auto;
    margin-top: 4px;
    min-width: 0;
    opacity: 1;
    padding: 8px;
    pointer-events: auto;
    position: static;
    transform: none;
    width: 100%;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .hero-slider,
  .about-banner {
    min-height: 620px;
  }

  .hero-slide,
  .about-banner {
    padding: 130px var(--mobile-gutter) 112px;
  }

  .slide-copy {
    max-width: min(100%, 520px);
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    line-height: 0.96;
    max-width: 10ch;
  }

  .hero-slide p:not(.eyebrow),
  .about-banner p:not(.eyebrow) {
    font-size: clamp(1rem, 4.1vw, 1.16rem);
    max-width: 28rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .slide-copy .btn {
    min-height: 52px;
    padding: 12px 18px 12px 22px;
  }

  .hero-actions .btn::after,
  .slide-copy .btn::after {
    height: 44px;
    margin: -10px -16px -10px 0;
    width: 44px;
  }

  .slider-controls {
    bottom: 70px;
    left: var(--mobile-gutter);
  }

  .section,
  .hero-slider ~ .section:not(.contact-form-section),
  .page-hero,
  .trust-strip {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
    width: 100%;
  }

  .section-heading,
  .stats-heading,
  .testimonials-heading,
  .faq-copy {
    max-width: 100%;
  }

  .section-heading h2,
  .stats-heading h2,
  .about-orprotec h2,
  .testimonials-heading h2,
  .faq-copy h2,
  .contact-form-heading h2,
  .about-video-copy h2,
  .about-final h2,
  .brochure-cta h2,
  .blog-hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.85rem);
    line-height: 1.02;
  }

  .stats-section {
    border-radius: 34px 34px 0 0;
    margin-top: -38px;
    padding-bottom: 48px;
    padding-top: 72px;
  }

  .trust-strip.stats-strip,
  .trust-strip {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 28px 0 0;
  }

  .trust-strip article {
    padding: 30px 16px;
  }

  .trust-strip article::after {
    height: 142px;
    width: min(250px, 78vw);
  }

  .product-vertical-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .product-vertical-grid .product-card {
    border-radius: 24px;
    min-height: clamp(250px, 72vw, 340px) !important;
  }

  .product-vertical-grid .product-card > .product-card-content {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 72px 18px 18px !important;
  }

  .product-vertical-grid .product-card > .product-card-content h3 {
    font-size: clamp(1.35rem, 7vw, 1.95rem);
    max-width: 12ch;
  }

  .product-card-ghost,
  .product-vertical-grid .product-card > .product-card-content .product-card-ghost {
    justify-self: start;
    min-height: 42px;
  }

  .split,
  .page-hero,
  .about-video,
  .about-story-grid,
  .about-final,
  .product-detail-grid,
  .product-info-grid,
  .blog-feature-grid,
  .top-blog-layout,
  .faq-panel,
  .contact-form-layout {
    grid-template-columns: 1fr !important;
  }

  .about-orprotec h2 {
    white-space: normal !important;
  }

  .text-stack,
  .mission-card,
  .blog-card,
  .faq-panel,
  .contact-map,
  .contact-form-panel {
    border-radius: 24px;
  }

  .testimonial-slider {
    overflow: hidden;
  }

  .testimonial-card {
    flex-basis: 100% !important;
    min-width: 100%;
  }

  .pdf-viewer-card {
    border-radius: 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 10px;
  }

  .pdf-viewer-card iframe {
    min-height: 68svh;
    width: 100%;
  }

  .contact-form-section {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 56px var(--mobile-gutter) 0;
    width: 100vw !important;
  }

  .contact-form-layout {
    gap: 22px;
    max-width: 100%;
  }

  .contact-form-panel {
    padding: clamp(26px, 7vw, 38px);
  }

  .contact-form-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .contact-form-heading p:not(.eyebrow) {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .form-grid,
  .contact-form-grid {
    gap: 20px;
    grid-template-columns: 1fr !important;
  }

  .contact-map {
    min-height: auto;
    padding: 12px;
  }

  .contact-map-copy {
    padding: 26px 22px 8px;
    text-align: center;
  }

  .contact-map-details {
    text-align: left;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .footer {
    padding: 72px var(--mobile-gutter) 58px;
  }

  .footer-grid {
    gap: 28px;
    grid-template-columns: 1fr !important;
    margin-bottom: 28px;
  }

  .footer-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 18px;
  }

  .footer-about {
    border-top: 0;
    padding-top: 0;
  }

  .footer-brand-row {
    bottom: 44px;
    width: calc(100% - 2 * var(--mobile-gutter));
  }

  .footer-brand-row strong {
    font-size: clamp(3.2rem, 21vw, 5.8rem);
    letter-spacing: -0.03em;
    text-align: center;
  }

  .footer-bottom {
    align-items: flex-start;
    display: grid;
    gap: 10px;
    justify-content: start;
    margin-top: 44px;
  }

  .footer-bottom span {
    margin-right: 0;
  }

  .whatsapp-float,
  .product-info-float {
    right: 16px;
  }

  .whatsapp-float {
    bottom: 18px;
    height: 56px;
    width: 56px;
  }

  .whatsapp-float::after {
    display: none;
  }

  body.product-page .whatsapp-float {
    bottom: 82px;
  }

  body.product-page .product-info-float {
    bottom: 16px;
    font-size: 0;
    height: 56px;
    justify-content: center;
    padding: 0;
    width: 56px;
  }

  body.product-page .product-info-float::before {
    height: 24px;
    width: 24px;
  }

  body.product-page .contact-form-section {
    padding: 10px !important;
    width: 100% !important;
  }

  body.product-page .contact-form-layout {
    max-width: 100% !important;
    width: 100% !important;
  }

  body.product-page .contact-form-panel {
    border-radius: 24px;
    max-height: calc(100svh - 20px);
    min-height: auto;
    overflow-y: auto;
    padding: 52px 22px 28px;
  }

  body.product-page .contact-form-heading {
    padding-left: 0;
    padding-right: 0;
  }

  body.product-page .contact-form-heading h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  body.product-page .privacy-check {
    align-items: flex-start;
  }

  body.product-page .privacy-check input {
    flex: 0 0 28px;
    height: 28px;
    min-height: 28px;
    width: 28px;
  }

  body.product-page .form-submit {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 460px) {
  .navbar {
    border-radius: 28px;
    min-height: 64px;
    padding: 7px 12px 7px 16px;
  }

  .logo img {
    max-height: 42px;
    width: min(150px, 100%);
  }

  .hero-slider,
  .about-banner {
    min-height: 600px;
  }

  .hero-slide,
  .about-banner {
    padding-top: 118px;
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(2.15rem, 14vw, 3.45rem);
  }

  .btn,
  .form-submit {
    width: 100%;
  }

  .btn::after,
  .form-submit::after {
    margin-left: auto;
  }

  .product-vertical-grid .product-card > .product-card-content {
    padding: 64px 16px 16px !important;
  }

  .contact-map iframe {
    min-height: 320px;
  }
}

/* Mobile overflow and tap target refinements */
.footer-contact a[href*="wa.me"]::before,
.contact-map-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.61.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  a,
  p,
  h1,
  h2,
  h3,
  .footer a,
  .contact-map-item,
  .custom-select-toggle,
  .custom-select-menu button {
    overflow-wrap: anywhere;
  }

  .custom-select {
    min-width: 0;
    width: 100%;
  }

  .custom-select-menu {
    left: 0;
    max-height: min(320px, 46svh);
    min-width: 0;
    right: 0;
    width: 100%;
  }

  .custom-select-menu button {
    min-height: 44px;
    padding: 12px 14px;
  }

  .contact-form input,
  .contact-form select,
  .custom-select-toggle {
    width: 100%;
  }

  .blog-card,
  .line-card,
  .product-info-card,
  .mission-card,
  .testimonial-card {
    min-width: 0;
  }
}

/* Final narrow-screen consistency fixes */
@media (max-width: 520px) {
  .contact-form-section.section {
    max-width: none !important;
  }

  .contact-form-panel,
  .contact-map,
  .text-stack,
  .mission-card,
  .blog-card,
  .testimonial-card,
  .product-info-card,
  .line-card {
    box-shadow: 0 18px 44px rgba(15, 27, 43, 0.07);
  }

  .contact-form-heading h2,
  .contact-map-copy h3 {
    text-align: center;
  }

  .contact-form input::placeholder,
  .custom-select-toggle span {
    white-space: normal;
  }

  .product-detail-hero {
    padding-top: 120px;
  }
}

/* Targeted mobile fixes: hamburger and privacy checkbox */
@media (max-width: 900px) {
  .menu-toggle {
    align-content: center;
    display: inline-flex !important;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    padding: 0;
  }

  .menu-toggle span {
    flex: 0 0 2px;
    height: 2px;
    margin: 0 auto !important;
    transform-origin: center;
    width: 24px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .privacy-check {
    align-items: flex-start !important;
    display: flex !important;
    gap: 12px !important;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .privacy-check input {
    appearance: none;
    flex: 0 0 30px !important;
    height: 30px !important;
    margin: 2px 0 0 !important;
    min-height: 30px !important;
    min-width: 30px !important;
    width: 30px !important;
  }

  .privacy-check span {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: normal;
  }

  .contact-form-panel {
    overflow: hidden;
  }

  .contact-form {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .contact-form-section {
    overflow-x: hidden;
  }

  .contact-form-panel {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .privacy-check {
    font-size: 0.94rem;
    line-height: 1.42;
  }
}

/* Product mobile modal and info button polish */
@media (max-width: 760px) {
  body.product-page .product-info-float {
    bottom: 18px !important;
    border-radius: 999px;
    font-size: 0.82rem !important;
    gap: 8px;
    height: auto !important;
    min-height: 48px;
    padding: 10px 14px !important;
    width: auto !important;
    max-width: calc(100vw - 92px);
    white-space: nowrap;
  }

  body.product-page .product-info-float::before {
    flex: 0 0 18px;
    height: 18px !important;
    width: 18px !important;
  }

  body.product-page .whatsapp-float {
    bottom: 78px !important;
    height: 52px;
    width: 52px;
  }

  body.product-page .contact-form-section {
    align-items: center;
    justify-items: center;
    padding: 8px !important;
  }

  body.product-page .contact-form-panel {
    align-content: start;
    border-radius: 22px;
    max-height: calc(100svh - 16px);
    overflow-y: auto !important;
    padding: 46px 18px 22px !important;
  }

  body.product-page .product-form-close {
    height: 36px;
    right: 12px;
    top: 12px;
    width: 36px;
  }

  body.product-page .contact-form-heading {
    margin-bottom: 16px;
    padding: 0 !important;
  }

  body.product-page .contact-form-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.15rem) !important;
    line-height: 1.02;
  }

  body.product-page .contact-form-heading p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.34;
    margin-top: 8px;
  }

  body.product-page .contact-form,
  body.product-page .form-grid {
    gap: 14px !important;
  }

  body.product-page .contact-form label {
    gap: 4px;
  }

  body.product-page .contact-form label span,
  body.product-page .privacy-check span {
    font-size: 0.8rem !important;
    line-height: 1.34;
  }

  body.product-page .contact-form input,
  body.product-page .contact-form select,
  body.product-page .custom-select-toggle {
    font-size: 0.84rem !important;
    min-height: 34px !important;
    padding-bottom: 6px !important;
    padding-top: 4px !important;
  }

  body.product-page .custom-select-menu {
    max-height: 190px;
  }

  body.product-page .privacy-check {
    gap: 9px !important;
    margin-top: 2px;
  }

  body.product-page .privacy-check input {
    flex-basis: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    min-width: 24px !important;
    width: 24px !important;
  }

  body.product-page .form-submit {
    font-size: 0.9rem;
    justify-self: center;
    margin-top: 2px;
    max-width: 260px;
    min-height: 50px;
    padding: 9px 10px 9px 22px;
    width: 100%;
  }

  body.product-page .form-submit::after {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 380px) {
  body.product-page .product-info-float {
    font-size: 0;
    height: 52px !important;
    justify-content: center;
    padding: 0 !important;
    width: 52px !important;
  }

  body.product-page .product-info-float::before {
    height: 22px !important;
    width: 22px !important;
  }
}

/* Product info float: icon-only and centered on mobile */
@media (max-width: 760px) {
  body.product-page .product-info-float {
    align-items: center !important;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    bottom: 18px !important;
    display: inline-flex !important;
    font-size: 0 !important;
    gap: 0 !important;
    height: 56px !important;
    justify-content: center !important;
    max-width: none !important;
    min-height: 56px !important;
    min-width: 56px !important;
    padding: 0 !important;
    width: 56px !important;
  }

  body.product-page .product-info-float::before {
    flex: 0 0 auto !important;
    height: 24px !important;
    margin: 0 !important;
    width: 24px !important;
  }
}

/* Mobile hero buttons and floating button size alignment */
@media (max-width: 760px) {
  body.product-page .whatsapp-float,
  body.product-page .product-info-float {
    height: 56px !important;
    min-height: 56px !important;
    min-width: 56px !important;
    width: 56px !important;
  }

  body.product-page .whatsapp-float svg {
    height: 28px;
    width: 28px;
  }

  .hero-slide .hero-actions {
    align-items: stretch;
    display: grid;
    gap: 12px;
    max-width: min(100%, 390px);
    width: 100%;
  }

  .hero-slider .hero-actions .btn {
    border-radius: 999px;
    display: grid;
    font-size: clamp(0.9rem, 4.2vw, 1rem);
    grid-template-columns: minmax(0, 1fr) 48px;
    justify-content: stretch;
    line-height: 1.1;
    min-height: 64px;
    padding: 8px 8px 8px 22px !important;
    text-align: center;
    white-space: normal;
    width: 100% !important;
  }

  .hero-slider .hero-actions .btn::after {
    align-self: center;
    display: inline-flex;
    height: 48px !important;
    justify-self: end;
    margin: 0 !important;
    width: 48px !important;
  }

  .hero-slider .hero-actions .btn-ghost-light:first-child,
  .hero-slider .hero-actions .btn:first-child {
    background: #ffffff;
    border-color: #ffffff;
    color: #050505;
  }

  .hero-slider .hero-actions .btn-ghost-light:first-child::after,
  .hero-slider .hero-actions .btn:first-child::after {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
  }

  .hero-slider .hero-actions .btn-ghost-light + .btn-ghost-light,
  .hero-slider .hero-actions .btn:nth-child(2) {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.84);
    color: #ffffff;
  }

  .hero-slider .hero-actions .btn-ghost-light + .btn-ghost-light::after,
  .hero-slider .hero-actions .btn:nth-child(2)::after {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.84);
    color: #ffffff;
  }
}

@media (max-width: 460px) {
  .hero-slider .hero-actions .btn {
    width: 100% !important;
  }
}

/* Mobile banner height, readable typography and justified copy */
@media (max-width: 900px) {
  .hero-slider,
  .about-banner {
    height: 50svh !important;
    min-height: 430px !important;
  }

  .hero-slide,
  .about-banner {
    padding: 104px var(--mobile-gutter, 22px) 64px !important;
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(1.95rem, 8.2vw, 3rem) !important;
    line-height: 1.02 !important;
    max-width: 12ch;
  }

  .hero-slide p:not(.eyebrow),
  .about-banner p:not(.eyebrow) {
    font-size: clamp(0.86rem, 3.4vw, 0.98rem) !important;
    line-height: 1.42;
    max-width: 25rem;
  }

  .hero-actions {
    margin-top: 22px !important;
  }

  .hero-slider .hero-actions .btn,
  .hero-actions .btn,
  .slide-copy .btn,
  .about-banner .btn {
    font-size: 0.86rem !important;
    min-height: 50px !important;
    padding: 7px 7px 7px 18px !important;
  }

  .hero-slider .hero-actions .btn::after,
  .hero-actions .btn::after,
  .slide-copy .btn::after,
  .about-banner .btn::after {
    height: 40px !important;
    width: 40px !important;
  }

  .slider-controls {
    bottom: 36px !important;
  }

  .about-services .process-grid,
  .about-page .process-grid {
    grid-template-columns: 1fr !important;
  }

  .about-services .process-grid article,
  .about-page .process-grid article {
    text-align: left !important;
  }

  main p,
  main li,
  .footer p {
    text-align: justify;
    text-justify: inter-word;
  }

  .section-heading p,
  .stats-heading p,
  .testimonials-heading p,
  .faq-copy p,
  .contact-form-heading p,
  .contact-map-copy p,
  .slide-copy p,
  .about-banner-copy p {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .hero-slider,
  .about-banner {
    height: 50svh !important;
    min-height: 390px !important;
  }

  .hero-slide,
  .about-banner {
    padding-top: 94px !important;
    padding-bottom: 54px !important;
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.45rem) !important;
  }

  .hero-slider .hero-actions .btn {
    min-height: 48px !important;
  }
}

/* Mobile hero UX correction: more room without full-screen height */
@media (max-width: 900px) {
  .hero-slider,
  .about-banner {
    height: clamp(540px, 68svh, 680px) !important;
    min-height: 540px !important;
  }

  .hero-slide,
  .about-banner {
    align-content: center;
    padding: 108px var(--mobile-gutter, 22px) 96px !important;
  }

  .slide-copy {
    display: grid;
    justify-items: start;
    max-width: min(100%, 420px);
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(1.9rem, 7.8vw, 2.75rem) !important;
    line-height: 1.03 !important;
    max-width: 11.5ch;
  }

  .hero-slide p:not(.eyebrow),
  .about-banner p:not(.eyebrow) {
    font-size: 0.94rem !important;
    line-height: 1.42;
    margin-top: 14px;
    max-width: 26rem;
  }

  .hero-slide .hero-actions {
    gap: 10px !important;
    margin-top: 22px !important;
    max-width: min(100%, 370px) !important;
  }

  .hero-slider .hero-actions .btn {
    align-items: center;
    font-size: 0.9rem !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 5px 5px 5px 18px !important;
    white-space: nowrap;
  }

  .hero-slider .hero-actions .btn::after {
    height: 44px !important;
    width: 44px !important;
  }

  .slider-controls {
    bottom: 54px !important;
    gap: 9px;
  }

  .slider-dot {
    height: 8px;
    width: 28px;
  }

  .slider-dot.active {
    width: 58px;
  }
}

@media (max-width: 460px) {
  .hero-slider,
  .about-banner {
    height: clamp(520px, 70svh, 650px) !important;
    min-height: 520px !important;
  }

  .hero-slide,
  .about-banner {
    padding-top: 100px !important;
    padding-bottom: 92px !important;
  }

  .hero-slide h1,
  .about-banner h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.35rem) !important;
  }

  .hero-slide p:not(.eyebrow),
  .about-banner p:not(.eyebrow) {
    font-size: 0.9rem !important;
  }

  .hero-slide .hero-actions {
    max-width: 100% !important;
  }
}

/* Mobile form typography refinement */
@media (max-width: 760px) {
  .contact-form-heading h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
    line-height: 1.04;
  }

  .contact-form-heading p:not(.eyebrow) {
    font-size: 0.9rem !important;
    line-height: 1.45;
  }

  .contact-form label span,
  .privacy-check span {
    font-size: 0.84rem !important;
    line-height: 1.35;
  }

  .contact-form input,
  .contact-form select,
  .custom-select-toggle,
  .custom-select-menu button {
    font-size: 0.88rem !important;
  }

  .form-submit {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 460px) {
  .contact-form-heading h2 {
    font-size: clamp(1.55rem, 8.2vw, 2rem) !important;
  }

  .contact-form-heading p:not(.eyebrow) {
    font-size: 0.86rem !important;
  }
}

/* Product hero spacing below fixed navbar */
.product-detail-hero {
  align-items: center;
  min-height: min(760px, calc(100svh - 24px));
  padding-top: clamp(150px, 13vw, 190px) !important;
  padding-bottom: clamp(56px, 6vw, 84px) !important;
}

.product-detail-hero > div {
  align-self: center;
}

.product-detail-hero > img {
  align-self: center;
  aspect-ratio: 1 / 0.92;
  max-height: min(640px, calc(100svh - 210px));
  object-position: center;
  width: 100%;
}

@media (max-width: 900px) {
  .product-detail-hero {
    gap: 32px;
    min-height: auto;
    padding-top: 122px !important;
    padding-bottom: 56px !important;
  }

  .product-detail-hero > img {
    aspect-ratio: 16 / 11;
    max-height: none;
    order: -1;
  }
}

@media (max-width: 520px) {
  .product-detail-hero {
    padding-top: 108px !important;
  }

  .product-detail-hero > img {
    border-radius: 24px;
  }
}

/* Product hero full-height image composition */
@media (min-width: 901px) {
  .product-detail-hero {
    align-items: stretch !important;
    gap: clamp(48px, 5vw, 82px);
    grid-template-columns: minmax(0, 1.06fr) minmax(460px, 0.94fr);
    min-height: clamp(640px, 74svh, 780px);
    padding-top: clamp(150px, 11vw, 178px) !important;
    padding-bottom: clamp(54px, 5vw, 72px) !important;
  }

  .product-detail-hero > div {
    align-self: center;
  }

  .product-detail-hero > img {
    align-self: stretch !important;
    aspect-ratio: auto !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1280px) {
  .product-detail-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  }
}

/* Product pages: full image banner hero */
.product-page .product-detail-hero {
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1fr !important;
  isolation: isolate;
  margin-top: clamp(116px, 9vw, 142px);
  min-height: clamp(520px, 66svh, 700px) !important;
  overflow: hidden;
  padding: clamp(92px, 10vw, 132px) clamp(28px, 7vw, 82px) clamp(54px, 7vw, 86px) !important;
  position: relative;
  width: min(1400px, calc(100% - 48px));
}

.product-page .product-detail-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.48) 42%, rgba(5, 5, 5, 0.18) 76%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.10), rgba(5, 5, 5, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.product-page .product-detail-hero > div {
  align-self: end;
  max-width: min(720px, 100%);
  position: relative;
  z-index: 2;
}

.product-page .product-detail-hero > img {
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100% !important;
  inset: 0;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: none !important;
  width: 100% !important;
  z-index: 0;
}

.product-page .product-detail-hero h1,
.product-page .product-detail-hero .title-accent-word {
  color: #ffffff !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.product-page .product-detail-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.88;
  max-width: 10ch;
}

.product-page .product-detail-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  max-width: 620px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.product-page .product-detail-hero .btn-brochure {
  border-color: rgba(255, 255, 255, 0.78);
  color: #ffffff;
}

.product-page .product-detail-hero .btn-brochure::after {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.50);
  color: #ffffff;
}

.product-page .product-detail-hero .btn-brochure:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.product-page .product-detail-hero .btn-brochure:hover::after {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

@media (max-width: 900px) {
  .product-page .product-detail-hero {
    border-radius: 28px;
    margin-top: 94px;
    min-height: clamp(460px, 62svh, 560px) !important;
    padding: 104px 22px 48px !important;
    width: calc(100% - 28px);
  }

  .product-page .product-detail-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.76)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.18));
  }

  .product-page .product-detail-hero > div {
    align-self: end;
  }

  .product-page .product-detail-hero > img {
    order: initial;
  }

  .product-page .product-detail-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem) !important;
  }
}

/* Product banner UX refinement */
.product-page .product-detail-hero {
  border-radius: 32px !important;
  box-shadow: 0 28px 70px rgba(15, 27, 43, 0.12);
  margin-top: clamp(130px, 9vw, 158px) !important;
  min-height: clamp(500px, 60svh, 620px) !important;
  padding: clamp(78px, 8vw, 112px) clamp(28px, 7vw, 78px) clamp(48px, 6vw, 72px) !important;
  width: min(1320px, calc(100% - 56px)) !important;
}

.product-page .product-detail-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.50) 38%, rgba(5, 5, 5, 0.22) 68%, rgba(5, 5, 5, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.32) 100%);
}

.product-page .product-detail-hero > div {
  align-self: center !important;
  display: grid;
  justify-items: start;
  max-width: 650px !important;
}

.product-page .product-detail-hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.9rem) !important;
  letter-spacing: -0.02em;
  line-height: 0.92 !important;
  max-width: 9.5ch !important;
  margin: 0;
}

.product-page .product-detail-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem) !important;
  line-height: 1.48;
  margin-top: 22px !important;
  max-width: 560px !important;
  text-align: left !important;
}

.product-page .product-hero-actions {
  gap: 12px;
  margin-top: 28px !important;
}

.product-page .product-detail-hero .btn {
  font-size: 0.94rem;
  min-height: 54px;
  padding: 12px 12px 12px 24px;
}

.product-page .product-detail-hero .btn::after {
  height: 44px;
  margin: -9px -9px -9px 4px;
  width: 44px;
}

.product-page .product-detail-hero > img {
  filter: saturate(0.98) contrast(1.02);
  object-position: center;
}

@media (max-width: 900px) {
  .product-page .product-detail-hero {
    border-radius: 26px !important;
    margin-top: 92px !important;
    min-height: clamp(450px, 60svh, 540px) !important;
    padding: 96px 22px 42px !important;
    width: calc(100% - 28px) !important;
  }

  .product-page .product-detail-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.70) 72%, rgba(5, 5, 5, 0.78) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.45), rgba(5, 5, 5, 0.16));
  }

  .product-page .product-detail-hero > div {
    align-self: end !important;
    max-width: 100% !important;
  }

  .product-page .product-detail-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.55rem) !important;
    max-width: 10ch !important;
  }

  .product-page .product-detail-hero p:not(.eyebrow) {
    font-size: 0.9rem !important;
    line-height: 1.42;
    max-width: 100% !important;
  }

  .product-page .product-hero-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 330px);
  }

  .product-page .product-detail-hero .btn {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 52px;
    padding: 6px 6px 6px 18px !important;
    width: 100%;
  }

  .product-page .product-detail-hero .btn::after {
    height: 42px !important;
    margin: 0 !important;
    width: 42px !important;
  }
}

/* Product banner corner cleanup */
.product-page .product-detail-hero {
  box-shadow: none !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.product-page .product-detail-hero::before,
.product-page .product-detail-hero > img,
.product-page .product-detail-hero > .product-hero-video {
  border-radius: inherit;
}

.product-page .product-detail-hero > img,
.product-page .product-detail-hero > .product-hero-video {
  height: calc(100% + 2px) !important;
  inset: -1px !important;
  max-width: none !important;
  width: calc(100% + 2px) !important;
}

@supports (clip-path: inset(0 round 32px)) {
  .product-page .product-detail-hero {
    clip-path: inset(0 round 32px);
  }

  @media (max-width: 900px) {
    .product-page .product-detail-hero {
      clip-path: inset(0 round 26px);
    }
  }
}

/* Process and info cards hover border */
.process-grid article,
.product-detail-grid article,
.product-info-grid article {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.process-grid article:hover,
.process-grid article:focus-within,
.product-detail-grid article:hover,
.product-detail-grid article:focus-within,
.product-info-grid article:hover,
.product-info-grid article:focus-within {
  border-color: var(--color-primary) !important;
  box-shadow: 0 18px 44px rgba(0, 135, 255, 0.12);
  transform: translateY(-4px);
}

/* About services three-card balance */
.about-services .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.about-services .process-grid article {
  min-height: 236px;
}

@media (max-width: 980px) {
  .about-services .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-services .process-grid {
    grid-template-columns: 1fr;
  }

  .about-services .process-grid article {
    min-height: auto;
  }
}

/* Legal pages and production polish */
.legal-page {
  padding-top: clamp(120px, 10vw, 160px);
}

.legal-section {
  max-width: 1060px;
  margin-inline: auto;
}

.legal-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
}

.legal-section h1 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.legal-content {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(15, 27, 43, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(15, 27, 43, 0.08);
}

.legal-content h2 {
  margin: 0 0 0.65rem;
  color: var(--color-text);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
}

.legal-content h2:not(:first-child) {
  margin-top: 1.8rem;
}

.legal-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.privacy-check a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form select:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 255, 255, 0.62);
}

.nav-links a[aria-current="page"] {
  font-weight: 800;
}

@media (max-width: 700px) {
  .legal-page {
    padding-top: 104px;
  }

  .legal-section h1 {
    text-align: center;
  }

  .legal-content {
    border-radius: 24px;
  }
}

/* Product carousel title readability fix */
.orpro-card-copy {
  gap: 0.5rem;
}

.orpro-card-copy h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;
  line-height: 1.12;
  min-height: auto;
}

.orpro-card-copy p {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .orpro-card-copy {
    padding: 1.05rem 1.1rem 1.25rem;
  }

  .orpro-card-copy h3 {
    font-size: 1rem;
    max-width: 100%;
  }

  .orpro-card-copy p {
    font-size: 0.92rem;
  }
}

/* Definitive product carousel text fix */
.orpro-card-body h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;
  line-height: 1.16 !important;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem) !important;
  margin-bottom: 0.55rem !important;
}

.orpro-card-body p {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

@media (max-width: 700px) {
  .orpro-card-body {
    padding: 1rem 1.1rem 1.25rem !important;
  }

  .orpro-card-body h3 {
    font-size: 1rem !important;
    line-height: 1.18 !important;
  }

  .orpro-card-body p {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }
}

/* Mobile product carousel cleanup */
@media (max-width: 760px) {
  .product-carousel-section {
    overflow: hidden;
  }

  .orpro-carousel {
    max-width: min(100%, 390px);
  }

  .orpro-carousel-stage {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 0.4rem;
    perspective: none !important;
  }

  .orpro-carousel-card {
    left: 50%;
    max-width: calc(100vw - 52px);
    pointer-events: none;
    transform-origin: center center;
    width: min(340px, calc(100vw - 52px)) !important;
  }

  .orpro-carousel-card[data-slot="0"] {
    opacity: 1 !important;
    pointer-events: auto;
    position: relative;
    transform: translateX(-50%) !important;
    z-index: 3;
  }

  .orpro-carousel-card[data-slot="-2"],
  .orpro-carousel-card[data-slot="-1"],
  .orpro-carousel-card[data-slot="1"],
  .orpro-carousel-card[data-slot="2"],
  .orpro-carousel-card[data-slot="hidden"] {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) scale(0.92) !important;
    visibility: hidden;
    z-index: 0;
  }

  .orpro-card-image {
    aspect-ratio: 4 / 5;
  }

  .orpro-card-image img {
    object-fit: cover;
    object-position: center top;
  }

  .orpro-carousel-nav {
    justify-content: center;
    margin-top: 1.05rem;
  }

  .orpro-carousel-dots {
    margin-top: 1rem;
  }
}

/* Final product banner and carousel spacing polish */
.product-page .product-detail-hero h1 {
  font-size: clamp(2.65rem, 5.4vw, 5rem) !important;
  line-height: 0.96 !important;
  max-width: 12ch !important;
}

@media (max-width: 900px) {
  .product-page .product-detail-hero h1 {
    font-size: clamp(2rem, 8.6vw, 3.05rem) !important;
    line-height: 1 !important;
    max-width: 11ch !important;
  }
}

@media (max-width: 760px) {
  .orpro-carousel-nav {
    margin-top: 1.8rem !important;
  }

  .orpro-carousel-dots,
  .orpro-dots {
    margin-top: 1.05rem !important;
  }
}

/* Product carousel navigation spacing on all viewports */
.orpro-carousel-nav {
  margin-top: clamp(2.25rem, 3.2vw, 3.4rem) !important;
}

.orpro-dots,
.orpro-carousel-dots {
  margin-top: 1.15rem !important;
}

@media (max-width: 760px) {
  .orpro-carousel-nav {
    margin-top: 2.25rem !important;
  }
}

/* YouTube video modal for home hero */
.hero-actions button.btn {
  border: 0;
  font-family: inherit;
}

.video-modal {
  align-items: center;
  display: grid;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(12px);
  inset: 0;
  position: absolute;
}

.video-modal-dialog {
  background: #050505;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  margin: auto;
  max-width: min(980px, calc(100vw - 40px));
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.video-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  color: #050505;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 1.65rem;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  z-index: 2;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-modal-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .video-modal-dialog {
    border-radius: 22px;
    max-width: calc(100vw - 24px);
  }

  .video-modal-close {
    height: 40px;
    right: 10px;
    top: 10px;
    width: 40px;
  }
}

.video-modal-fallback {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  bottom: 16px;
  color: #050505;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  left: 50%;
  padding: 0.72rem 1.1rem;
  position: absolute;
  text-decoration: none;
  transform: translateX(-50%);
  z-index: 2;
}

/* Nosotros embedded video polish */
.about-video .video-frame {
  border: 1px solid rgba(0, 135, 255, 0.14);
  box-shadow: 0 26px 70px rgba(15, 27, 43, 0.16) !important;
  position: relative !important;
  top: auto !important;
}

.video-frame-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  bottom: 14px;
  color: #050505;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  left: 50%;
  padding: 0.68rem 1rem;
  position: absolute;
  text-decoration: none;
  transform: translateX(-50%);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  z-index: 2;
}

.video-frame-link:hover {
  background: var(--color-secondary);
  color: #050505;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 900px) {
  .about-video .video-frame {
    border-radius: 24px;
  }
}

/* Nosotros: YouTube video as banner visual */
.about-banner-video-hero {
  background: #050505;
  overflow: hidden;
}

.about-banner-video {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.about-banner-video iframe {
  border: 0;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 177.78vh;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  width: 100vw;
}

.about-banner-video-hero::after {
  z-index: 1;
}

.about-banner-video-hero .about-banner-copy {
  position: relative;
  z-index: 2;
}

.about-banner-video-hero > img {
  display: none !important;
}

@media (max-width: 700px) {
  .about-banner-video iframe {
    min-width: 220vh;
    transform: translate(-50%, -50%) scale(1.16);
  }
}

/* Nosotros video banner: cleaner video-first treatment */
.about-banner-video-hero {
  background: #000 !important;
}

.about-banner-video-hero::before,
.about-banner-video-hero::after {
  background: transparent !important;
  content: "";
}

.about-banner-video {
  pointer-events: auto !important;
}

.about-banner-video iframe {
  pointer-events: auto !important;
  transform: translate(-50%, -50%) scale(1.02) !important;
}

.about-banner-video-hero .about-banner-copy {
  max-width: 560px !important;
  pointer-events: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

.about-banner-video-hero .about-banner-copy .eyebrow {
  display: none !important;
}

.about-banner-video-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 5rem) !important;
  line-height: 1.02 !important;
  max-width: 12ch !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero h1 {
    font-size: clamp(1.9rem, 8vw, 3.1rem) !important;
    max-width: 11ch !important;
  }

  .about-banner-video iframe {
    transform: translate(-50%, -50%) scale(1.08) !important;
  }
}

/* Final Nosotros video hero sizing */
.about-banner-video-hero {
  height: clamp(520px, 62vh, 680px) !important;
  min-height: 0 !important;
  margin: clamp(112px, 9vw, 142px) auto 0 !important;
  width: min(1320px, calc(100% - 56px)) !important;
  border-radius: 32px !important;
  box-shadow: none !important;
}

.about-banner-video-hero .about-banner-copy {
  max-width: 640px !important;
}

.about-banner-video-hero h1 {
  font-size: clamp(1.9rem, 3.7vw, 3.95rem) !important;
  line-height: 1.04 !important;
  max-width: none !important;
}

.about-banner-video {
  pointer-events: none !important;
}

.about-banner-video iframe {
  pointer-events: none !important;
  transform: translate(-50%, -50%) scale(1.05) !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero {
    height: clamp(430px, 56svh, 540px) !important;
    margin-top: 92px !important;
    width: calc(100% - 28px) !important;
    border-radius: 26px !important;
  }

  .about-banner-video-hero h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.55rem) !important;
    line-height: 1.08 !important;
  }
}

/* Nosotros video banner: large framed area */
.about-banner-video-hero {
  border-radius: 32px !important;
  height: clamp(620px, 72vh, 790px) !important;
  margin-top: clamp(126px, 8vw, 148px) !important;
  max-width: none !important;
  min-height: 0 !important;
  width: calc(100% - 76px) !important;
}

.about-banner-video-hero .about-banner-copy {
  left: clamp(72px, 11vw, 180px) !important;
  max-width: min(760px, 54vw) !important;
  padding: 0 !important;
}

.about-banner-video-hero h1 {
  font-size: clamp(2.05rem, 3.6vw, 4.35rem) !important;
  line-height: 1.02 !important;
}

.about-banner-video iframe {
  height: 100% !important;
  min-height: 100% !important;
  min-width: 177.78vh !important;
  transform: translate(-50%, -50%) scale(1.08) !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero {
    height: clamp(480px, 62svh, 600px) !important;
    margin-top: 96px !important;
    width: calc(100% - 28px) !important;
  }

  .about-banner-video-hero .about-banner-copy {
    left: 24px !important;
    max-width: calc(100% - 48px) !important;
  }

  .about-banner-video-hero h1 {
    font-size: clamp(1.65rem, 6.4vw, 2.65rem) !important;
  }
}

/* Nosotros video hero: allow playback controls */
.about-banner-video,
.about-banner-video iframe {
  pointer-events: auto !important;
}

.about-banner-video-hero::before,
.about-banner-video-hero::after {
  pointer-events: none !important;
}

.about-banner-video {
  z-index: 0 !important;
}

.about-banner-video-hero .about-banner-copy {
  bottom: clamp(46px, 7vw, 92px) !important;
  left: clamp(46px, 8vw, 150px) !important;
  max-width: min(620px, 48vw) !important;
  pointer-events: none !important;
  top: auto !important;
  transform: none !important;
}

.about-banner-video-hero h1 {
  font-size: clamp(1.75rem, 3.1vw, 3.55rem) !important;
  line-height: 1.04 !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero .about-banner-copy {
    bottom: 32px !important;
    left: 22px !important;
    max-width: calc(100% - 44px) !important;
  }

  .about-banner-video-hero h1 {
    font-size: clamp(1.5rem, 5.8vw, 2.3rem) !important;
  }
}

/* Nosotros video hero: clean background-video presentation */
.about-banner-video-hero {
  border: 0 !important;
  border-radius: 30px !important;
  box-shadow: none !important;
  height: clamp(500px, 58vh, 640px) !important;
  isolation: isolate !important;
  margin-top: clamp(118px, 7.5vw, 136px) !important;
  outline: 0 !important;
  overflow: hidden !important;
  width: min(1450px, calc(100% - 92px)) !important;
}

.about-banner-video-hero::before,
.about-banner-video-hero::after {
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.about-banner-video {
  border: 0 !important;
  border-radius: inherit !important;
  inset: 0 !important;
  outline: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.about-banner-video iframe {
  border: 0 !important;
  height: 112% !important;
  left: 50% !important;
  min-height: 112% !important;
  min-width: 200vh !important;
  outline: 0 !important;
  pointer-events: none !important;
  top: 50% !important;
  transform: translate(-50%, -50%) scale(1.04) !important;
  width: 112% !important;
}

.about-banner-video-hero .about-banner-copy {
  bottom: clamp(38px, 5vw, 72px) !important;
  left: clamp(38px, 7vw, 116px) !important;
  max-width: min(520px, 44vw) !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.66) !important;
}

.about-banner-video-hero h1 {
  font-size: clamp(1.55rem, 2.65vw, 3rem) !important;
  line-height: 1.06 !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero {
    border-radius: 24px !important;
    height: clamp(380px, 52svh, 500px) !important;
    margin-top: 86px !important;
    width: calc(100% - 28px) !important;
  }

  .about-banner-video iframe {
    min-width: 210vh !important;
    transform: translate(-50%, -50%) scale(1.08) !important;
  }

  .about-banner-video-hero .about-banner-copy {
    bottom: 28px !important;
    left: 22px !important;
    max-width: calc(100% - 44px) !important;
  }

  .about-banner-video-hero h1 {
    font-size: clamp(1.35rem, 5.2vw, 2.05rem) !important;
  }
}

/* Nosotros video hero: crop YouTube pillarbox and add native-looking toggle */
.about-banner-video iframe {
  height: 145% !important;
  min-height: 145% !important;
  min-width: 145% !important;
  transform: translate(-50%, -50%) !important;
  width: 145% !important;
}

.about-video-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  bottom: clamp(28px, 4vw, 54px);
  color: #000;
  cursor: pointer;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  right: clamp(28px, 4.5vw, 70px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 54px;
  z-index: 3;
}

.about-video-toggle:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-2px);
}

.about-video-toggle-icon {
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.about-video-toggle.is-paused .about-video-toggle-icon {
  font-size: 1.18rem;
  transform: translateX(1px);
}

@media (max-width: 900px) {
  .about-banner-video iframe {
    height: 155% !important;
    min-height: 155% !important;
    min-width: 155% !important;
    width: 155% !important;
  }

  .about-video-toggle {
    bottom: 22px;
    height: 46px;
    right: 22px;
    width: 46px;
  }
}

/* Nosotros video hero: taller frame with cleaner horizontal crop */
.about-banner-video-hero {
  height: clamp(560px, 64vh, 700px) !important;
  width: min(1360px, calc(100% - 124px)) !important;
}

.about-banner-video iframe {
  height: 138% !important;
  min-height: 138% !important;
  min-width: 168% !important;
  width: 168% !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero {
    height: clamp(430px, 58svh, 560px) !important;
    width: calc(100% - 32px) !important;
  }

  .about-banner-video iframe {
    height: 146% !important;
    min-height: 146% !important;
    min-width: 174% !important;
    width: 174% !important;
  }
}

/* Nosotros video hero: brand mark instead of headline */
.about-banner-video-hero .about-banner-copy {
  align-items: center !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 999px !important;
  bottom: clamp(34px, 4.8vw, 64px) !important;
  display: inline-flex !important;
  left: clamp(34px, 5.5vw, 92px) !important;
  max-width: none !important;
  padding: 12px 24px !important;
  pointer-events: none !important;
  top: auto !important;
  transform: none !important;
}

.about-banner-logo {
  display: block;
  height: clamp(44px, 4.2vw, 66px);
  object-fit: contain;
  width: auto;
}

@media (max-width: 900px) {
  .about-banner-video-hero .about-banner-copy {
    bottom: 24px !important;
    left: 18px !important;
    padding: 9px 16px !important;
  }

  .about-banner-logo {
    height: clamp(34px, 9vw, 48px);
  }
}

/* Nosotros video hero: lock logo badge to lower-left corner */
.about-banner-video-hero .about-banner-copy {
  background: transparent !important;
  border: 0 !important;
  bottom: clamp(26px, 4vw, 48px) !important;
  height: auto !important;
  left: clamp(30px, 4.2vw, 64px) !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  position: absolute !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
}

.about-banner-video-hero .about-banner-logo {
  height: auto !important;
  max-height: 50px !important;
  max-width: clamp(150px, 12vw, 220px) !important;
  object-fit: contain !important;
  width: clamp(150px, 12vw, 220px) !important;
}

@media (max-width: 900px) {
  .about-banner-video-hero .about-banner-copy {
    bottom: 22px !important;
    left: 18px !important;
    padding: 0 !important;
  }

  .about-banner-video-hero .about-banner-logo {
    max-height: 38px !important;
    max-width: 150px !important;
    width: 150px !important;
  }
}

/* Mobile QA: Nosotros video banner */
@media (max-width: 600px) {
  .about-banner-video-hero {
    border-radius: 22px !important;
    height: clamp(390px, 56svh, 470px) !important;
    margin-top: 92px !important;
    overflow: hidden !important;
    width: calc(100% - 24px) !important;
  }

  .about-banner-video {
    border-radius: inherit !important;
    overflow: hidden !important;
  }

  .about-banner-video iframe {
    height: 142% !important;
    left: 50% !important;
    min-height: 142% !important;
    min-width: 210% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 210% !important;
  }

  .about-banner-video-hero .about-banner-copy {
    bottom: 64px !important;
    left: 16px !important;
    right: auto !important;
    width: auto !important;
  }

  .about-banner-video-hero .about-banner-logo {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
    max-height: 42px !important;
    max-width: 156px !important;
    width: 156px !important;
  }

  .about-video-toggle {
    bottom: 16px !important;
    height: 42px !important;
    right: 16px !important;
    width: 42px !important;
  }
}

/* Footer: remove oversized decorative brand word */
.footer-brand-row {
  display: none !important;
}

/* Artroplastía de cadera: product-specific banner composition */
.product-detail-hero > img[src$="bg-cadera.png"] {
  object-fit: cover !important;
  object-position: center right !important;
}

.product-detail-hero:has(> img[src$="bg-cadera.png"])::before {
  background:
    linear-gradient(90deg, rgba(0, 135, 255, 0.18) 0%, rgba(0, 135, 255, 0.06) 34%, rgba(255, 255, 255, 0.00) 68%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.24) 42%, rgba(5, 5, 5, 0.04) 78%) !important;
}

@media (max-width: 900px) {
  .product-detail-hero > img[src$="bg-cadera.png"] {
    object-fit: cover !important;
    object-position: 62% center !important;
  }

  .product-detail-hero:has(> img[src$="bg-cadera.png"])::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.10) 0%, rgba(5, 5, 5, 0.64) 74%, rgba(5, 5, 5, 0.76) 100%),
      linear-gradient(90deg, rgba(0, 135, 255, 0.16), rgba(0, 135, 255, 0.04)) !important;
  }
}

/* Custom PDF.js brochure viewer */
.pdf-js-viewer {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 135, 255, 0.12);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: min(680px, 100%);
  overflow: hidden;
  padding: clamp(16px, 2.6vw, 28px);
}

.pdf-canvas-shell {
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
  width: 100%;
}

.pdf-canvas {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.pdf-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  width: 100%;
}

.pdf-control-btn {
  background: var(--secondary);
  border: 0;
  border-radius: 999px;
  color: #050505;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  min-width: 118px;
  padding: 13px 20px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pdf-control-btn:hover {
  background: #00964e;
  color: #ffffff;
  transform: translateY(-2px);
}

.pdf-control-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.pdf-page-count {
  color: #344052;
  font-size: 0.95rem;
  font-weight: 800;
  min-width: 118px;
  text-align: center;
}

@media (max-width: 640px) {
  .pdf-js-viewer {
    border-radius: 22px;
    padding: 12px;
  }

  .pdf-canvas-shell {
    border-radius: 18px;
    min-height: 260px;
  }

  .pdf-controls {
    gap: 10px;
  }

  .pdf-control-btn {
    min-width: 104px;
    padding: 12px 16px;
  }

  .pdf-page-count {
    order: -1;
    width: 100%;
  }
}

/* Nosotros video hero: centered prominent play/pause control */
.about-video-toggle {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  bottom: auto !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24) !important;
  height: clamp(62px, 5.2vw, 82px) !important;
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: clamp(62px, 5.2vw, 82px) !important;
}

.about-video-toggle:hover {
  transform: translate(-50%, -50%) scale(1.05) !important;
}

.about-video-toggle-icon {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem) !important;
}

.about-video-toggle.is-paused .about-video-toggle-icon {
  font-size: clamp(1.35rem, 1.9vw, 1.85rem) !important;
  transform: translateX(3px) !important;
}

@media (max-width: 600px) {
  .about-video-toggle {
    height: 58px !important;
    width: 58px !important;
  }
}

/* Nosotros video hero: subtle lower-right control */
.about-video-toggle {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  bottom: clamp(20px, 3.2vw, 42px) !important;
  box-shadow: none !important;
  height: clamp(46px, 3.6vw, 58px) !important;
  left: auto !important;
  right: clamp(20px, 3.8vw, 54px) !important;
  top: auto !important;
  transform: none !important;
  width: clamp(46px, 3.6vw, 58px) !important;
}

.about-video-toggle:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  transform: translateY(-2px) !important;
}

.about-video-toggle-icon,
.about-video-toggle.is-paused .about-video-toggle-icon {
  align-items: center !important;
  color: #fff !important;
  display: flex !important;
  font-size: 1rem !important;
  height: 100% !important;
  justify-content: center !important;
  line-height: 1 !important;
  transform: none !important;
  width: 100% !important;
}

@media (max-width: 600px) {
  .about-video-toggle {
    bottom: 16px !important;
    height: 42px !important;
    right: 16px !important;
    width: 42px !important;
  }
}

/* Blog article modal */
.blog-read-more {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--secondary);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  margin-top: 4px;
  padding: 0 0 5px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.blog-read-more:hover {
  border-color: #00964e;
  color: #050505;
  transform: translateY(-2px);
}

.blog-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 48px);
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 1200;
}

.blog-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-modal-backdrop {
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(10px);
  inset: 0;
  position: absolute;
}

.blog-modal-dialog {
  background: #ffffff;
  border: 1px solid rgba(0, 135, 255, 0.12);
  border-radius: clamp(24px, 3vw, 34px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  max-height: min(84vh, 860px);
  max-width: 860px;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 58px);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
  width: min(100%, 860px);
}

.blog-modal.open .blog-modal-dialog {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 600;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 46px;
}

.blog-modal-close:hover {
  background: #00964e;
  transform: rotate(8deg) scale(1.04);
}

.blog-modal-meta {
  color: var(--primary);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-right: 54px;
  text-transform: uppercase;
}

.blog-modal-dialog h2 {
  color: #050505;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 54px 24px 0;
}

.blog-modal-body {
  color: #344052;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.blog-modal-body h3 {
  color: #050505;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 30px 0 12px;
}

.blog-modal-body p {
  margin: 0 0 16px;
}

.blog-modal-body ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
  padding-left: 1.2rem;
}

.blog-event-details {
  background: rgba(0, 135, 255, 0.06);
  border: 1px solid rgba(0, 135, 255, 0.14);
  border-radius: 18px;
  list-style: none;
  padding: 18px !important;
}

body.blog-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .blog-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .blog-modal-dialog {
    border-radius: 24px 24px 18px 18px;
    max-height: 88vh;
    padding: 30px 22px;
  }

  .blog-modal-close {
    height: 40px;
    right: 16px;
    top: 16px;
    width: 40px;
  }

  .blog-modal-dialog h2 {
    margin-right: 34px;
  }
}

/* Modal scrollbars: keep the scrollbar inside the panel and on-brand */
.blog-modal-dialog,
body.product-page .contact-form-panel {
  scrollbar-color: var(--primary) rgba(0, 135, 255, 0.12) !important;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin !important;
}

.blog-modal-dialog::-webkit-scrollbar,
body.product-page .contact-form-panel::-webkit-scrollbar {
  display: block !important;
  width: 10px;
}

.blog-modal-dialog::-webkit-scrollbar-track,
body.product-page .contact-form-panel::-webkit-scrollbar-track {
  background: rgba(0, 135, 255, 0.10);
  border-radius: 999px;
  margin: 24px 0;
}

.blog-modal-dialog::-webkit-scrollbar-thumb,
body.product-page .contact-form-panel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.blog-modal-dialog::-webkit-scrollbar-thumb:hover,
body.product-page .contact-form-panel::-webkit-scrollbar-thumb:hover {
  background: #006fce;
}

body.product-page .contact-form-section {
  scrollbar-width: none !important;
}

body.product-page .contact-form-section::-webkit-scrollbar {
  display: none !important;
}

/* Product modal scrollbar and justified reading text */
body.product-page.product-form-open .contact-form-panel,
.blog-modal.open .blog-modal-dialog {
  scrollbar-color: #0087FF rgba(0, 135, 255, 0.10) !important;
  scrollbar-width: thin !important;
}

body.product-page.product-form-open .contact-form-panel::-webkit-scrollbar,
.blog-modal.open .blog-modal-dialog::-webkit-scrollbar {
  display: block !important;
  height: 9px !important;
  width: 9px !important;
}

body.product-page.product-form-open .contact-form-panel::-webkit-scrollbar-track,
.blog-modal.open .blog-modal-dialog::-webkit-scrollbar-track {
  background: rgba(0, 135, 255, 0.12) !important;
  border-radius: 999px !important;
  margin: 22px 0 !important;
}

body.product-page.product-form-open .contact-form-panel::-webkit-scrollbar-thumb,
.blog-modal.open .blog-modal-dialog::-webkit-scrollbar-thumb {
  background-color: #0087FF !important;
  background-image: linear-gradient(180deg, #0087FF, #006fce) !important;
  border: 0 !important;
  border-radius: 999px !important;
  min-height: 48px !important;
}

body.product-page.product-form-open .contact-form-panel::-webkit-scrollbar-corner,
.blog-modal.open .blog-modal-dialog::-webkit-scrollbar-corner {
  background: transparent !important;
}

body.product-page .contact-form-heading p:not(.eyebrow),
.blog-modal-body p {
  text-align: justify;
  text-wrap: pretty;
}

.blog-modal-body li {
  text-align: justify;
}

/* Hide fixed menu when scrolling down, reveal when scrolling up */
.site-header {
  transition: opacity 0.24s ease, transform 0.24s ease, padding 0.24s ease !important;
  will-change: transform;
}

.site-header.header-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 18px)) !important;
}

.site-header.menu-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.product-page.product-form-open .site-header {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(calc(-100% - 18px)) !important;
}

/* Footer brand background */
.footer {
  background: #524E4D !important;
}

/* Product supplier section */
.product-supplier {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.supplier-showcase {
  align-items: center;
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 var(--container-padding);
}

.supplier-copy {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.supplier-copy h2 {
  color: #050505;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}

.supplier-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
  margin: 0 auto 16px;
  max-width: 920px;
  text-align: justify;
}

.supplier-media {
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(15, 27, 43, 0.14);
  margin: 0;
  min-height: clamp(260px, 32vw, 430px);
  overflow: hidden;
  position: relative;
}

.supplier-media::after {
  background: linear-gradient(90deg, rgba(0, 135, 255, 0.18), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.supplier-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

@media (max-width: 900px) {
  .supplier-showcase {
    grid-template-columns: 1fr;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .supplier-copy {
    max-width: none;
    text-align: center;
  }

  .supplier-copy p {
    text-align: justify;
  }

  .supplier-media {
    border-radius: 24px;
    min-height: 230px;
  }
}

@media (max-width: 600px) {
  .product-page .product-education .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .supplier-copy h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .supplier-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .supplier-media {
    border-radius: 22px;
    min-height: 190px;
  }
}

/* Product hero video */
.product-page .product-detail-hero > .product-hero-video {
  border-radius: 28px;
  box-shadow: none !important;
  display: block;
  height: calc(100% + 2px) !important;
  inset: -1px !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  position: absolute;
  transform: none !important;
  width: calc(100% + 2px) !important;
  z-index: 0;
}

@media (max-width: 900px) {
  .product-page .product-detail-hero > .product-hero-video {
    min-height: 0 !important;
    order: initial;
  }
}

/* Final product/supplier visual tuning */
.supplier-copy h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.1rem) !important;
  line-height: 1.06 !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  text-align: center;
}

.supplier-showcase {
  gap: clamp(24px, 3.2vw, 38px) !important;
}

.supplier-media {
  aspect-ratio: 4.25 / 1;
  border-radius: 28px;
  min-height: 0 !important;
}

.supplier-media img {
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-vertical-grid .product-card {
  aspect-ratio: 1.06 / 1;
  border-radius: 30px;
}

.product-vertical-grid .product-card > .product-card-content {
  align-items: end;
  display: grid !important;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 118px clamp(22px, 2.2vw, 34px) clamp(24px, 2.3vw, 34px) !important;
}

.product-vertical-grid .product-card > .product-card-content h3 {
  font-size: clamp(1.45rem, 2.05vw, 2.15rem);
  line-height: 0.98;
  max-width: 12ch;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost {
  align-self: end;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.86);
  border-width: 1.5px;
  font-size: 0.95rem;
  min-height: 58px;
  padding: 8px 8px 8px 20px;
}

.product-vertical-grid .product-card > .product-card-content .product-card-ghost i {
  height: 42px;
  width: 42px;
}

.product-vertical-grid .product-card:hover .product-card-ghost,
.product-vertical-grid .product-card:focus-visible .product-card-ghost {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

@media (max-width: 900px) {
  .supplier-media {
    aspect-ratio: 2.45 / 1;
    border-radius: 24px;
  }
}

@media (max-width: 680px) {
  .supplier-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
  }

  .supplier-media {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .product-vertical-grid .product-card {
    aspect-ratio: 1 / 1;
  }

  .product-vertical-grid .product-card > .product-card-content {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 92px 24px 24px !important;
  }

  .product-vertical-grid .product-card > .product-card-content h3 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    max-width: 11ch;
  }

  .product-vertical-grid .product-card > .product-card-content .product-card-ghost {
    justify-self: start;
    min-height: 56px;
  }
}
