/*
  POTABILIZAR SOLUTIONS - MODERN CORE UI v2.0
  ===========================================
  Premium Industrial Design System.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800&display=swap');

:root {
  --bg-void: #020617;
  --bg-deep: #0f172a;
  --bg-light: #f7fafc;
  --bg-light-soft: #eef6fb;
  --text-dark: #0f172a;
  --text-muted-dark: #475569;
  --bg-glass: rgba(15, 23, 42, 0.4);
  --bg-glass-heavy: rgba(15, 23, 42, 0.95);
  --accent-cyan: #22d3ee;
  --accent-blue: #3b82f6;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.1);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 2. LAYOUT ENGINE (12-Column Grid) */
.page-container {
  display: flex;
  flex-direction: column;
}

.modern-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.modern-container > *,
.span-4,
.span-5,
.span-6,
.span-7,
.span-8,
.span-12 {
  min-width: 0;
  max-width: 100%;
}

.modern-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .modern-container {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    text-align: center;
  }
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: 1 / -1;
  }
}

/* 3. PREMIUM NAVBAR (Categorized) */
.glass-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 14px 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.glass-nav.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: var(--bg-glass-heavy);
  border-top: none;
}

.nav-logo img {
  height: 54px;
  width: auto;
  transition: transform 0.3s;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.light-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section p,
.light-section li,
.light-section span {
  color: inherit;
}

.soft-section {
  background: linear-gradient(180deg, var(--bg-light), var(--bg-light-soft));
  color: var(--text-dark);
}

.nav-item {
  position: relative;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-primary) !important;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 11px 13px;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover, .nav-item:hover .nav-link {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--accent-blue);
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

/* 4. ARTICLE & LEGACY CONTENT STYLING */
.content-render {
  color: var(--text-primary);
  line-height: 1.8;
}

.content-render a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
  transition: 0.3s;
}

.content-render a:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--accent-cyan);
}

.content-render h1, .content-render h2, .content-render h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  margin: 40px 0 20px 0;
  line-height: 1.2;
}

.content-render p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.content-render img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 20px 0;
}

/* Fix for giant legacy icons */
.content-render svg,
.content-render .elementor-swiper-button,
.content-render .elementor-arrows-position-inside {
  max-width: 50px;
  max-height: 50px;
  fill: var(--accent-cyan) !important;
}

/* Hide broken legacy sliders but keep their text content */
.content-render .swiper-pagination,
.content-render .elementor-swiper-button {
  display: none !important;
}

.content-render .elementor-slides-wrapper {
  overflow: visible !important;
}

.content-render .swiper-slide {
  background: none !important;
  position: relative !important;
  width: 100% !important;
  margin-bottom: 30px;
}

.content-render .swiper-slide-inner {
  display: block;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-glass);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(620px, 88vw);
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(10px);
  pointer-events: none;
}

/* Bridging pseudo-element to prevent hover loss */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

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

.menu-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dropdown-link {
  display: block;
  padding: 11px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dropdown-link:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-cyan);
  padding-left: 20px;
}

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

/* 4. HERO SECTION V2 */
.hero-v2 {
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 54px;
}

.hero-content {
  z-index: 10;
}

.authority-hero .modern-container {
  align-items: center;
}

.hero-v2 h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.55rem);
  line-height: 1.02;
  margin-bottom: 30px;
  max-width: 980px;
}

.home-claim-title {
  max-width: 1050px;
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.45rem, 7.2vw, 7.35rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(248, 250, 252, 0.94);
}

.home-claim-title > span {
  display: block;
}

.home-claim-title .claim-outline {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(248, 250, 252, 0.92);
  text-shadow: none;
}

.home-claim-subtitle {
  font-size: clamp(1.45rem, 2.4vw, 2.45rem) !important;
  max-width: 900px !important;
  color: rgba(248, 250, 252, 0.86) !important;
  font-style: italic;
  letter-spacing: 0;
}

.hero-v2 p {
  font-size: 1.25rem;
  max-width: 600px;
  color: var(--text-secondary);
}

.home-seo-intro {
  min-height: auto;
  padding: 76px 0;
  background: #ffffff;
  color: var(--text-dark);
}

.home-seo-intro h1 {
  color: var(--text-dark);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.04;
  max-width: 980px;
}

.home-seo-intro p {
  color: var(--text-muted-dark);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.15), transparent 50%),
              linear-gradient(to bottom, var(--bg-void), transparent 50%, var(--bg-void));
  z-index: 1;
}

.hero-image-v2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  mask-image: linear-gradient(to left, black 60%, transparent);
}

.hero-video-v2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: var(--hero-fallback, none) center / cover no-repeat;
  mask-image: linear-gradient(to left, black 60%, transparent);
}

.hero-video-v2 iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* 5. COMPONENTS & GRID */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.03);
}

.premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--accent-cyan);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.image-shaper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.image-shaper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-glass);
  border-radius: inherit;
  pointer-events: none;
}

.image-shaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-shaper:hover img {
  transform: scale(1.05);
}

.modern-button {
  background: var(--accent-blue);
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.1);
}

.modern-button:hover {
  background: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

/* 6. UTILITIES */
.reveal-up { opacity: 0; }

.mobile-menu-button {
  display: none;
  border: 1px solid var(--border-glass);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-primary);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
}

.hero-actions,
.link-list,
.contact-card,
.footer-grid,
.nav-links.open {
  display: flex;
}

.hero-actions {
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.text-button {
  color: var(--accent-cyan);
  font-weight: 700;
  text-decoration: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-proof div,
.service-card,
.project-card,
.process-grid > div {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.hero-proof div,
.contact-card,
.aside-card,
.article-lead {
  border: 1px solid var(--border-glass);
  background: rgba(15, 23, 42, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
}

.hero-proof div {
  padding: 18px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-proof strong {
  display: block;
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
}

.hero-proof span {
  color: var(--text-secondary);
}

.trust-band,
.process-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.capability-section {
  background: linear-gradient(180deg, var(--bg-light), var(--bg-light-soft));
  color: var(--text-dark);
}

.trusted-section {
  min-height: auto;
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef7fb);
  color: var(--text-dark);
}

.client-segment-section,
.water-diagnosis-section {
  background: #f8fbfd;
  color: var(--text-dark);
}

.client-segment-grid,
.water-diagnosis-steps {
  display: grid;
  gap: 18px;
}

.client-segment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-segment-card,
.water-diagnosis-steps article {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.client-segment-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: #0369a1;
  font-weight: 900;
  letter-spacing: 0;
}

.client-segment-card h3,
.water-diagnosis-steps h3 {
  margin: 0 0 12px;
  color: #06111f;
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
}

.client-segment-card p,
.water-diagnosis-copy p,
.water-diagnosis-steps p {
  color: #475569;
  line-height: 1.7;
}

.water-diagnosis-section {
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.92), rgba(8, 47, 73, 0.88)),
    url('/assets/img/hero_industrial.webp') center / cover;
  color: #ffffff;
}

.water-diagnosis-copy h2 {
  max-width: 620px;
  color: #ffffff;
}

.water-diagnosis-copy p {
  color: rgba(226, 232, 240, 0.9);
}

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

.water-diagnosis-steps article {
  background: rgba(255, 255, 255, 0.94);
}

.water-diagnosis-steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-cyan);
  font-weight: 900;
  font-size: 0.78rem;
}

