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

:root {
  /* Palette based on image */
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --panel: #ffffff;
  --text: #333333;
  --muted: #666666;
  --primary: #f5a623; /* Yellow/Orange from image */
  --primary-dark: #d48e1b;
  --secondary: #333333; /* Dark Gray */
  --border: #e0e0e0;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 4px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__text strong {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.05em;
}

.brand__text span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav__menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary); /* Dark Gray */
  text-transform: uppercase;
  border-radius: 50px; /* Pill shape */
  transition: all 0.2s ease;
}

.nav__menu li a:hover {
  color: var(--primary);
  background: rgba(245, 166, 35, 0.05);
}

.nav__menu li a.active {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
}

/* Contacts (Top right) */
.header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.header__icon {
  color: var(--primary);
  display: flex;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #333;
  background-image: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)), url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #ffffff;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.4));
  z-index: 1;
}

.hero__main {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}

.hero__intro h1 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.1;
  color: #ffffff;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0;
  font-weight: 500;
}

/* Search Panel in Hero */
.hero__search-panel {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-top: 20px;
}

.hero__search-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.hero__search-row--bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.hero-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-field__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-field input {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f8f9fa;
  font-size: 0.95rem;
  color: #333;
}

/* Radio Toggle */
.hero-toggle {
  display: flex;
  gap: 4px;
  background: #f0f0f0;
  padding: 4px;
  border-radius: 50px;
  border: none;
}

.hero-toggle label {
  cursor: pointer;
}

.hero-toggle input {
  display: none;
}

.hero-toggle span {
  display: block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.hero-toggle input:checked + span {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero__submit {
  width: 100%;
}

.hero__helper {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.hero__helper a {
  color: var(--primary);
  text-decoration: underline;
}

/* Quick Search */
.quick-search {
  margin-top: 20px;
}

.quick-search__wrap {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-search__icon {
  padding: 0 20px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.quick-search input {
  flex: 1;
  border: none;
  padding: 16px 0;
  outline: none;
  font-size: 1rem;
}

.quick-search__btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

/* Ribbon */
.ribbon {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 80px 0;
  background: #ffffff;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section__header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin: 0 0 16px;
  text-transform: uppercase;
  font-weight: 800;
}

.section__header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Cards (Services & Features - UPGRADED) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px; /* Softer radius */
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft depth */
}

/* Top accent line */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--bg-alt), #ffffff);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover .card__icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary);
  background: #fff;
}

.card h3 {
  margin: 0 0 15px;
  color: var(--secondary);
  font-size: 1.3rem;
  font-weight: 800;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Servicios Block (Feature Highlight) */
.servicios-block {
  margin-top: 60px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-left: 6px solid var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}

.servicios-block::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.servicios-block__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.servicios-block h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 20px;
}

.servicios-block p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlight Cards (Recuadros) */
.servicios-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.about__card:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.15);
  transform: translateY(-3px);
}

.about__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.about__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
}

/* Animations (Visual JS classes) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Catalog Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.item:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.item__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}

.item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item:hover .item__img {
  transform: scale(1.05);
}

.item h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

.item__desc {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.item__toggle {
  margin: 0 auto 20px;
  align-self: center;
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
}

.item__toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pill {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pill li {
  font-size: 0.75rem;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--secondary);
}

/* About Section */
.about-hero {
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.about-split__content {
  padding: 20px;
}

.about-split__title {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
}

.about-split__underline {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

.site-footer__links, .site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li, .site-footer__list li {
  margin-bottom: 12px;
}

.site-footer a {
  color: #ccc;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: #888;
}

/* Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__search-row {
    grid-template-columns: 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .nav {
    justify-content: flex-end;
  }
  .nav__menu {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    align-items: stretch;
  }
  .header__contacts {
    display: none;
  }
}

/* Mega Menu */
.mega-menu {
  display: none;
}
.nav__dropdown:hover .mega-menu {
  display: block;
  position: absolute;
  top: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

/* Filters Chips */
.chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid transparent;
}
.chip:hover, .chip--active {
  background: var(--primary);
  color: #fff;
}

/* === RESTORED COMPONENTS (Adapted) === */

/* Mobile Menu (Center) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}
.mobile-menu__panel {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: min(90%, 400px);
  margin: 0 auto;
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mobile-menu__title {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
}
.mobile-menu__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}
.mobile-menu__grid {
  display: grid;
  gap: 10px;
}
.mobile-menu__item {
  padding: 15px;
  background: var(--bg-alt);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  display: block;
}

/* MV Carousel */
.mv-carousel-wrap {
  margin: 60px auto;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.mv-carousel {
  position: relative;
  padding: 0 60px;
}
.mv-carousel__stage {
  overflow: hidden;
  padding: 20px 0; /* Space for shadow */
  margin: -20px 0;
}
.mv-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
.mv-card {
  flex: 0 0 100%;
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #ffd700);
}
.mv-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
}
.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.mv-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}
.mv-carousel__arrow:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
}
.mv-carousel__arrow--prev { left: 0; }
.mv-carousel__arrow--next { right: 0; }

.mv-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.mv-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mv-dot.is-active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.4);
}

/* Proposal Slab */
.proposal-slab {
  background: var(--bg-alt);
  padding: 60px 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 8px;
}
.proposal-slab__title {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.proposal-slab__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}
.proposal-slab__list li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  color: var(--text);
}
.proposal-slab__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* Ticket Drawer */
.ticket-drawer {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
}
.ticket-drawer[aria-hidden="false"] { display: block; }
.ticket-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}
.ticket-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 500px);
  background: var(--bg);
  padding: 30px;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}
.ticket-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
}
.ticket__top { margin-bottom: 30px; }
.ticket__title { font-size: 1.8rem; margin: 0; color: var(--secondary); font-weight: 800; }
.ticket__grid { display: grid; gap: 15px; margin: 20px 0; }
.ticket__row {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ticket__label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.ticket__value { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.ticket__cta { width: 100%; margin-top: 20px; }

/* Clients Section */
.clients {
  margin-top: 20px;
}

.clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px; /* row col */
}

.clients__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100px;
  transition: transform 0.3s ease;
}

.clients__item:hover {
  transform: scale(1.05);
}

.clients__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.clients__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .clients__grid {
    gap: 30px;
  }
  .clients__item {
    width: 120px;
    height: 80px;
  }
}
