/* ═══════════════════════════════════════════════════════════════════════════
   Libriumway — Global CSS (compiled from SCSS modules)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── FONTS (local, no CDN) ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url('/static/fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  font-size: clamp(12px, 1.111111vw, 16px) !important;
}
@media (max-width: 768px) {
  :root {
    font-size: 14px !important;
  }
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@supports (-webkit-touch-callout: none) {
  input:not([type='checkbox']):not([type='radio']),
  textarea,
  select {
    font-size: max(1em, 16px) !important;
  }
}
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111827;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── CSS VARIABLES (from tokens.scss) ──────────────────────────────────── */
:root {
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #6b7280;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --breakpoint-xs: 375px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  --font-family-base: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-montserrat: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding-top: 10px;
  padding-bottom: 10px;
  will-change: background-color;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, padding 0.3s ease-out;
}

.header.transparent {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .header.transparent .navItem {
    color: var(--color-white);
  }
  .header.transparent .navItem:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .header.transparent .navItem.active {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
  }
  .header.transparent .navItem.inactive {
    color: var(--color-white);
    opacity: 0.85;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  .header.transparent .navItem.inactive:hover {
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  }
}

.header.blur {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
}

.header.solid {
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding-top: 0;
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .header { transition: none; will-change: auto; }
}

.header-container {
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .header-container { padding: 0 1.5rem; }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .header-wrapper { height: 3.5rem; }
}

@media (min-width: 1024px) {
  .header-wrapper { height: 3.5rem; }
}

@media (min-width: 1280px) {
  .header-wrapper { height: 3.5rem; }
}

.header-leftGroup {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 70%;
}

@media (min-width: 1280px) {
  .header-leftGroup { max-width: 60%; }
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  height: 2rem;
  min-width: 200px;
}

@media (min-width: 640px) {
  .header-logo { height: 2.5rem; min-width: 240px; }
}

@media (min-width: 1024px) {
  .header-logo { min-width: 300px; }
}

@media (min-width: 1280px) {
  .header-logo { min-width: 320px; }
}

.header-logo img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  max-width: 100%;
  transition: opacity 0.3s ease-out;
}

.header-logo img.visible { opacity: 1; }
.header-logo img.hidden { opacity: 0; }

/* Desktop nav */
.header-nav.desktop {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav.desktop {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    background-color: transparent;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.header-navList {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  list-style: none;
}

@media (min-width: 1024px) {
  .header-nav.desktop .header-navList {
    flex-direction: row;
    padding: 0;
    gap: 0.125rem;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .header-nav.desktop .header-navList { gap: 0.25rem; }
}

.header-navList li {
  flex-shrink: 0;
  list-style: none;
}

.navItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: var(--font-family-montserrat);
  font-size: 1.0625rem;
  line-height: 1.3;
  font-weight: 500;
  font-variation-settings: 'wght' 500;
  white-space: nowrap;
  position: relative;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), font-variation-settings 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  border-radius: 0.625rem;
  text-decoration: none;
  color: var(--color-gray-700);
}

@media (min-width: 1024px) {
  .navItem {
    padding: 0.375rem 0.375rem;
    font-size: 0.75rem;
    width: auto;
    border-radius: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .navItem {
    font-size: 1rem;
    padding: 0.375rem 0.875rem;
  }
}

.navItem:hover {
  color: var(--color-gray-900);
}

@media (max-width: 1023px) {
  .navItem:hover {
    background-color: rgba(120, 120, 128, 0.15);
    transform: scale(1.02);
  }
}

@media (min-width: 1024px) {
  .navItem:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
  }
}

.navItem.active {
  color: var(--color-gray-900);
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  transform: scale(1.05);
  position: relative;
}

@media (max-width: 1023px) {
  .navItem.active { background-color: rgba(120, 120, 128, 0.2); }
}

@media (min-width: 1024px) {
  .navItem.active { background-color: rgba(0, 0, 0, 0.08); }
}

.navItem.inactive {
  color: var(--color-gray-700);
}

.navItem.inactive:hover {
  color: var(--color-gray-900);
}

.navItem .navIcon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.navItem .dropdownArrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.navItem .dropdownArrow.open {
  transform: rotate(180deg);
}

/* Mobile menu button */
.mobileMenuButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 80;
}

@media (min-width: 1024px) {
  .mobileMenuButton { display: none; }
}

.mobileMenuButton span {
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: var(--color-gray-900);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0.125rem;
  transform-origin: center;
  position: relative;
}

.mobileMenuButton span:nth-child(1) { transform: translateY(0) rotate(0); }
.mobileMenuButton span:nth-child(2) { opacity: 1; }
.mobileMenuButton span:nth-child(3) { transform: translateY(0) rotate(0); }

.mobileMenuButton.open span:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.mobileMenuButton.open span:nth-child(2) { opacity: 0; }
.mobileMenuButton.open span:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

.mobileMenuButton.transparent span { background-color: var(--color-white); }
.mobileMenuButton.transparent:hover { background-color: rgba(255, 255, 255, 0.12); }
.mobileMenuButton.transparent:active { background-color: rgba(255, 255, 255, 0.24); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.heroWrapper {
  position: relative;
  width: 100%;
  min-height: clamp(30rem, 90vh, 46.5rem);
  background: #1a1a1a;
}

@media (max-width: 48rem) {
  .heroWrapper {
    min-height: 30rem;
    height: auto;
  }
}

.fixedBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .fixedBackground {
    position: absolute;
    height: 100%;
  }
}