.home-conversion-section,
.home-faq-section {
  background: #ffffff;
  color: var(--text-dark);
}

.home-conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.94), rgba(12, 74, 110, 0.9)),
    url('/assets/img/hero_industrial.webp') center / cover;
  color: #ffffff;
}

.home-conversion-band h2,
.home-conversion-band p {
  max-width: 850px;
  color: #ffffff;
}

.home-cta-grid,
.home-faq-grid {
  display: grid;
  gap: 16px;
}

.home-cta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.home-cta-card,
.home-faq-grid article {
  display: block;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: #f8fbfd;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.home-cta-card span {
  color: #0284c7;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-cta-card h3,
.home-faq-grid h3 {
  margin: 12px 0;
  color: #06111f;
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
}

.home-cta-card p,
.home-faq-grid p {
  color: #475569;
  line-height: 1.65;
}

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

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

.trusted-heading h2 {
  color: var(--text-dark);
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  text-transform: uppercase;
}

.trusted-heading p {
  margin: 0 auto;
  color: var(--text-muted-dark);
}

.trusted-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trusted-proof-row div {
  min-height: 138px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 12, 27, 0.96), rgba(3, 40, 62, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.24), transparent 36%);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
  color: #ffffff;
}

.trusted-proof-row strong {
  display: block;
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.92;
  margin-bottom: 12px;
}

.trusted-proof-row span {
  display: block;
  max-width: 260px;
  color: rgba(226, 246, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.45;
}

.client-logo-slider {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.client-logo-wall-motion {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.client-logo-track {
  display: flex;
  width: max-content;
  gap: 22px;
  align-items: center;
  will-change: transform;
  animation: client-marquee 46s linear infinite;
}

.client-logo-slider-2 .client-logo-track {
  animation-duration: 52s;
  animation-direction: reverse;
}

.client-logo-slider-3 .client-logo-track {
  animation-duration: 58s;
}

.client-logo-slider:hover .client-logo-track {
  animation-play-state: paused;
}

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

.client-logo-placeholder {
  flex: 0 0 208px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.client-logo-placeholder span {
  color: #334155;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.client-logo-real {
  background: #ffffff;
}

.client-logo-real span {
  display: none;
}

.client-logo-real img {
  display: block;
  width: 100%;
  max-width: 164px;
  max-height: 70px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

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

.client-sector-row div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.client-sector-row span {
  display: block;
  color: #02b9df;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.client-sector-row strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.brand-section {
  min-height: auto;
  background: #ffffff;
  color: var(--text-dark);
}

.brand-panel {
  display: grid;
  gap: 54px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.09);
}

.brand-group {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.brand-group h2 {
  max-width: 820px;
  color: var(--text-dark);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  margin-bottom: 0;
}

.brand-group p {
  max-width: 860px;
  color: var(--text-muted-dark);
  font-size: 1.08rem;
}

.brand-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-carousel-track {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  will-change: transform;
  animation: brand-marquee 28s linear infinite;
}

.official-brand-track {
  animation-duration: 22s;
}

.working-brand-track {
  animation-duration: 34s;
  animation-direction: reverse;
}

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

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

.brand-logo-placeholder {
  flex: 0 0 180px;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.brand-logo-placeholder span {
  font-family: 'Outfit', sans-serif;
  color: #1f3347;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.brand-logo-image img {
  display: block;
  width: 100%;
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
}

.brand-logo-official {
  flex-basis: 300px;
  min-height: 130px;
  background: linear-gradient(180deg, #ffffff, #f1fbff);
}

.brand-logo-official img {
  max-width: 250px;
  max-height: 94px;
}

.brand-logo-official span {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
}

.section-heading,
.trust-copy {
  max-width: 980px;
}

.section-heading p,
.trust-copy p,
.capability-section p {
  color: var(--text-muted-dark);
  font-size: 1.12rem;
  max-width: 850px;
}

.service-grid,
.project-grid,
.process-grid,
.evidence-gallery {
  display: grid;
  gap: 18px;
}

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

.services-home-section .section-heading {
  max-width: 1040px;
}

.services-home-section .section-heading h2 {
  max-width: 920px;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  line-height: 1.06;
}

.services-home-section .section-heading p {
  color: var(--text-secondary);
}

.service-family-stack {
  display: grid;
  gap: 34px;
}

.service-family {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.38);
}

.service-family-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  gap: 24px;
  align-items: end;
}

.service-family-heading h3 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
}

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

.service-family-incompresibles .service-family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-family-compresibles {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.92), rgba(8, 22, 35, 0.76)),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.14), transparent 34%);
  border-color: rgba(34, 211, 238, 0.18);
}

.service-family-ingenieria {
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(18, 31, 50, 0.86)),
    radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.22), transparent 34%);
  border-color: rgba(59, 130, 246, 0.22);
}

.service-family-ingenieria .section-kicker {
  color: #60a5fa;
}

.service-family-ingenieria .service-family-heading h3 {
  color: #f8fafc;
}

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

.project-showcase {
  position: relative;
  isolation: isolate;
  padding: clamp(22px, 2.7vw, 34px);
}

.project-slot-machine {
  overflow: hidden;
  border-radius: 8px;
  outline: none;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0 1px, transparent 1px calc(33.333% - 1px), rgba(148, 163, 184, 0.1) calc(33.333% - 1px) 33.333%, transparent 33.333% calc(66.666% - 1px), rgba(148, 163, 184, 0.1) calc(66.666% - 1px) 66.666%, transparent 66.666%),
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.14), transparent 34%),
    linear-gradient(180deg, #030712 0%, #07111f 48%, #020617 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 8px rgba(2, 6, 23, 0.46),
    0 28px 80px rgba(0, 0, 0, 0.34);
}

.project-showcase .project-grid,
.project-showcase .project-actions {
  position: relative;
  z-index: 2;
}

.project-slot-frame {
  position: absolute;
  inset: 10px 10px 74px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  pointer-events: none;
  opacity: 0.9;
}

.project-slot-frame span {
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 18%, transparent 50%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(34, 211, 238, 0.04), rgba(34, 211, 238, 0.16), rgba(34, 211, 238, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow:
    inset 18px 0 32px rgba(255, 255, 255, 0.05),
    inset -18px 0 32px rgba(0, 0, 0, 0.26),
    inset 0 0 42px rgba(34, 211, 238, 0.08);
  transform: none;
}

.project-slot-frame span::before,
.project-slot-frame span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.45), rgba(15, 23, 42, 0.15), rgba(2, 6, 23, 0.52));
}

.project-slot-frame span::before {
  left: -7px;
}

.project-slot-frame span::after {
  right: -7px;
  transform: scaleX(-1);
}

.project-slot-reels {
  position: absolute;
  inset: 26px 26px 114px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  pointer-events: none;
}

.project-slot-reels span {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0.48;
  filter: saturate(0.75) contrast(1.08);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.16), transparent 24%, transparent 76%, rgba(2, 6, 23, 0.22)),
    var(--slot-current, url("/assets/img/hero_industrial.webp")) center / cover no-repeat;
  box-shadow: inset 0 22px 40px rgba(255, 255, 255, 0.08), inset 0 -24px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.9);
}

.project-slot-reels span::before,
.project-slot-reels span::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.52;
}

