/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2d6a1a;
  --green:        #3d8422;
  --green-light:  #6ab830;
  --green-grad:   linear-gradient(135deg, #2d6a1a 0%, #6ab830 100%);
  --earth:        #8b6c1e;
  --earth-light:  #c49a3c;
  --cream:        #f5f2eb;
  --white:        #ffffff;
  --gray-100:     #f8f8f6;
  --gray-200:     #ececea;
  --gray-600:     #666;
  --text:         #1c1c1c;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-hover: 0 8px 40px rgba(0,0,0,.16);
  --radius:       12px;
  --transition:   .3s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.header__nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--earth-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.header__nav a:hover::after,
.header__nav a:focus::after { transform: scaleX(1); }

.header.scrolled .header__nav a { color: var(--text); }
.header.scrolled .header__burger span { background: var(--text); }

.header__cta {
  background: var(--green-grad);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.header__cta:hover { background: var(--green-dark) !important; }
.header__cta::after { display: none !important; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.header.scrolled .header__burger span { background: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/intro.png');
  background-size: cover;
  background-position: 30% 38%;
  filter: brightness(.45);
  animation: hero-pan 12s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  0%   { background-position: 25% 38%; }
  100% { background-position: 80% 38%; }
}

.hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding-top: 140px;
}

.hero__content {
  color: var(--white);
  text-align: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__brands {
  background: transparent;
  padding: 22px 0;
  margin-top: 40px;
}

.hero__brands .brands__label {
  color: rgba(255,255,255,.7);
}

.hero__brands .brands__logos img {
  filter: brightness(0) invert(1) opacity(.85);
}

.hero__brands .brands__logos img:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: none;
}

.hero__badge {
  display: inline-block;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 2px solid #6ab830;
}

.hero__badge::before {
  display: none;
  content: '';
  width: 8px; height: 8px;
  background: var(--earth-light);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: #a8e06a;
}

.hero__text {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-grad);
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #245514 0%, #5aa026 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,107,26,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 24px; height: 24px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BRANDS ===== */
.brands {
  background: var(--cream);
  padding: 48px 0;
}

.brands__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brands__label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 8px;
}

.brands__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.brands__logos img {
  height: 40px;
  width: auto;
  filter: grayscale(30%) opacity(.8);
  transition: var(--transition);
}

.brands__logos img:hover {
  filter: none;
  transform: scale(1.05);
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--green-grad);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about__img-badge strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.about__img-badge span {
  font-size: .85rem;
  opacity: .85;
}

.about__content { padding-right: 16px; }

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(45,122,45,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.2rem;
}

.about__feature-text strong { display: block; font-weight: 600; margin-bottom: 4px; }
.about__feature-text p { font-size: .9rem; color: var(--gray-600); }

/* ===== PRODUCTS ===== */
.products { background: #fff; }

.products__header {
  text-align: center;
  margin-bottom: 56px;
}

.products__header .section-sub { margin: 0 auto; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--gray-200);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 8px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.product-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 8px;
}

.product-card__spec:last-child { border-bottom: none; }

.product-card__spec span:first-child { color: var(--gray-600); }
.product-card__spec span:last-child { font-weight: 600; color: var(--text); }

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
}

.product-card__cta:hover { gap: 12px; }

/* ===== PARTNERS ===== */
.partners {
  background: var(--white);
  text-align: center;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.partner-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}

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

.partner-card__logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-card__logo img {
  max-height: 44px;
  max-width: 160px;
  width: auto;
  filter: grayscale(20%) opacity(.85);
  transition: filter var(--transition);
}

.partner-card:hover .partner-card__logo img {
  filter: none;
}

.partner-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.partner-card p { font-size: .9rem; color: var(--gray-600); }

/* ===== PRODUCTS NOTE ===== */
.products__note {
  text-align: center;
  margin-top: 40px;
  font-size: .95rem;
  color: var(--gray-600);
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 24px;
}

/* ===== CONTACTS ===== */
.contacts { background: var(--gray-100); }

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacts__left { display: flex; flex-direction: column; gap: 40px; }

.contacts__info { display: flex; flex-direction: column; gap: 28px; }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-form__sub {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--gray-100);
  transition: border-color var(--transition);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.contact-form__note {
  font-size: .75rem;
  color: var(--gray-600);
  margin-top: 10px;
  text-align: center;
}

.contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacts__icon {
  width: 48px;
  height: 48px;
  background: var(--green-grad);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contacts__item-title {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contacts__item-value {
  font-size: 1rem;
  font-weight: 600;
}

.contacts__item-value a {
  color: var(--green);
  transition: var(--transition);
}

.contacts__item-value a:hover { color: var(--green-dark); }

.contacts__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn--wa { background: #25d366; color: var(--white); }
.social-btn--wa:hover { background: #1aad52; transform: translateY(-2px); }
.social-btn--tg { background: #229ed9; color: var(--white); }
.social-btn--tg:hover { background: #1a86b8; transform: translateY(-2px); }

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-200);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .9rem;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1e4d12 0%, #2d6a1a 100%);
  color: rgba(255,255,255,.8);
  padding: 48px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand img { height: 40px; margin-bottom: 16px; background: white; padding: 6px 12px; border-radius: 8px; }
.footer__brand p { font-size: .9rem; max-width: 280px; }

.footer__col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .9rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--earth-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== CATALOG ===== */
.catalog { background: #fff; }

.catalog__header {
  text-align: center;
  margin-bottom: 40px;
}
.catalog__header .section-sub { margin: 0 auto; }

.catalog__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalog__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
  font-family: inherit;
}

.catalog__tab img {
  height: 24px;
  width: auto;
  filter: grayscale(1) opacity(.5);
  transition: var(--transition);
}

.catalog__tab:hover {
  border-color: var(--green);
  color: var(--text);
}

.catalog__tab:hover img,
.catalog__tab.active img { filter: none; }

.catalog__tab.active {
  border-color: var(--green);
  background: var(--green-grad);
  color: var(--white);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.cat-card__img {
  height: 200px;
  overflow: hidden;
  background: #fff;
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .4s ease;
}

.cat-card__img--mf img { object-fit: cover; padding: 0; }

.cat-card:hover .cat-card__img img { transform: scale(1.04); }

.cat-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.cat-card__brand {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.cat-card__brand--alpego { background: #fff3cc; color: #a07800; }
.cat-card__brand--mascar { background: #fde8e8; color: #b00020; }
.cat-card__brand--mf     { background: #fde8e8; color: #c41230; }

.cat-card__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.cat-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cat-card__specs li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 6px;
}

.cat-card__specs li:last-child { border-bottom: none; }
.cat-card__specs li span:first-child { color: var(--gray-600); }
.cat-card__specs li span:last-child  { font-weight: 600; }

.cat-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-card__btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  min-width: 100px;
}

.cat-card__btn--ask {
  background: var(--green-grad);
  color: var(--white);
}
.cat-card__btn--ask:hover { opacity: .9; }

.cat-card__btn--more {
  background: var(--gray-100);
  color: var(--text);
  border: 1px solid var(--gray-200);
}
.cat-card__btn--more:hover {
  background: var(--gray-200);
}

@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .catalog__tab span { display: none; }
  .catalog__tab { padding: 10px 16px; }
}

/* ===== VIDEOS ===== */
.videos { background: var(--white); }

.videos__header {
  text-align: center;
  margin-bottom: 48px;
}

.videos__header .section-sub { margin: 0 auto; }

.videos__channel-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.videos__channel-link:hover { text-decoration: underline; }

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

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
  opacity: .8;
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb__play svg {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  padding: 10px;
  transition: background .3s ease, transform .3s ease;
}

.video-thumb:hover .video-thumb__play svg {
  background: var(--green);
  transform: scale(1.15);
}

/* Lightbox */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.video-modal.open { display: flex; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
}

.video-modal__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
}

.video-modal__close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.video-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .videos__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATE ON SCROLL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,92,30,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about__grid,
  .contacts__grid { grid-template-columns: 1fr; gap: 40px; }
  .contacts__map { height: 300px; }
  .about__img-badge { bottom: -16px; right: 16px; }
  .about__content { padding-right: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .products__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }

  .hero {
    min-height: 70vh;
  }
  .hero__bg {
    background-position: 72% 38%;
  }
  .hero__body {
    padding-top: 100px;
  }
  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero__text {
    font-size: 1rem;
  }
  .brands__logos {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .catalog__tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog__tab {
    justify-content: center;
  }
}