.backgroundImage {
  display: block;
  width: 100%;
  height: 150%;
  position: absolute;
  top: -15%;
  left: 0;
  object-fit: cover;
  object-position: center top;
}

.hero-container {
  width: min(100% - 2rem, 100rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 2rem);
}

.heroSection,
.ctaSection {
  position: relative;
  z-index: 1;
}

.questionsSection {
  position: relative;
  background: rgba(48, 98, 99, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  margin-top: -4.25rem;
  min-height: clamp(19rem, 25vw, 23rem);
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 3vw, 2.5rem);
  transform: translateZ(0);
  will-change: backdrop-filter;
}

@media (max-width: 640px) {
  .questionsSection {
    margin-top: -3.275rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    min-height: auto;
    padding-block-start: 1rem;
    padding-block-end: 0;
    transform: none;
    will-change: auto;
  }
}

.heroSection {
  min-height: clamp(30rem, 90vh, 46.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

@media (max-width: 48rem) {
  .heroSection {
    min-height: 30rem;
    height: auto;
  }
}

@media (max-width: 640px) {
  .heroSection {
    padding-block: 0;
    padding-top: 1.375rem;
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.8rem);
  color: var(--color-white);
  font-family: var(--font-family-base);
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  width: 100%;
  max-width: 75rem;
}

@media (max-width: 48rem) {
  .hero-title { max-width: 100%; }
}

.mainLine,
.secondaryLine {
  display: block;
  font-size: clamp(14px, 4.5vw, 3.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 320px) {
  .mainLine, .secondaryLine { white-space: normal; }
}

.hero-title .mainLine,
.hero-title .secondaryLine {
  @media (max-width: 640px) {
    font-size: 20px !important;
  }
}

.separator {
  display: block;
  height: clamp(3.2rem, 8vw, 7.25rem);
}

@media (max-width: 640px) {
  .separator { height: 1.5rem; }
}

.questionsContent {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 1vw, 1rem);
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

@media (min-width: 64rem) {
  .questionsContent { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .questionsContent {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}

.questionTitle {
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  font-family: var(--font-family-base);
  text-align: center;
  margin: 0;
  white-space: normal;
  text-wrap: balance;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .questionTitle {
    font-size: 16px !important;
    white-space: normal;
    padding: 1.25rem 1rem;
    min-height: 8rem;
    background: rgba(48, 98, 99, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.middleTextInWhite {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: var(--font-family-base);
  line-height: 1.2;
  margin: 0 auto 0;
  padding: 0 clamp(0.75rem, 1.5vw, 1.25rem) clamp(0.75rem, 1.5vw, 1.25rem);
  grid-column: 1 / -1;
  white-space: pre-line;
}

@media (max-width: 640px) {
  .middleTextInWhite {
    font-size: 16px !important;
    margin-top: 0;
    white-space: normal;
    padding: 1.25rem 1rem;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 98, 99, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.ctaSection {
  padding-block: 6rem;
  min-height: clamp(5rem, 8vh, 7.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .ctaSection {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.ctaTitle {
  font-size: clamp(14px, 4.5vw, 3.9rem);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-family-base);
  line-height: 1.3;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  white-space: pre-line;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .ctaTitle { font-size: 18px; }
}

.ctaLine1,
.ctaLine2,
.ctaLine3 {
  display: inline;
}

@media (max-width: 640px) {
  .ctaLine2, .ctaLine3 { display: block; }
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTextFadeIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(20px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOLUTIONS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.solutions-section {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: var(--color-gray-100);
  z-index: 10;
  isolation: isolate;
}

.solutions-section .container {
  width: min(100% - 2rem, 71.5rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.6rem);
}

.solutions-section .title {
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  font-weight: 500;
  color: #000;
  line-height: normal;
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.solutions-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 2vw, 1.8rem);
  justify-content: center;
  width: 100%;
  transform: none;
}

@media (min-width: 48rem) {
  .solutions-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 72rem) {
  .solutions-section .grid {
    grid-template-columns: 21.3fr 21.4fr 21.85fr;
    width: min(100%, 68.15rem);
    margin-inline: auto;
    transform: translateX(-0.5rem);
  }
}

.solutions-section .card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  position: relative;
  transition: transform 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.solutions-section .card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: opacity 200ms ease-out;
  pointer-events: none;
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .solutions-section .card:hover {
    transform: translateY(-4px);
  }
  .solutions-section .card:hover::after {
    opacity: 1;
  }
}

.solutions-section .card:nth-child(1) { animation-delay: 0.1s; }
.solutions-section .card:nth-child(2) { animation-delay: 0.2s; }
.solutions-section .card:nth-child(3) { animation-delay: 0.3s; }
.solutions-section .card:nth-child(4) { animation-delay: 0.4s; }
.solutions-section .card:nth-child(5) { animation-delay: 0.5s; }
.solutions-section .card:nth-child(6) { animation-delay: 0.6s; }
.solutions-section .card:nth-child(7) { animation-delay: 0.7s; }
.solutions-section .card:nth-child(8) { animation-delay: 0.8s; }
.solutions-section .card:nth-child(9) { animation-delay: 0.9s; }

.solutions-section .card:nth-child(1) .image {
  object-position: bottom;
}

.solutions-section .card:nth-child(6) .image {
  object-position: center 75%;
}

.solutions-section .card:nth-child(7) .image {
  object-position: center 35%;
}

.solutions-section .card:nth-child(8) .image {
  object-position: center;
  transform: scale(1.1) translateX(2%);
}

.solutions-section .card:nth-child(9) .image {
  object-position: center;
  transform: scale(1.1) translateX(2%);
}

@media (max-width: 47.99rem) {
  .solutions-section .card:last-child {
    grid-column: 1 / -1;
  }
  .solutions-section .card:last-child .text {
    font-size: 1.2rem;
  }
}

.solutions-section .imageContainer {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.solutions-section .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-section .content {
  padding: clamp(0.8rem, 1.5vw, 1rem) 0.5rem;
  min-height: clamp(4rem, 15vh, 9.6rem);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.solutions-section .text {
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.3;
  font-family: var(--font-family-base);
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  white-space: pre-line;
  text-wrap: balance;
}

.solutions-section .smallText {
  font-size: 0.85em;
  line-height: 1.4;
  display: inline-block;
  margin-top: 0.25rem;
  color: rgba(0, 0, 0, 0.7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.partners-section {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: #fafafa;
  z-index: 10;
  isolation: isolate;
}

.partners-section .title {
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem) 0;
}

.partners-section .container {
  width: min(100% - 2rem, 71.5rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.6rem);
}

.partners-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.8rem);
  justify-content: center;
  width: 100%;
  transform: none;
}

@media (min-width: 30rem) {
  .partners-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48rem) {
  .partners-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 72rem) {
  .partners-section .grid {
    grid-template-columns: 21.3fr 21.4fr 21.85fr;
    width: min(100%, 68.15rem);
    margin-inline: auto;
    transform: translateX(-0.5rem);
  }
}

.partners-section .card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  position: relative;
  transition: transform 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.partners-section .card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: opacity 200ms ease-out;
  pointer-events: none;
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .partners-section .card:hover {
    transform: translateY(-4px);
  }
  .partners-section .card:hover::after {
    opacity: 1;
  }
}

.partners-section .card:nth-child(1) { animation-delay: 0.1s; }
.partners-section .card:nth-child(2) { animation-delay: 0.2s; }
.partners-section .card:nth-child(3) { animation-delay: 0.3s; }
.partners-section .card:nth-child(4) { animation-delay: 0.4s; }
.partners-section .card:nth-child(5) { animation-delay: 0.5s; }
.partners-section .card:nth-child(6) { animation-delay: 0.6s; }

.partners-section .imageWrapper {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

@media (min-width: 48rem) {
  .partners-section .imageWrapper {
    height: 130px;
  }
}

@media (min-width: 72rem) {
  .partners-section .imageWrapper {
    height: 140px;
  }
}

.partners-section .imageContainer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.partners-section .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 1;
}

.partners-section .titleOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(0.75rem, 1vw, 0.75rem);
  z-index: 2;
}

.partners-section .cardTitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.2;
  color: #ffffff;
  text-align: left;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  white-space: pre-line;
  letter-spacing: 0.02em;
}

.partners-section .content {
  padding: 1rem;
  padding-bottom: clamp(1rem, 2vw, 2rem);
  flex: 1;
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  min-width: 0;
  box-sizing: border-box;
}

.partners-section .description {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  font-family: var(--font-family-base);
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 400;
  text-align: left;
  margin: 0;
  width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* ═══════════════════════════════════════════════════════════════════════════
   OUR PARTNERS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.our-partners-section {
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: #fff;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.our-partners-section .container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.our-partners-section .title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  text-align: center;
  color: #1a1a1a;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.our-partners-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .our-partners-section .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.our-partners-section .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.our-partners-section .card:hover {
  transform: translateY(-4px);
}

.our-partners-section .card:nth-child(1) { animation-delay: 0.1s; }
.our-partners-section .card:nth-child(2) { animation-delay: 0.2s; }
.our-partners-section .card:nth-child(3) { animation-delay: 0.3s; }
.our-partners-section .card:nth-child(4) { animation-delay: 0.4s; }

.our-partners-section .card:first-child .logo {
  max-width: 80%;
  max-height: 80%;
}

.our-partners-section .logoWrapper {
  width: 100%;
  height: clamp(60px, 10vw, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.our-partners-section .logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.our-partners-section .logoWrapperEnergysila {
  overflow: visible;
}

.our-partners-section .logoWrapperEnergysila img {
  transform: scale(1.35);
}

.our-partners-section .hoverButton {
  opacity: 0;
  margin-top: auto;
  padding-top: 0.75rem;
  transition: opacity 0.3s ease;
}

.our-partners-section .card:hover .hoverButton {
  opacity: 1;
}

.our-partners-section .buttonText {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid #333;
  border-radius: 0.375rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  white-space: nowrap;
}

.our-partners-section .description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPANY
   ═══════════════════════════════════════════════════════════════════════════ */

.company-section.section {
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: #fafafa;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.company-section .container {
  width: min(100% - 2rem, 75rem);
  margin: 0 auto;
  padding-inline: clamp(0.8rem, 1.5vw, 1rem);
}

.company-section .title {
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  font-weight: 500;
  color: #000;
  line-height: normal;
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.company-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

@media (min-width: 64rem) {
  .company-section .grid {
    grid-template-columns: 30.125rem 1fr;
    justify-content: center;
    transform: translateX(20px);
  }
}

.company-section .imageWrapper {
  width: 100%;
  max-width: 30.125rem;
  margin: 0 auto;
}

@media (min-width: 64rem) {
  .company-section .imageWrapper {
    margin: 0;
  }
}

.company-section .image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: block;
  object-fit: cover;
}

.company-section .content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  text-align: left;
  align-items: flex-start;
}

@media (min-width: 64rem) {
  .company-section .content {
    text-align: left;
    align-items: flex-start;
  }
}

.company-section .subtitle {
  font-family: var(--font-family-base);
  font-size: clamp(13px, 3vw, 1.43rem);
  color: #6f6f6f;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 340px) {
  .company-section .subtitle {
    white-space: normal;
  }
}

.company-section .description {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 1.5vw, 1.43rem);
  color: #6f6f6f;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}

.company-section .paragraph {
  margin-bottom: 1rem;
}

.company-section .servicesList {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.company-section .serviceItem {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  justify-content: flex-start;
}

@media (min-width: 64rem) {
  .company-section .serviceItem {
    justify-content: flex-start;
  }
}

.company-section .serviceBullet {
  color: #6f6f6f;
  font-weight: 500;
  line-height: 1.3;
  flex-shrink: 0;
}

.company-section .serviceText {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 1.5vw, 1.43rem);
  color: #6f6f6f;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.company-section .footer {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 1.5vw, 1.43rem);
  color: #6f6f6f;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-section {
  background-color: rgb(27, 27, 27);
  color: #ffffff;
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .footer-section {
    padding: 1.5rem 0;
  }
}

.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-section .container {
    padding: 0 1.5rem;
  }
}

.footer-section .text {
  color: #d1d5db;
  font-family: var(--font-family-base);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-form-section {
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: #fafafa;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.contact-form-section .container {
  width: min(100% - 1.6rem, 60rem);
  margin: 0 auto;
  padding-inline: clamp(0.8rem, 2vw, 1.2rem);
}

.contact-form-section .title {
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  font-weight: 500;
  color: #000;
  line-height: normal;
  text-align: center;
  margin-top: 0;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.contact-form-section .formWrapper {
  width: min(100%, 30rem);
  margin: 0 auto;
}

.contact-form-section .form {
  background: #ffffff;
  padding: 1.5rem 1.75rem 1.75rem;
  border-radius: 1.25rem;
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-section .fieldGroup {
  position: relative;
  margin-bottom: 0;
}

.contact-form-section .visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.contact-form-section .input,
.contact-form-section .textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-family: var(--font-family-base);
  color: #1f2937;
  background: #ffffff;
  transition: all 0.25s ease;
  outline: none;
}

.contact-form-section .input::placeholder,
.contact-form-section .textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact-form-section .input:hover,
.contact-form-section .textarea:hover {
  border-color: #d1d5db;
}

.contact-form-section .input:focus,
.contact-form-section .textarea:focus {
  border-color: #306263;
  box-shadow: 0 0 0 4px rgba(48, 98, 99, 0.1);
}

.contact-form-section .textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}

.contact-form-section .formDisclaimer {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #9ca3af;
  text-align: center;
}

.contact-form-section .submitButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.25rem;
  background: linear-gradient(135deg, #1f303c 0%, #0d1e2a 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-family-base);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.75rem;
}

.contact-form-section .submitButton:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow:
    0 8px 24px rgba(13, 30, 42, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-section .submitButton:active:not(:disabled) {
  transform: scale(0.98);
}

.contact-form-section .submitButton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.team-section {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  isolation: isolate;
  background-color: #1a1a1a;
}

@media (min-width: 768px) {
  .team-section {
    min-height: 500px;
  }
}

.team-section .backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.15);
}

.team-section .overlay {
  display: none;
}

.team-section .content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.team-section .title {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .team-section .title {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }
}

.team-section .titleBrand {
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.team-section .titleText {
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.team-section .carouselContainer {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .team-section .carouselContainer {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team-section .carouselContainer::-webkit-scrollbar {
    display: none;
  }
}

.team-section .carousel {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: max-content;
  animation: team-scroll 30s linear infinite;
}

.team-section .carousel:hover {
  animation-play-state: paused;
}

.team-section .carousel.paused {
  animation-play-state: paused;
}

@keyframes team-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

.team-section .card {
  flex-shrink: 0;
  width: clamp(200px, 25vw, 280px);
  background: transparent;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .team-section .card:hover {
    transform: translateY(-8px);
  }
  .team-section .card:hover .imageWrapper {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
}

.team-section .imageWrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.team-section .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: var(--img-transform, none);
  transition: transform 0.3s ease;
}

.team-section .card:hover .image {
  transform: var(--img-transform-hover, scale(1.05));
}

.team-section .cardContent {
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  text-align: left;
}

.team-section .memberName {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.team-section .memberRole {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contacts-section {
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: #f3f4f6;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.contacts-section .container {
  width: min(100% - 2rem, 90rem);
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 1vw, 1rem);
}

.contacts-section .title {
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 3vw + 1rem, 3.12rem);
  font-weight: 500;
  color: #000;
  line-height: normal;
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.contacts-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: stretch;
}

@media (min-width: 75rem) {
  .contacts-section .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 48rem) {
  .contacts-section .grid {
    gap: 4rem;
  }
}

.contacts-section .contactCard {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.contacts-section .contactTitle {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: var(--font-family-base);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  align-self: center;
}

.contacts-section .middleRow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

.contacts-section .contactPhone {
  color: #6b7280;
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.contacts-section .contactAddress {
  color: #6b7280;
  font-style: normal;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0;
  font-family: var(--font-family-base);
  line-height: 1.2;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  white-space: pre-line;
}

.contacts-section .socialIcons {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: center;
  gap: 0.6rem 0.4rem;
  line-height: 1.2;
}

.contacts-section .socialIcon {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #9ca3af;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-section .socialIcon:hover {
  transform: scale(1.1);
}

.contacts-section .socialIcon:active {
  transform: scale(0.95);
}

.contacts-section .weChatIcon {
  font-size: clamp(1.9rem, 2.3vw, 2.3rem);
  margin-top: -0.5rem;
}

.contacts-section .weChatIcon:hover {
  color: #07c160;
}

.contacts-section .whatsAppIcon {
  font-size: clamp(1.66rem, 2.07vw, 2.07rem);
  position: relative;
  top: -2px;
}

.contacts-section .whatsAppIcon:hover {
  color: #25d366;
}

.contacts-section .telegramIcon {
  font-size: clamp(1.42rem, 1.83vw, 1.83rem);
}

.contacts-section .telegramIcon:hover {
  color: #0088cc;
}

.contacts-section .ymIcon {
  position: relative;
  top: -1px;
}

.contacts-section .ymIcon .messengerLogo {
  width: 1.75rem;
  height: 1.75rem;
}

.contacts-section .maxIcon {
  position: relative;
  top: -1px;
}

.contacts-section .maxIcon .messengerLogo {
  width: 1.75rem;
  height: 1.75rem;
  filter: grayscale(100%);
  opacity: 0.7;
}

.contacts-section .maxIcon:hover .messengerLogo {
  filter: grayscale(0%);
  opacity: 1;
}

.contacts-section .messengerLogo {
  width: clamp(1.5rem, 1.9vw, 1.9rem);
  height: clamp(1.5rem, 1.9vw, 1.9rem);
  object-fit: contain;
  border-radius: 4px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    opacity 0.2s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.contacts-section .socialIcon:hover .messengerLogo {
  filter: grayscale(0%);
  opacity: 1;
}

.contacts-section .channelSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(2rem, 3vw, 3rem);
  gap: 1rem;
}

.contacts-section .channelDivider {
  width: 12rem;
  height: 1px;
  background-color: #d1d5db;
  opacity: 0.5;
}

.contacts-section .maxChannelLink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  color: #6b7280;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.contacts-section .maxChannelLink:hover {
  color: #6c4de8;
  transform: scale(1.05);
}

.contacts-section .maxChannelLink:hover .maxChannelLinkArrow {
  color: #6c4de8;
  transform: translateX(2px);
}

.contacts-section .maxChannelLinkLogo {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contacts-section .maxChannelLink:hover .maxChannelLinkLogo {
  transform: scale(1.15);
}

.contacts-section .maxChannelLinkArrow {
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contacts-section .contactPhoneHighlight {
  color: #111827;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-family: var(--font-family-base);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.025em;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.contacts-section .phoneWrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease;
  margin-top: -0.5rem;
}

.contacts-section .phoneWrapper:hover .contactPhoneHighlight {
  color: #1890ff;
}

.contacts-section .phoneWrapper:hover .copyIcon {
  opacity: 1;
}

.contacts-section .phoneWrapper:active {
  transform: scale(0.98);
}

.contacts-section .phoneWrapper.copied {
  cursor: default;
}

.contacts-section .phoneWrapper.copied .contactPhoneHighlight,
.contacts-section .phoneWrapper.copied .copyIcon {
  visibility: hidden;
}

.contacts-section .copyIcon {
  position: absolute;
  right: -1.2rem;
  color: #9ca3af;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (max-width: 48rem) {
  .contacts-section .copyIcon {
    opacity: 1;
  }
}

.contacts-section .copiedState {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #10b981;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-family: var(--font-family-base);
  font-weight: 500;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAX PROMO MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.max-promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.max-promo-modal {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 2.25rem 2.25rem 2rem;
  width: 100%;
  max-width: 26rem;
  position: relative;
}

@media (max-width: 640px) {
  .max-promo-modal {
    padding: 1.75rem 1.5rem 1.5rem;
    max-width: calc(100vw - 2rem);
    border-radius: 1.25rem;
  }
}

.max-promo-closeButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.max-promo-closeButton:hover {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.6);
}

.max-promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.max-promo-successPill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(13, 30, 42, 0.75);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.max-promo-successIcon {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.max-promo-successIcon svg {
  width: 0.5rem;
  height: 0.5rem;
}

.max-promo-description {
  font-family: var(--font-family-base);
  font-size: 0.8125rem;
  color: rgba(13, 30, 42, 0.55);
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 250px;
  text-wrap: balance;
  white-space: pre-line;
}

.max-promo-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
}

.max-promo-primaryAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 80%;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #4e6ef2 0%, #6c4de8 100%);
  border: none;
  color: #ffffff;
  border-radius: 0.75rem;
  font-family: var(--font-family-base);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  box-shadow:
    0 4px 16px rgba(99, 102, 241, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.max-promo-primaryAction:hover {
  background: linear-gradient(135deg, #5a7af5 0%, #7a5df0 100%);
  transform: translateY(-1px);
  box-shadow:
    0 8px 24px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.max-promo-primaryAction:active {
  transform: translateY(0);
}

.max-promo-maxIcon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.max-promo-channelLink {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-family-base);
  font-size: 0.8125rem;
  font-weight: 500;
  background: linear-gradient(135deg, #4e6ef2 0%, #6c4de8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.max-promo-channelLink:hover {
  opacity: 0.7;
}

.max-promo-arrow {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: #6c4de8;
  -webkit-text-fill-color: unset;
  transition: transform 0.2s ease;
}

.max-promo-channelLink:hover .max-promo-arrow {
  transform: translateX(2px);
}

/* Alpine.js transition helpers */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.translate-y-2 { transform: translateY(8px); }
.translate-y-0 { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   RequestWidget — Floating FAB with contact form
   ═══════════════════════════════════════════════════════════════════════════ */

.rw-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

@media (max-width: 640px) {
  .rw-wrapper {
    bottom: clamp(1rem, 3vh, 1.5rem);
    right: clamp(1.875rem, 5vw, 2rem);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .rw-wrapper.rw-scrolling {
    transform: translateX(25%);
    opacity: 0.7;
  }
}

.rw-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.rw-buttonGroup {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.rw-mainButtonWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.rw-mainButtonWrapper.rw-expanded .rw-mainButtonLabel {
  opacity: 1;
  transform: translateX(0);
}

.rw-mainButtonLabel {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .rw-mainButtonWrapper:hover .rw-mainButtonLabel {
    opacity: 1;
    transform: translateX(0);
  }
}

.rw-labelVisible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.rw-toggleButton {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2f3d 0%, #14252f 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(13, 30, 42, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .rw-toggleButton:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 36px rgba(13, 30, 42, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

.rw-toggleButton:active {
  transform: scale(0.95);
}

.rw-toggleActive {
  transform: rotate(45deg);
}

.rw-buttonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Form Panel ─────────────────────────────────────────────────────── */

.rw-formPanel {
  position: relative;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 0;
  width: 24rem;
  max-width: calc(100vw - 3rem);
  max-height: calc(100vh - 8rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .rw-formPanel {
    width: calc(100vw - 3rem);
  }
}

.rw-formHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem 1.25rem;
}

.rw-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #0d1e2a;
  letter-spacing: -0.02em;
}

.rw-closeButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.75rem;
}

.rw-closeButton:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #6b7280;
  transform: rotate(90deg);
}

.rw-formContent {
  padding: 0 1.75rem 1.75rem;
  overflow-y: auto;
}

.rw-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rw-inputGroup {
  position: relative;
}

.rw-input,
.rw-textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.25s ease;
}

.rw-input::placeholder,
.rw-textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.rw-input:hover,
.rw-textarea:hover {
  border-color: #d1d5db;
}

.rw-input:focus,
.rw-textarea:focus {
  outline: none;
  border-color: #306263;
  box-shadow: 0 0 0 4px rgba(48, 98, 99, 0.1);
}

.rw-textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}

.rw-disclaimer {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #9ca3af;
  text-align: center;
}

.rw-submitButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.25rem;
  background: linear-gradient(135deg, #14252f 0%, #0d1e2a 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.75rem;
}

.rw-submitButton:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(13, 30, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rw-submitButton:active:not(:disabled) {
  transform: scale(0.98);
}

.rw-submitButton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ─── Social Row ─────────────────────────────────────────────────────── */

.rw-socialRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.rw-socialButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .rw-socialButton:hover {
    transform: scale(1.1);
  }
}

.rw-whatsapp { background: #25d366; }
.rw-telegram { background: #0088cc; }
.rw-email { background: #306263; }

/* ═══════════════════════════════════════════════════════════════════════════
   CURRENCY WIDGET (floating pill)
   ═══════════════════════════════════════════════════════════════════════════ */

.cw-wrapper {
  position: fixed;
  left: 2rem;
  bottom: 2.625rem;
  z-index: 900;
}

.cw-pill {
  display: flex;
  align-items: center;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  cursor: pointer;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cw-pill:active {
  transform: scale(0.98);
}

.cw-darkBg {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15);
}

.cw-darkBg:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.45),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.2);
}

.cw-darkBg .cw-closedValue,
.cw-darkBg .cw-value {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cw-darkBg .cw-closedCurrency,
.cw-darkBg .cw-currency {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cw-lightBg {
  background: rgba(255, 255, 255, 0.7);
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.15),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.5);
}

.cw-lightBg:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.6);
}

.cw-lightBg .cw-closedValue,
.cw-lightBg .cw-value {
  color: #1a1a1a;
  text-shadow: none;
}

.cw-lightBg .cw-closedCurrency,
.cw-lightBg .cw-currency {
  color: rgba(0, 0, 0, 0.6);
  text-shadow: none;
}

.cw-pillClosed {
  height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  gap: 8px;
}

.cw-pillOpen {
  height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  gap: 12px;
}

.cw-closedContent {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cw-closedIcon {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.cw-closedRate {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.cw-closedValue {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.cw-closedCurrency {
  font-size: 10px;
  font-weight: 500;
}

.cw-chevron {
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 2px;
  opacity: 0.6;
}

.cw-chevronOpen {
  transform: rotate(90deg);
}

.cw-darkBg .cw-chevron {
  color: rgba(255, 255, 255, 0.7);
}

.cw-lightBg .cw-chevron {
  color: rgba(0, 0, 0, 0.5);
}

.cw-rates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.cw-rate {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cw-icon {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.cw-flagIcon {
  width: 14px;
  height: 10px;
  border-radius: 1px;
}

.cw-value {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cw-currency {
  font-size: 10px;
  font-weight: 500;
  margin-left: 1px;
}

@media (max-width: 768px) {
  .cw-wrapper {
    left: clamp(1.875rem, 5vw, 2rem);
    bottom: clamp(1rem, 3vh, 1.5rem);
  }

  .cw-pillClosed {
    height: 36px;
    padding: 0 12px;
    border-radius: 18px;
    gap: 6px;
  }

  .cw-pillOpen {
    height: 36px;
    padding: 0 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .cw-closedIcon {
    font-size: 14px;
    width: 16px;
  }

  .cw-closedValue {
    font-size: 13px;
  }

  .cw-closedCurrency {
    font-size: 10px;
  }

  .cw-rates {
    gap: 10px;
  }

  .cw-icon {
    font-size: 12px;
    width: 16px;
  }

  .cw-flagIcon {
    width: 16px;
    height: 11px;
  }

  .cw-value {
    font-size: 12px;
  }

  .cw-currency {
    font-size: 9px;
  }

  .cw-chevron {
    font-size: 9px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Section ─────────────────────────────────────────────────────────── */
.catalog-section {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
  background-color: var(--color-gray-100);
  z-index: 10;
  isolation: isolate;
  font-family: var(--font-family-base);
}

.catalog-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Title ───────────────────────────────────────────────────────────── */
.catalog-titleWrapper {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.catalog-title {
  font-family: var(--font-family-base);
  font-size: 3.9rem;
  font-weight: 500;
  color: #000;
  line-height: normal;
}

@media (max-width: 480px) {
  .catalog-title {
    font-size: 1.7rem;
    white-space: nowrap;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .catalog-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 769px) {
  .catalog-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .catalog-title {
    font-size: 3.12rem;
  }
}

/* ─── Filters Bar ─────────────────────────────────────────────────────── */
.catalog-filtersSticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 0;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
  width: 100%;
}

.catalog-filtersWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.catalog-filtersControls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.catalog-selectWithIcon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.catalog-selectIcon {
  display: none;
}

.catalog-categorySelect,
.catalog-sortSelect {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-gray-900);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.catalog-categorySelect:focus,
.catalog-sortSelect:focus {
  outline: 2px solid #1890ff;
  outline-offset: -1px;
}

.catalog-categorySelect {
  width: 160px;
}

.catalog-sortSelect {
  width: 180px;
}

.catalog-searchWrapper {
  flex: 1;
  max-width: 320px;
}

.catalog-searchInput {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.catalog-searchPrefix {
  position: absolute;
  left: 0.75rem;
  display: flex;
  align-items: center;
  color: var(--color-gray-400);
  pointer-events: none;
}

.catalog-searchInput input {
  width: 100%;
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-gray-900);
}

.catalog-searchInput input:focus {
  outline: 2px solid #1890ff;
  outline-offset: -1px;
}

.catalog-searchInput input::placeholder {
  color: var(--color-gray-400);
}

/* ─── Product List ────────────────────────────────────────────────────── */
.catalog-list {
  width: 100%;
  margin-bottom: 0;
}

.catalog-desktopView {
  display: block;
}

.catalog-mobileView {
  display: none;
}

@media (max-width: 992px) {
  .catalog-desktopView {
    display: none;
  }

  .catalog-mobileView {
    display: block;
  }
}

/* ─── Table ───────────────────────────────────────────────────────────── */
.catalog-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
}

.catalog-table th {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
}

.catalog-table th.catalog-thImage {
  width: 110px;
}

.catalog-table th.catalog-thCenter {
  text-align: center;
  width: 160px;
  white-space: nowrap;
}

.catalog-table th.catalog-thSortable {
  text-align: center;
  width: 180px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.catalog-table th.catalog-thSortable:hover {
  color: var(--color-gray-900);
}

.catalog-table th.catalog-thExpand {
  width: 40px;
}

.catalog-table td {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.catalog-table td.catalog-cellImage {
  width: 110px;
}

.catalog-table td.catalog-cellMoq {
  width: 160px;
}

.catalog-table td.catalog-cellPrice {
  width: 180px;
}

.catalog-table td.catalog-cellExpand {
  width: 40px;
  text-align: center;
}

.catalog-table tbody tr {
  transition: all 0.2s ease;
}

.catalog-table tbody tr:hover {
  background-color: var(--color-gray-50);
}

.catalog-table tbody tr:hover td {
  background-color: var(--color-gray-50);
}

.catalog-table tbody tr:hover .catalog-productCategory,
.catalog-table tbody tr:hover .catalog-priceUnit {
  opacity: 1;
}

.catalog-cellCenter {
  text-align: center;
}

/* ─── Row Content ─────────────────────────────────────────────────────── */
.catalog-productImage {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.375rem;
}

.catalog-productInfo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  height: 100%;
}

.catalog-productName {
  font-weight: 500;
  color: var(--color-gray-900);
  font-size: 1rem;
  line-height: 1.4;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.catalog-productName:hover {
  text-overflow: clip;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.catalog-productCategory {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  line-height: 1.2;
  margin-top: 2px;
  display: inline-block;
  white-space: nowrap;
}

.catalog-priceContainer {
  width: 100%;
  text-align: center;
}

.catalog-priceWrapper {
  display: inline-block;
  position: relative;
}

.catalog-price {
  font-weight: 500;
  color: var(--color-gray-900);
  font-size: 1rem;
}

.catalog-priceUnit {
  position: absolute;
  left: 100%;
  margin-left: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-500);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
}

.catalog-moq {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ─── Expand/Collapse ─────────────────────────────────────────────────── */
.catalog-clickableRow {
  cursor: pointer;
}

.catalog-expandChevron {
  color: var(--color-gray-400);
  transition: transform 0.2s ease;
}

.catalog-expandChevronOpen {
  transform: rotate(180deg);
  color: var(--color-gray-600);
}

.catalog-expandedRow td {
  background-color: var(--color-gray-50);
  padding: 0 !important;
  border-bottom: 1px solid var(--color-gray-200);
}

.catalog-expandedContent {
  padding: 1.5rem;
}

.catalog-expandedGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.catalog-expandedSectionTitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.catalog-expandedText {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin: 0;
}

.catalog-expandedDesc {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}

/* ─── CTA Button ──────────────────────────────────────────────────────── */
.catalog-ctaButton {
  min-height: 42px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  background-color: #306263;
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}

.catalog-ctaButton:hover {
  background-color: #275051;
}

/* ─── Sort Indicator ──────────────────────────────────────────────────── */
.catalog-sortIndicator {
  color: #ef4444;
}

/* ─── Empty State ─────────────────────────────────────────────────────── */
.catalog-emptyState {
  padding: 3rem 1.5rem;
  text-align: center;
}

.catalog-emptyContent {
  max-width: 400px;
  margin: 0 auto;
}

.catalog-emptyIcon {
  color: var(--color-gray-400);
  margin-bottom: 1.5rem;
}

.catalog-emptyTitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin: 0 0 0.5rem;
}

.catalog-emptyText {
  font-size: 1rem;
  color: var(--color-gray-500);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.catalog-clearFiltersButton {
  color: #2563eb;
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.15s ease;
}

.catalog-clearFiltersButton:hover {
  color: #1e3a8a;
  background: #eff6ff;
  text-decoration: none;
}

/* ─── Mobile Cards ────────────────────────────────────────────────────── */
.catalog-mobileGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.catalog-mobileCard {
  background: var(--color-gray-50);
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.catalog-mobileCard:hover {
  background: var(--color-white);
  border-color: var(--color-gray-300);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.1);
}

.catalog-mobileCardHeader {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  gap: 0.75rem;
}

.catalog-mobileImageContainer {
  flex-shrink: 0;
}

.catalog-mobileProductImage {
  border-radius: 0.375rem;
  object-fit: cover;
}

.catalog-mobileProductInfo {
  flex: 1;
  min-width: 0;
}

.catalog-mobileProductName {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.4;
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.catalog-mobileProductCategory {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1;
  display: block;
}

.catalog-mobileExpandIcon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
}

.catalog-mobileChevron {
  width: 20px;
  height: 20px;
  color: var(--color-gray-400);
  transition: transform 0.3s ease;
}

.catalog-mobileChevronExpanded {
  transform: rotate(180deg);
}

.catalog-mobileCardBody {
  padding: 0 1rem 1rem;
}

.catalog-mobilePriceRow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.75rem;
  width: 100%;
}

.catalog-mobilePriceSection {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  text-align: right;
}

.catalog-mobilePriceLabel {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.catalog-mobilePriceMain {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: nowrap;
}

.catalog-mobilePrice {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-900);
  white-space: nowrap;
  flex-shrink: 0;
}

.catalog-mobilePriceUnit {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 4px;
}

.catalog-mobileExpandedContent {
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  padding: 1rem 1rem 0;
}

/* ─── Mobile Filter Overrides ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .catalog-filtersSticky {
    padding: 0.5rem 0.75rem;
  }

  .catalog-filtersWrapper {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .catalog-filtersControls {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .catalog-selectIcon {
    display: block;
    color: var(--color-gray-500);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
  }

  .catalog-categorySelect,
  .catalog-sortSelect {
    min-width: 40px !important;
    width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 0.375rem !important;
    background-image: none !important;
    color: transparent !important;
    text-indent: -9999px;
  }

  .catalog-searchWrapper {
    max-width: none;
    min-width: 0;
  }
}

/* ─── Responsive Table ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .catalog-table {
    font-size: 0.875rem;
  }

  .catalog-table th {
    padding: 0.75rem 1rem;
    font-size: 10px;
  }

  .catalog-table td {
    padding: 0.75rem 1rem;
  }

  .catalog-productInfo {
    gap: 0;
    min-width: 0;
  }

  .catalog-productName {
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .catalog-productName:hover {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .catalog-productCategory {
    font-size: 11px;
  }

  .catalog-price {
    font-size: 0.875rem;
  }

  .catalog-priceUnit {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .catalog-mobileCardHeader {
    padding: 0.75rem 0.75rem 0.75rem 1.1rem;
    gap: 0.5rem;
  }

  .catalog-mobileProductImage {
    width: 60px;
    height: 60px;
  }

  .catalog-mobileProductName {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .catalog-mobileProductCategory {
    font-size: 0.75rem;
    line-height: 1.2;
    display: block;
    padding-top: 12px;
  }

  .catalog-ctaButton {
    min-height: 34px;
    padding: 0.6rem 1.2rem;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    line-height: normal;
  }

  .catalog-mobileCardBody {
    padding: 0 1.1rem 1.1rem;
  }

  .catalog-mobileExpandedContent {
    padding: 0.75rem 0.75rem 0;
  }

  .catalog-expandedGrid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