.project-slot-reels span::before {
  background-image: var(--slot-before, url("/assets/img/hero_industrial.webp"));
  transform: translateY(-108%);
}

.project-slot-reels span::after {
  background-image: var(--slot-after, url("/assets/img/hero_industrial.webp"));
  transform: translateY(108%);
}

.project-slot-machine.reels-spin-up .project-slot-reels span.is-spinning-column {
  animation: slot-reel-up 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slot-machine.reels-spin-down .project-slot-reels span.is-spinning-column {
  animation: slot-reel-down 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slot-reels span:nth-child(2),
.project-slot-reels span:nth-child(5) {
  animation-delay: 0.06s;
}

.project-slot-reels span:nth-child(3),
.project-slot-reels span:nth-child(6) {
  animation-delay: 0.12s;
}

.project-slot-machine::before,
.project-slot-machine::after,
.project-slot-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.project-slot-machine::before,
.project-slot-machine::after {
  z-index: 4;
  height: 120px;
}

.project-slot-machine::before {
  top: 0;
  background:
    linear-gradient(180deg, #020617 0%, rgba(2, 6, 23, 0.9) 44%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.06) 0 1px, transparent 1px 42px);
}

.project-slot-machine::after {
  bottom: 0;
  background:
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.9) 44%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.06) 0 1px, transparent 1px 42px);
}

.project-slot-frame::after {
  top: 48%;
  z-index: 2;
  height: 34%;
  transform: translateY(-50%);
  border-top: 1px solid rgba(248, 250, 252, 0.2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.24);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(34, 211, 238, 0.1), rgba(2, 6, 23, 0.18));
}

.project-slot-grid {
  position: relative;
  z-index: 3;
  perspective: 1100px;
  transform-style: preserve-3d;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.project-slot-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  transform-style: preserve-3d;
}

.project-slot-column.spin-up .project-slot-card {
  animation: slot-card-up 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slot-column.spin-down .project-slot-card {
  animation: slot-card-down 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slot-column .project-slot-card:nth-child(2) {
  animation-delay: 0.04s;
}

.project-slot-column:nth-child(2).spin-up .project-slot-card,
.project-slot-column:nth-child(2).spin-down .project-slot-card {
  animation-delay: 0.03s;
}

.project-slot-column:nth-child(3).spin-up .project-slot-card,
.project-slot-column:nth-child(3).spin-down .project-slot-card {
  animation-delay: 0.06s;
}

@keyframes slot-card-up {
  from {
    opacity: 0;
    transform: translateY(96px) rotateX(-28deg) scale(0.92);
  }
  58% { transform: translateY(-8px) rotateX(5deg) scale(1.01); }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes slot-card-down {
  from {
    opacity: 0;
    transform: translateY(-96px) rotateX(28deg) scale(0.92);
  }
  58% { transform: translateY(8px) rotateX(-5deg) scale(1.01); }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes slot-reel-up {
  from { transform: translateY(88px) scale(0.86); filter: blur(2px) saturate(0.6); }
  64% { transform: translateY(-10px) scale(0.92); filter: blur(0.4px) saturate(0.78); }
  to { transform: translateY(16px) scale(0.9); filter: blur(0) saturate(0.75); }
}

@keyframes slot-reel-down {
  from { transform: translateY(-88px) scale(0.86); filter: blur(2px) saturate(0.6); }
  64% { transform: translateY(10px) scale(0.92); filter: blur(0.4px) saturate(0.78); }
  to { transform: translateY(16px) scale(0.9); filter: blur(0) saturate(0.75); }
}

.project-wheel-hint {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 12px 0 0;
  color: rgba(226, 246, 255, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

.project-backdrop-stack {
  position: absolute;
  inset: -74px -96px -10px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 22px;
  opacity: 0.56;
}

.project-backdrop-stack::before,
.project-backdrop-stack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.project-backdrop-stack::before {
  top: 0;
  height: 28%;
  background: linear-gradient(180deg, #020617 0%, rgba(2, 6, 23, 0.72) 48%, transparent 100%);
}

.project-backdrop-stack::after {
  bottom: 0;
  height: 34%;
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.82) 46%, transparent 100%);
}

.project-depth-rail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 24px;
  animation: project-rail-drift 34s linear infinite;
  will-change: transform;
}

.project-depth-rail:nth-child(2),
.project-depth-rail:nth-child(4) {
  animation-direction: reverse;
  transform: translateY(-88px);
}

.project-depth-rail:nth-child(3) {
  animation-duration: 40s;
}

@keyframes project-rail-drift {
  from { transform: translateY(-34px); }
  to { transform: translateY(-210px); }
}

.project-backdrop-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: #0b1220;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0.62;
  transform: scale(0.92);
}

.project-backdrop-card + .project-backdrop-card {
  margin-top: -28px;
}

.project-backdrop-card:nth-child(3n+2) {
  z-index: 1;
  opacity: 0.84;
  border-color: rgba(34, 211, 238, 0.48);
  transform: scale(1.04);
}

.project-backdrop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
}

.project-showcase-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.38) 22%, rgba(2, 6, 23, 0.38) 78%, rgba(2, 6, 23, 0.88)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.7)),
    radial-gradient(circle at 50% 18%, rgba(34, 211, 238, 0.1), transparent 38%);
  pointer-events: none;
}

.project-controls,
.project-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.project-controls {
  margin-top: -12px;
  margin-bottom: 6px;
}

.project-filter {
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
  color: var(--text-secondary);
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
}

.project-filter.active,
.project-filter:hover {
  color: var(--text-primary);
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.11);
}

.project-card.is-hidden {
  display: none;
}

.project-actions {
  margin-top: 12px;
}

.project-more-button[hidden] {
  display: none;
}

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

.service-card,
.project-card,
.process-grid > div {
  min-height: 230px;
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.service-card,
.process-grid > div {
  padding: 28px;
}

.service-card-visual {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.18);
}

.service-card-visual figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
}

.service-card-visual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62)),
    linear-gradient(90deg, rgba(34, 211, 238, 0.24), transparent 58%);
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transition: transform 0.7s ease;
}

.service-card-visual:hover img {
  transform: scale(1.06);
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card-content span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  color: var(--accent-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.service-card-content h3 {
  color: #06111f;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.service-card-content p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

.service-card-content strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: #0284c7;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.project-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  background: #020617;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-media img {
  transform: scale(1.06);
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  background: #ffffff;
}

.project-card h3 {
  color: #06111f;
}

.project-card-body p {
  margin-top: auto;
  color: #475569;
}

.project-open-label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
  color: var(--accent-cyan);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.archive-hero .hero-image-v2 {
  width: 58%;
}

.archive-projects-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

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

.archive-project-card {
  min-height: 430px;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.08);
}

.service-card span,
.project-card span,
.process-grid span {
  color: var(--accent-cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.service-card h3,
.project-card h3,
.process-grid h3,
.contact-card h3,
.aside-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  margin: 14px 0;
}

.service-card p,
.project-card p,
.process-grid p,
.project-card p,
.process-grid p {
  color: var(--text-muted-dark);
}

.project-slot-card {
  border-color: rgba(226, 232, 240, 0.72);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(34, 211, 238, 0.08);
}

.project-slot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 14%, transparent 86%, rgba(2, 6, 23, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 28%);
  opacity: 0.48;
}

.service-card-visual:hover {
  background: #ffffff;
}

.service-card-visual .service-card-content h3 {
  color: #06111f;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.service-card-visual .service-card-content p {
  color: #475569;
}

.service-card-climatizacion,
.service-card-compresibles,
.service-card-ingenieria {
  position: relative;
  min-height: 360px;
  background: #020617;
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.service-card-climatizacion figure,
.service-card-compresibles figure,
.service-card-ingenieria figure {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
}

.service-card-climatizacion figure::after,
.service-card-compresibles figure::after {
  background:
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.92) 28%, rgba(2, 6, 23, 0.5) 58%, rgba(2, 6, 23, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
}

.service-card-ingenieria figure::after {
  background:
    linear-gradient(90deg, #07111f 0%, rgba(10, 25, 48, 0.92) 30%, rgba(30, 64, 115, 0.48) 62%, rgba(59, 130, 246, 0.08) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.78));
}

.service-card-climatizacion img,
.service-card-compresibles img {
  filter: saturate(0.72) contrast(1.08) hue-rotate(165deg);
}

.service-card-ingenieria img {
  filter: saturate(0.82) contrast(1.08) hue-rotate(205deg);
}

.service-card-climatizacion .service-card-content,
.service-card-compresibles .service-card-content,
.service-card-ingenieria .service-card-content {
  position: relative;
  z-index: 1;
  width: 72%;
  min-height: 360px;
  padding: 28px;
  justify-content: flex-end;
}

.service-card-climatizacion .service-card-content h3,
.service-card-compresibles .service-card-content h3,
.service-card-ingenieria .service-card-content h3 {
  color: #f8fafc;
  text-shadow: 0 2px 22px rgba(2, 6, 23, 0.9);
}

.service-card-climatizacion .service-card-content p,
.service-card-compresibles .service-card-content p,
.service-card-ingenieria .service-card-content p {
  color: #cbd5e1;
}

.service-card-climatizacion .service-card-content strong,
.service-card-compresibles .service-card-content strong,
.service-card-ingenieria .service-card-content strong {
  color: var(--accent-cyan);
}

.service-card-climatizacion:hover,
.service-card-compresibles:hover,
.service-card-ingenieria:hover {
  background: #020617;
}

.contact-card p,
.site-footer p,
.article-aside li {
  color: var(--text-secondary);
}

.link-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.link-list a,
.aside-card a,
.site-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.link-list a {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(34, 211, 238, 0.06);
}

.contact-section {
  background: radial-gradient(circle at 25% 25%, rgba(34, 211, 238, 0.12), transparent 35%), #020617;
}

.contact-card {
  flex-direction: column;
  gap: 14px;
  padding: 32px;
}

.contact-card a {
  color: var(--text-primary);
  text-decoration: none;
}

.full-width {
  justify-content: center;
  width: 100%;
}

.sub-hero {
  min-height: 52vh;
  padding-top: 150px;
}

.service-video-hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
}

.youtube-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #020617;
}

.service-video-hero .youtube-hero-bg {
  background: #020617;
}

.youtube-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-fallback, none) center / cover no-repeat;
}

.youtube-hero-bg iframe,
.youtube-hero-bg video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 1;
  pointer-events: none;
}

.youtube-hero-bg video {
  object-fit: cover;
}

.service-video-hero .hero-bg-overlay {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.34) 42%, rgba(2, 6, 23, 0.08)),
    radial-gradient(circle at 72% 44%, rgba(34, 211, 238, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.58) 100%);
}

.hero-copy-panel {
  padding: 32px;
  border-left: 1px solid rgba(34, 211, 238, 0.35);
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.04));
  border-radius: 8px;
  max-width: 100%;
  min-width: 0;
}

.sub-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 5.1vw, 5.35rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.sub-hero p {
  max-width: 780px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.page-jumpbar {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 5vw;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-jumpbar a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 12px;
}

.page-jumpbar a:hover {
  color: var(--accent-cyan);
  border-color: rgba(34, 211, 238, 0.34);
}

.service-contact-cta {
  position: relative;
  z-index: 3;
  padding: 22px 0;
  background: linear-gradient(90deg, #020617, #071426 58%, #082f49);
  border-top: 1px solid rgba(34, 211, 238, 0.14);
  border-bottom: 1px solid rgba(34, 211, 238, 0.14);
}

.service-contact-cta .modern-container {
  align-items: center;
}

.service-contact-cta h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.7vw, 2.45rem);
  line-height: 1.1;
}

.service-contact-cta .span-4 {
  display: flex;
  justify-content: flex-end;
}

.service-contact-cta .modern-button {
  min-width: 210px;
  justify-content: center;
}

.service-intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 2.25fr);
  align-items: stretch;
  gap: 0;
  min-height: 285px;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 4vw, 64px);
  background: #ffffff;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.service-intro-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 430px;
  padding-right: clamp(22px, 4vw, 54px);
}

.service-intro-title span {
  color: #0f2747;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 400;
  text-transform: uppercase;
}

.service-intro-title strong {
  display: block;
  color: #1f3b5f;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.02;
}

.service-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.service-intro-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #0b1220;
  isolation: isolate;
}

.service-intro-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.7s ease;
}

.service-intro-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.8));
}

.service-intro-card span {
  position: absolute;
  left: 0;
  top: 28px;
  z-index: 2;
  padding: 10px 18px;
  background: #00558e;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-intro-card h2 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.46);
}

.service-intro-card:hover img {
  transform: scale(1.06);
}

.article-layout {
  align-items: start;
}

.service-profile-block {
  margin-bottom: 34px;
}

.service-profile-intro {
  padding: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.service-profile-intro h2 {
  color: #06111f;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.service-profile-intro p {
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 920px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.capability-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.capability-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #020617;
  color: var(--accent-cyan);
  font-weight: 800;
}

.capability-card h3 {
  color: #06111f;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.capability-card p {
  color: #475569;
  line-height: 1.75;
}

.service-method-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-top: 18px;
  padding: 32px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.96)),
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.16), transparent 36%);
  border: 1px solid var(--border-glass);
}

.service-method-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-list span {
  display: block;
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.process-list strong {
  display: block;
  color: #f8fafc;
  line-height: 1.35;
}

.criteria-card {
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.criteria-card h3 {
  margin-bottom: 16px;
}

.criteria-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--text-secondary);
}

.related-case-strip {
  margin-top: 18px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.related-case-strip > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.related-case-strip a {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 18px;
  border-radius: 8px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.related-case-strip span {
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-case-strip strong {
  color: #0f172a;
  line-height: 1.35;
}

.article-body {
  background: var(--bg-light);
  color: var(--text-dark);
}

.article-body::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.92), transparent);
  pointer-events: none;
}

.article-layout .content-render {
  grid-column: span 8;
}

.article-aside {
  grid-column: span 4;
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.content-render {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.content-render:has(.industrial-service-content),
.content-render:has(.service-main-content),
.content-render:has(.industrial-article-content) {
  grid-column: span 12;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-layout:has(.industrial-service-content) .article-aside,
.article-layout:has(.service-main-content) .article-aside {
  display: none;
}

.content-render h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  margin-top: 42px;
  color: var(--text-dark);
}

.content-render h2:first-child {
  margin-top: 0;
}

.content-render p,
.content-render li {
  color: var(--text-muted-dark);
  font-size: 1.06rem;
}

.content-render p {
  margin-bottom: 22px;
}

.content-render ul {
  padding-left: 22px;
  margin: 22px 0;
}

.article-lead {
  padding: 24px;
  margin-bottom: 28px;
  color: #dbeafe;
}

.article-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.article-snapshot div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 8px;
  background: #effbff;
}

.article-snapshot strong,
.section-kicker {
  display: block;
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-snapshot span {
  color: var(--text-muted-dark);
  font-size: 0.92rem;
}

.article-section {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.article-section h2 {
  margin-top: 0;
}

.article-section-intro {
  border-color: rgba(34, 211, 238, 0.2);
  background: #eefaff;
}

.industrial-service-content {
  display: grid;
  gap: 28px;
}

.industrial-service-content > .industrial-water-overview,
.industrial-service-content > .industrial-process-section,
.industrial-service-content > .industrial-success-videos,
.industrial-service-content > .industrial-seo-benefits,
.industrial-service-content > .industrial-seo-reference,
.industrial-service-content > .industrial-related-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.industrial-service-content > .industrial-water-overview {
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.industrial-service-content > .industrial-seo-reference,
.industrial-service-content > .industrial-related-section,
.industrial-service-content > .industrial-process-section,
.industrial-service-content > .industrial-success-videos,
.industrial-service-content > .industrial-seo-benefits {
  padding-block: clamp(18px, 3vw, 34px);
}

.industrial-service-content > .industrial-seo-reference,
.industrial-service-content > .industrial-related-section {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-water-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-copy {
  padding: clamp(22px, 3vw, 42px);
}

.industrial-copy h2,
.industrial-process-section h2,
.industrial-experience-panel h2,
.industrial-success-videos h2 {
  margin: 0 0 16px;
  color: #06111f;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.05;
}

.industrial-copy p,
.industrial-experience-panel p,
.industrial-video-banner p,
.industrial-process-grid p,
.industrial-video-card p {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.75;
}

.industrial-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.industrial-proof-row div {
  min-height: 118px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.industrial-proof-row strong {
  display: block;
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.industrial-proof-row span {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-proof-row div {
  display: grid;
  gap: 8px;
}

.service-proof-row span {
  color: #475569;
  line-height: 1.55;
}

.service-visual-grid article {
  min-height: 360px;
}

.industrial-feature-image,
.industrial-image-grid article,
.industrial-experience-panel figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #020617;
}

.industrial-feature-image img,
.industrial-image-grid img,
.industrial-experience-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.industrial-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industrial-image-grid article {
  min-height: 320px;
  isolation: isolate;
}

.industrial-image-grid article::after,
.industrial-feature-image::after,
.industrial-experience-panel figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.78) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.42), transparent 62%);
  pointer-events: none;
}

.industrial-image-grid span,
.industrial-image-grid h3 {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.industrial-image-grid span {
  top: 22px;
  color: #67e8f9;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.industrial-image-grid h3 {
  bottom: 22px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.12;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.fire-network-gallery-section {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.fire-network-gallery-section h2 {
  max-width: 980px;
  margin: 12px 0;
  color: #06111f;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.fire-network-gallery-section p {
  max-width: 980px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.72;
}

.fire-network-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.fire-network-gallery figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #020617;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.fire-network-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.fire-network-gallery figure:hover img {
  transform: scale(1.04);
}

.compressor-before-after-section {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background: #06111f;
  border: 1px solid rgba(34, 211, 238, 0.18);
  overflow: hidden;
}

.compressor-before-after-section h2 {
  max-width: 980px;
  margin: 12px 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.compressor-before-after-section p {
  max-width: 920px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.05rem;
  line-height: 1.72;
}

.compressor-before-after-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 1fr);
  gap: 14px;
  margin-top: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(125, 211, 252, 0.9) rgba(15, 23, 42, 0.7);
  padding-bottom: 8px;
}

.compressor-before-after-slider figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #020617;
  border: 1px solid rgba(125, 211, 252, 0.22);
  scroll-snap-align: start;
}

.compressor-before-after-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compressor-before-after-slider figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(125, 211, 252, 0.36);
}

.industrial-video-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.94)),
    radial-gradient(circle at 82% 15%, rgba(34, 211, 238, 0.14), transparent 38%);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.industrial-video-banner h2,
.industrial-video-banner p {
  color: #f8fafc;
}

.service-video-cta-section {
  position: relative;
  min-height: clamp(430px, 54vw, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  background: #020617;
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.18);
}

.service-video-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--hero-fallback, none) center / cover no-repeat;
}

.service-video-cta-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(56.25vw, 100%);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.service-video-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.48) 58%, rgba(2, 6, 23, 0.24)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.82));
}

.service-video-cta-copy {
  max-width: 820px;
  padding: clamp(26px, 5vw, 58px);
}

.service-video-cta-copy h2 {
  max-width: 760px;
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.4vw, 4.35rem);
  line-height: 1.02;
}

.service-video-cta-copy p {
  max-width: 720px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.service-video-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-video-cta-actions .modern-button {
  color: #ffffff;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb-link {
  position: absolute;
  inset: 0;
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.video-thumb-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.58)),
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.18), transparent 28%);
}

.video-thumb-link span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(34, 211, 238, 0.5);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.38);
}

.industrial-process-section,
.industrial-success-videos,
.industrial-seo-benefits,
.industrial-seo-reference {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-seo-benefits {
  text-align: center;
}

.industrial-seo-benefits h2,
.industrial-seo-reference h2 {
  max-width: 1040px;
  margin: 0 auto 18px;
  color: #1f3347;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
}

.industrial-seo-benefits > p {
  max-width: 1040px;
  margin: 0 auto;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.75;
}

.industrial-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  text-align: center;
}

.industrial-benefit-grid article {
  min-height: 210px;
  padding: 30px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-benefit-grid article::before {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #e0f7ff;
  color: #075985;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.industrial-benefit-grid article:nth-child(1)::before { content: "~"; }
.industrial-benefit-grid article:nth-child(2)::before { content: "="; }
.industrial-benefit-grid article:nth-child(3)::before { content: "↻"; }

.industrial-benefit-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #1f3347;
  font-family: 'Outfit', sans-serif;
  font-size: 1.16rem;
}

.industrial-benefit-grid p {
  color: #334155;
  line-height: 1.72;
}

.industrial-impact-banner {
  position: relative;
  display: grid;
  min-height: 420px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #10263b;
  isolation: isolate;
}

.industrial-impact-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.industrial-impact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 38, 56, 0.86), rgba(12, 38, 56, 0.48)),
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1), transparent 34%);
}

.industrial-impact-banner div {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px);
  text-align: center;
}

.industrial-impact-banner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.06;
  text-shadow: 0 6px 30px rgba(2, 6, 23, 0.42);
}

.industrial-impact-banner p {
  max-width: 980px;
  margin: 20px auto 0;
  color: #f8fafc;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.industrial-process-grid,
.industrial-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.industrial-process-grid article {
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #020617;
  color: var(--accent-cyan);
  font-weight: 900;
}

.industrial-process-grid h3,
.industrial-video-card h3 {
  margin: 0 0 10px;
  color: #06111f;
  font-size: 1.18rem;
  line-height: 1.18;
}

.industrial-experience-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf8fd;
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.industrial-experience-panel figure {
  min-height: 330px;
  border-radius: 0;
}

.industrial-experience-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

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

.industrial-video-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-related-section {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-related-section > h2,
.industrial-related-section > p {
  max-width: 980px;
}

.industrial-related-section > h2 {
  margin: 0 0 12px;
  color: #06111f;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.industrial-related-section > p {
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.75;
}

.industrial-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.industrial-related-card {
  display: grid;
  overflow: hidden;
  min-height: 390px;
  text-decoration: none;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.industrial-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
}

.industrial-related-card figure {
  height: 180px;
  overflow: hidden;
  background: #020617;
}

.industrial-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.industrial-related-card div {
  padding: 20px;
}

.industrial-related-card span,
.industrial-article-cards span {
  color: var(--accent-cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industrial-related-card h3 {
  margin: 10px 0;
  color: #06111f;
  font-size: 1.18rem;
  line-height: 1.18;
}

.industrial-related-card p {
  color: #475569;
  line-height: 1.65;
}

.industrial-article-content {
  display: grid;
  gap: 22px;
}

.industrial-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 26px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #effbff);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.industrial-article-hero h2 {
  margin: 0 0 16px;
  color: #06111f;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.07;
}

.industrial-article-hero p,
.industrial-article-section p,
.industrial-article-cta p {
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.78;
}

.industrial-article-hero figure {
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: #020617;
}

.industrial-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.industrial-article-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.industrial-article-cards div {
  min-height: 130px;
  padding: 20px;
  border-radius: 8px;
  background: #020617;
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.industrial-article-cards strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.industrial-article-section,
.industrial-article-siblings {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.industrial-article-section h2,
.industrial-article-cta h2,
.industrial-article-siblings h2 {
  margin: 0 0 14px;
  color: #06111f;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1.12;
}

.industrial-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.94)),
    radial-gradient(circle at 82% 10%, rgba(34, 211, 238, 0.14), transparent 34%);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.industrial-article-cta h2,
.industrial-article-cta p {
  color: #ffffff;
}

.industrial-article-siblings div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.industrial-article-siblings a {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 13px;
  border-radius: 999px;
  color: #075985;
  text-decoration: none;
  background: #e0f7ff;
  border: 1px solid rgba(34, 211, 238, 0.34);
  font-size: 0.9rem;
  font-weight: 800;
}

.industrial-seo-reference {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}

.industrial-seo-reference > .section-kicker,
.industrial-seo-reference > h2 {
  text-align: center;
}

.industrial-reference-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 28px auto 0;
}

.industrial-reference-copy p {
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.8;
}

.industrial-keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.industrial-keyword-grid article {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.industrial-keyword-grid h3 {
  margin: 0 0 10px;
  color: #075985;
  font-size: 1.12rem;
}

.industrial-keyword-grid p {
  color: #475569;
  line-height: 1.7;
}

.aside-card {
  padding: 26px;
}

.aside-card ul {
  padding-left: 20px;
}

.aside-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-media-section {
  margin-top: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.project-media-section > p {
  max-width: 820px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  min-width: 0;
}

.media-card {
  position: relative;
  max-width: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background: #020617;
}

.media-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.media-card img,
.media-card video,
.media-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border: 0;
}

.media-video {
  aspect-ratio: 16 / 9;
}

.project-media-has-video .media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-media-has-video .media-video:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: clamp(320px, 46vw, 620px);
}

.media-grid > .media-video:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: clamp(320px, 46vw, 620px);
}

.manual-download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 10px;
}

.manual-download-card {
  display: grid;
  grid-template-rows: 150px 1fr;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.manual-download-card figure {
  margin: 0;
  background: #e2e8f0;
}

.manual-download-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manual-download-card div {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.manual-download-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manual-download-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.manual-download-card small {
  color: var(--muted);
  font-weight: 700;
}

.manual-expert-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.manual-expert-panel div,
.manual-model-card {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.manual-expert-panel strong {
  display: block;
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
}

.manual-expert-panel span,
.manual-model-card p,
.manual-seo-faq p {
  color: #475569;
  line-height: 1.68;
}

.manual-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.manual-model-card span {
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-model-card h3 {
  margin: 8px 0 10px;
  color: #06111f;
  font-size: 1.45rem;
  line-height: 1.1;
}

.manual-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.manual-service-links a {
  display: inline-flex;
  max-width: 100%;
  min-height: 40px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e0f7ff;
  border: 1px solid rgba(14, 165, 233, 0.24);
  color: #075985;
  text-decoration: none;
  font-weight: 900;
}

.manual-seo-faq {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.manual-seo-faq h2 {
  margin-bottom: 8px;
}

.manual-seo-faq details {
  padding: 16px 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.manual-seo-faq summary {
  cursor: pointer;
  color: #06111f;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.manual-seo-faq p {
  margin-top: 12px;
}

.hvac-brand-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.hvac-brand-strip figure {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hvac-brand-strip img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.hvac-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.hvac-product-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.hvac-product-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #eef6fb;
}

.hvac-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.hvac-product-card div {
  padding: 18px;
}

.hvac-product-card span {
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hvac-product-card h3 {
  margin: 8px 0 10px;
  color: #06111f;
  font-size: 1.22rem;
  line-height: 1.16;
}

.hvac-product-card p {
  color: #475569;
  line-height: 1.62;
}

.electropump-catalog-section {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.electropump-catalog-heading {
  max-width: 960px;
}

.electropump-catalog-heading h2 {
  margin: 12px 0;
  color: #06111f;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.electropump-catalog-heading p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.72;
}

.electropump-banner {
  margin: 24px 0;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.electropump-banner img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.electropump-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.electropump-product-card {
  display: grid;
  grid-template-rows: minmax(210px, auto) 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.electropump-product-image {
  margin: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.electropump-product-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  padding: 18px;
}

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

.electropump-product-copy > img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
}

.electropump-product-copy span {
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.electropump-product-copy h3 {
  margin: 8px 0 10px;
  color: #06111f;
  font-size: 1.14rem;
  line-height: 1.18;
}

.electropump-product-copy p {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.55;
}

.electropump-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.electropump-product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 4px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hvac-feature-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
  margin: 24px 0 30px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.hvac-feature-panel-reverse figure {
  order: 2;
}

.hvac-feature-panel figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef6fb;
}

.hvac-feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
}

.hvac-feature-panel p {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.76;
}

.site-footer {
  min-height: auto;
  padding: clamp(42px, 6vw, 78px) 0 34px;
  background:
    linear-gradient(180deg, #075985, #064b73 58%, #04324f);
  border-top: 1px solid var(--border-glass);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(280px, 1fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.footer-map {
  position: relative;
  min-height: 270px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.26);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(6, 78, 59, 0.18)),
    #075985;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
}

.footer-map-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #2563eb !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.footer-form,
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form label {
  display: grid;
  gap: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  padding: 11px 12px;
  outline: 2px solid transparent;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline-color: rgba(34, 211, 238, 0.72);
}

.footer-form textarea {
  resize: vertical;
}

.footer-form .modern-button {
  align-self: flex-start;
  border-radius: 3px;
}

.footer-form .modern-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.footer-form-status {
  min-height: 1.2em;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-form-status[data-state="success"] {
  color: #bbf7d0;
}

.footer-form-status[data-state="error"] {
  color: #fecaca;
}

.footer-contact-info h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-contact-info p,
.footer-contact-info a {
  color: #ffffff;
}

.footer-contact-info a {
  display: inline-flex;
  width: fit-content;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.social-instagram { background: linear-gradient(135deg, #f500d4, #8b5cf6); }
.social-google { background: #64748b; }
.social-linkedin { background: #0a66c2; }
.social-whatsapp { background: #22c55e; }

.social-whatsapp svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-bottom nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-bottom nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-bottom nav a:not(:last-child)::after {
  content: "|";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  width: 190px;
  max-width: 100%;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 120;
  min-width: 128px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(22, 163, 74, 0.36);
}

.floating-whatsapp::before {
  content: none;
}

.home-video-section,
.video-library-section,
.video-feature-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.home-video-section .modern-container,
.video-feature-section .modern-container {
  align-items: center;
}

.home-video-lead h2,
.video-feature-copy h2,
.video-category-heading h2 {
  margin: 12px 0 16px;
  color: #06111f;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.08;
}

.home-video-lead p,
.video-feature-copy p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.72;
}

.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-video-card,
.video-library-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
}

.video-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
  color: #ffffff;
  text-decoration: none;
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.72));
}

.video-card-media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.42);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card-media small {
  position: absolute;
  right: 12px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(2, 6, 23, 0.82);
  color: #ffffff;
  font-weight: 900;
}

.home-video-card:hover .video-card-media img,
.video-library-card:hover .video-card-media img {
  transform: scale(1.04);
}

.video-card-copy {
  padding: 18px;
}

.video-card-copy > span {
  color: #0284c7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card-copy h3 {
  margin: 8px 0 10px;
  color: #06111f;
  font-size: 1rem;
  line-height: 1.22;
}

.video-card-copy p {
  display: -webkit-box;
  min-height: 4.8em;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.video-card-copy small {
  color: #64748b;
  font-weight: 800;
}

.video-library-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.66)),
    url("/assets/img/hero_industrial.webp") center / cover no-repeat;
  color: #ffffff;
}

.video-library-hero h1 {
  max-width: 880px;
  margin: 18px 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.95;
}

.video-library-hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.video-library-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.video-library-stats {
  display: grid;
  gap: 12px;
}

.video-library-stats div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.video-library-stats strong {
  display: block;
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
}

.video-library-stats span {
  display: block;
  margin-top: 7px;
  color: #dbeafe;
  font-weight: 800;
}

.video-library-feature-frame {
  min-height: 360px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.video-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.video-category-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #eef8ff;
  border: 1px solid rgba(14, 165, 233, 0.16);
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}

.video-category-strip strong {
  color: #0284c7;
}

.video-library-stack {
  display: grid;
  gap: 42px;
}

.video-category-block {
  display: grid;
  gap: 18px;
}

.video-category-heading {
  max-width: 860px;
}

.video-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 150px 0 64px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72)),
    url("/assets/img/hero_industrial.webp") center / cover no-repeat;
  color: #ffffff;
}

.sitemap-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
}

.sitemap-hero p {
  max-width: 820px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.sitemap-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 980px;
}

.sitemap-stats div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.sitemap-stats strong {
  display: block;
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.sitemap-stats span {
  display: block;
  margin-top: 6px;
  color: #dbeafe;
  font-size: 0.92rem;
}

.sitemap-hero .modern-container,
.sitemap-diagram-section .modern-container {
  display: block;
}

.sitemap-diagram-section,
.sitemap-index-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.sitemap-diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) repeat(4, minmax(160px, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f0fbff);
  border: 1px solid rgba(14, 165, 233, 0.16);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.sitemap-diagram::before {
  content: "";
  position: absolute;
  left: 17%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.4), rgba(15, 23, 42, 0.08));
}

.site-node,
.site-node-group {
  position: relative;
  z-index: 1;
}

.site-node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 18px;
  border-radius: 8px;
  background: #020617;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.16);
}

.site-node-home {
  min-height: 100%;
  background: linear-gradient(135deg, #075985, #020617);
  color: #e0f7ff;
}

.site-node-group {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.16);
}

.site-node-group span {
  padding: 10px 12px;
  border-radius: 6px;
  background: #f1f7fb;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.sitemap-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.sitemap-list-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.sitemap-list-card > div:first-child span {
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.sitemap-list-card h2 {
  margin: 8px 0 0;
  color: #06111f;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.06;
}

.sitemap-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-link-grid a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(14, 165, 233, 0.14);
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sitemap-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.45);
  background: #effbff;
}

.sitemap-link-grid strong {
  color: #06111f;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.sitemap-link-grid span {
  color: #0284c7;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .sitemap-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sitemap-diagram::before {
    display: none;
  }
  .site-node-home {
    min-height: 120px;
    grid-column: 1 / -1;
  }
  .sitemap-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-menu-button { display: inline-flex; }
  .glass-nav {
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 12px;
  }
  .hero-v2 {
    min-height: 92vh;
    align-items: flex-start;
    padding-top: 128px;
    padding-bottom: 42px;
  }
  .authority-hero .modern-container {
    width: min(92%, 980px);
    text-align: center;
    gap: 22px;
  }
  .authority-hero .hero-content {
    grid-column: span 12;
  }
  .home-claim-title {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(3.4rem, 9.5vw, 6rem);
    line-height: 0.96;
  }
  .home-claim-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-proof {
    grid-column: span 12;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
  }
  .service-family-grid,
  .service-family-incompresibles .service-family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .client-segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industrial-water-overview,
  .industrial-video-banner,
  .industrial-experience-panel {
    grid-template-columns: 1fr;
  }
  .industrial-feature-image,
  .industrial-experience-panel figure {
    min-height: 360px;
  }
  .industrial-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-video-grid,
  .video-library-grid,
  .fire-network-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compressor-before-after-slider {
    grid-auto-columns: minmax(320px, 78vw);
  }
  .electropump-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 74px;
    left: 50%;
    right: auto;
    width: min(94vw, 520px);
    max-height: calc(100vh - 92px);
    overflow: auto;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(2, 6, 23, 0.96);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
  }

  .nav-links.open { display: flex; }
  .nav-link,
  .nav-simple,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
  }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin-top: 6px;
    padding: 12px;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.72);
  }
  .nav-item.open .dropdown-menu { display: grid; }
  .mega-menu { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) and (max-height: 650px) {
  .hero-v2 {
    min-height: 100vh;
    padding-top: 104px;
    padding-bottom: 24px;
  }
  .authority-hero .modern-container {
    gap: 14px;
  }
  .premium-tag {
    margin-bottom: 14px;
  }
  .home-claim-title {
    font-size: clamp(2.55rem, 8vw, 4.8rem);
    line-height: 0.92;
    margin-bottom: 12px;
  }
  .home-claim-subtitle {
    font-size: clamp(1.2rem, 2.6vw, 1.75rem) !important;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-proof {
    display: none;
  }
}

@media (max-width: 900px) {
  .modern-section { padding: 78px 0; }
  .hero-v2 {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 34px;
  }
  .hero-image-v2,
  .hero-video-v2 {
    width: 100%;
    opacity: 0.42;
    mask-image: none;
  }
  .service-grid,
  .project-grid,
  .process-grid,
  .media-grid,
  .article-snapshot,
  .trusted-proof-row,
  .client-sector-row,
  .capability-grid,
  .process-list,
  .related-case-strip > div,
  .service-method-panel,
  .industrial-water-overview,
  .industrial-proof-row,
  .industrial-image-grid,
  .fire-network-gallery,
  .industrial-video-banner,
  .industrial-process-grid,
  .industrial-experience-panel,
  .industrial-video-grid,
  .home-video-grid,
  .video-library-grid,
  .industrial-benefit-grid,
  .industrial-reference-copy,
  .industrial-keyword-grid,
  .industrial-related-grid,
  .electropump-product-grid,
  .industrial-article-hero,
  .industrial-article-cards,
  .industrial-article-cta,
  .manual-expert-panel,
  .manual-model-grid,
  .hvac-brand-strip,
  .hvac-product-grid,
  .hvac-feature-panel,
  .manual-download-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
  .home-conversion-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-cta-grid,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }
  .client-segment-grid,
  .water-diagnosis-steps {
    grid-template-columns: 1fr;
  }
  .hvac-feature-panel-reverse figure {
    order: 0;
  }
  .media-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .project-media-has-video .media-video:first-child {
    grid-column: span 1;
    min-height: 240px;
  }
  .media-grid > .media-video:first-child {
    grid-column: span 1;
    min-height: 240px;
  }
  .page-jumpbar {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    gap: 8px;
    padding: 10px 16px;
  }
  .page-jumpbar a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    text-align: center;
    font-size: 0.72rem;
    padding: 8px 9px;
  }
  .service-intro-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 20px;
  }
  .service-intro-title {
    max-width: none;
    padding-right: 0;
    text-align: left;
  }
  .service-intro-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-intro-card {
    min-height: 210px;
    border-radius: 8px;
  }
  .article-layout .content-render,
  .article-aside {
    grid-column: span 12;
  }
  .article-aside {
    position: static;
  }
  .content-render {
    padding: 20px;
  }
  .industrial-copy,
  .industrial-process-section,
  .industrial-success-videos {
    padding: 20px;
  }
  .compressor-before-after-section {
    padding: 22px 16px;
  }
  .electropump-catalog-section {
    padding: 22px 16px;
  }
  .compressor-before-after-slider {
    grid-auto-columns: minmax(260px, 86vw);
  }
  .electropump-product-card {
    grid-template-rows: minmax(190px, auto) 1fr;
  }
  .electropump-product-image img {
    min-height: 190px;
  }
  .industrial-image-grid article,
  .industrial-feature-image,
  .industrial-experience-panel figure,
  .industrial-article-hero figure {
    min-height: 260px;
  }
  .industrial-video-banner {
    padding: 18px;
  }
  .video-library-hero {
    min-height: auto;
    padding-top: 128px;
  }
  .video-library-hero .modern-container {
    width: calc(100% - 32px);
    gap: 22px;
  }
  .video-library-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.98;
  }
  .video-library-hero p {
    max-width: 100%;
    font-size: 1rem;
  }
  .video-library-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .video-library-actions .modern-button,
  .video-library-actions .text-button {
    width: 100%;
    justify-content: center;
  }
  .video-library-stats {
    width: 100%;
  }
  .video-library-feature-frame {
    min-height: 220px;
  }
  .industrial-copy h2,
  .industrial-process-section h2,
  .industrial-experience-panel h2,
  .industrial-success-videos h2,
  .industrial-seo-benefits h2,
  .industrial-seo-reference h2,
  .industrial-impact-banner h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }
  .article-section {
    padding: 20px;
  }
  .sub-hero .modern-container {
    width: calc(100% - 40px);
    gap: 0;
  }
  .service-profile-intro,
  .service-method-panel,
  .related-case-strip {
    padding: 22px;
  }
  .service-contact-cta .modern-container {
    width: calc(100% - 32px);
    gap: 16px;
    text-align: left;
  }
  .service-contact-cta .span-4 {
    justify-content: stretch;
  }
  .service-contact-cta .modern-button {
    width: 100%;
  }
  .service-video-cta-section {
    min-height: 520px;
  }
  .service-video-cta-copy {
    padding: 24px;
  }
  .service-video-cta-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .service-video-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .service-video-cta-actions .modern-button,
  .service-video-cta-actions .text-button {
    width: 100%;
    justify-content: center;
  }
  .service-profile-intro h2,
  .service-method-panel h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }
  .capability-card {
    min-height: auto;
  }
  .hero-copy-panel {
    padding: 22px;
    border-left: 0;
    text-align: left;
    width: 100%;
  }
  .service-video-hero {
    min-height: 68vh;
  }
  .sub-hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.85rem);
    line-height: 1.08;
  }
  .home-claim-title {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    line-height: 0.98;
  }
  .home-claim-title .claim-outline {
    -webkit-text-stroke-width: 1px;
  }
  .home-seo-intro {
    padding: 58px 0;
  }
  .home-seo-intro h1 {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
  }
  .hero-actions .modern-button,
  .hero-actions .text-button {
    justify-content: center;
    text-align: center;
  }
  .project-showcase {
    padding: 0;
  }
  .project-backdrop-stack,
  .project-slot-frame,
  .project-showcase-scrim {
    display: none;
  }
  .project-slot-machine::before,
  .project-slot-machine::after {
    display: none;
  }
  .project-wheel-hint {
    display: none;
  }
  .footer-bottom {
    justify-items: start;
    text-align: left;
  }
  .footer-bottom nav {
    justify-content: flex-start;
  }
  .footer-bottom nav a:not(:last-child)::after {
    display: none;
  }
  .sitemap-hero {
    min-height: auto;
    padding: 128px 0 52px;
  }
  .sitemap-stats,
  .sitemap-diagram,
  .sitemap-list-card,
  .sitemap-link-grid {
    grid-template-columns: 1fr;
  }
  .site-node-home {
    grid-column: auto;
  }
  .floating-whatsapp {
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }
  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .floating-whatsapp::before {
    margin-right: 0;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-family {
    padding: 16px;
  }
  .service-family-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-family-grid,
  .service-family-incompresibles .service-family-grid {
    grid-template-columns: 1fr;
  }
  .trusted-heading {
    text-align: left;
  }
  .trusted-heading h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }
  .trusted-proof-row div {
    min-height: auto;
  }
  .client-logo-slider {
    width: calc(100vw - 20px);
    margin-left: -10px;
  }
  .client-logo-placeholder {
    flex-basis: 160px;
    min-height: 92px;
    padding: 14px 18px;
  }
  .client-logo-real img {
    max-width: 126px;
    max-height: 58px;
  }
  .client-sector-row div {
    padding: 18px;
  }
  .brand-logo-placeholder {
    flex-basis: 150px;
  }
  .brand-logo-official {
    flex-basis: 230px;
    min-height: 104px;
  }
  .brand-logo-official span {
    font-size: clamp(1.75rem, 10vw, 3rem);
  }
  .service-card-compresibles figure {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .service-card-ingenieria figure {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .service-card-compresibles .service-card-content {
    width: 100%;
    min-height: auto;
  }
  .service-card-ingenieria .service-card-content {
    width: 100%;
    min-height: auto;
  }
  .hero-proof div {
    padding: 16px 18px;
  }
  .sub-hero p {
    font-size: 1rem;
    max-width: 100%;
    width: 100%;
  }
}

