/* =============================================
   MECHATRONIKA POMORZE – styl.css
   Kompletne style dla całej strony
   ============================================= */

/* === ZMIENNE I RESET === */
:root {
  --bg: #271E1E;
  --bg2: #1e1717;
  --primary: #47A8D4;
  --accent: #E07100;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --border: rgba(255,255,255,0.12);
  --header-h: 70px;
  --max-w: 1200px;
  --radius: 8px;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

/* === POMOCNICZE === */
.wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAGŁÓWEK / HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header__menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__menu-item {
  position: relative;
}

.header__menu-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header__menu-item > a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--primary);
}

/* Chevron arrow */
.chevron-icon {
  display: inline-block;
  width: 8px;
  height: 6px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.chevron-icon path { fill: white; }

/* Submenu (dropdown) */
.header__submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0.25s;
  z-index: 200;
}
.header__menu-item:hover > .header__submenu,
.header__menu-item.submenu-open > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0s;
}
.header__menu-item:hover > .chevron-icon,
.header__menu-item.submenu-open > .chevron-icon {
  transform: rotate(180deg);
}

.header__submenu .header__menu-item > a {
  display: block;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 0;
}
.header__submenu .header__menu-item > a:hover {
  background: rgba(255,255,255,0.08);
}

/* WhatsApp link in header */
.header__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.header__wa:hover { background: #1ebe5b; transform: scale(1.08); }
.header__wa svg { display: block; }

/* Hamburger button */
.header__ham {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
}
.header__ham-menubtn,
.header__ham-menubtn::before,
.header__ham-menubtn::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.header__ham-menubtn { position: relative; }
.header__ham-menubtn::before,
.header__ham-menubtn::after {
  content: '';
  position: absolute;
  left: 0;
}
.header__ham-menubtn::before { top: -7px; }
.header__ham-menubtn::after  { top:  7px; }
.header.open .header__ham-menubtn { background: transparent; }
.header.open .header__ham-menubtn::before { top: 0; transform: rotate(45deg); }
.header.open .header__ham-menubtn::after  { top: 0; transform: rotate(-45deg); }

/* =============================================
   HERO SLIDER (strona główna)
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero__track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.hero__slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39,30,30,0.85) 40%, rgba(39,30,30,0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero__text { max-width: 540px; }
.hero__text h1,
.hero__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero__text p { font-size: 1.05rem; color: var(--text-muted); }

.hero__image {
  flex-shrink: 0;
  width: 420px;
  max-width: 45%;
}
.hero__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* Slider controls */
.hero__prev,
.hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hero__prev { left: 16px; }
.hero__next { right: 16px; transform: translateY(-50%) rotate(180deg); }
.hero__prev:hover, .hero__next:hover { background: rgba(0,0,0,0.65); }

/* Slider info bar */
.hero__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(39,30,30,0.85);
  backdrop-filter: blur(4px);
  padding: 10px 24px;
}
.hero__info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero__info-item a { color: var(--text-muted); transition: color var(--transition); }
.hero__info-item a:hover { color: var(--primary); }
.hero__info-item svg { flex-shrink: 0; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.hero__dot.active { background: var(--primary); transform: scale(1.2); }

/* =============================================
   SEKCJA: O NAS (text + image + godziny)
   ============================================= */
.about {
  padding: 80px 0;
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.about__text { flex: 1; }
.about__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about__text p { color: var(--text-muted); margin-bottom: 16px; }

.about__hours {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.about__hours-title {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(71,168,212,0.08);
  border-bottom: 1px solid var(--border);
}
.about__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.about__hours-row:last-child { border-bottom: none; }
.about__hours-row span:last-child { color: var(--text-muted); }

.about__image { width: 380px; flex-shrink: 0; }
.about__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* =============================================
   SEKCJA: USŁUGI (services icons + image)
   ============================================= */
.services {
  padding: 80px 0;
  background: rgba(255,255,255,0.02);
}
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.services__header {
  margin-bottom: 48px;
}
.services__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.services__header p { color: var(--text-muted); max-width: 600px; }

.services__content {
  display: flex;
  gap: 48px;
  align-items: center;
}
.services__image { flex-shrink: 0; width: 380px; }
.services__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.services__items { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.services__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.services__item-icon { flex-shrink: 0; margin-top: 2px; }
.services__item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.services__item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 6px;
  transition: gap var(--transition);
}
.services__item a:hover { gap: 10px; }

/* =============================================
   CTA BLOCK
   ============================================= */
.cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(39,30,30,0.75);
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  max-width: 600px;
}
.cta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta__inner p { color: var(--text-muted); font-size: 1rem; }

/* =============================================
   KATALOG PRODUKTÓW (grid)
   ============================================= */
.catalog {
  padding: 80px 0;
}
.catalog__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.catalog__header {
  margin-bottom: 40px;
}
.catalog__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

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

.catalog__card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
}
.catalog__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.catalog__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.catalog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.catalog__card:hover .catalog__card-img img { transform: scale(1.05); }
.catalog__card-body {
  padding: 14px 16px;
}
.catalog__card-body p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* =============================================
   SINGLE PRODUCT PAGE
   ============================================= */
.product-hero {
  padding: 48px 0;
}
.product-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Gallery */
.product-gallery { flex-shrink: 0; width: 460px; }
.product-gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: #1a1414;
  cursor: zoom-in;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: calc(50% - 4px);
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.65;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--primary);
  opacity: 1;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product info */
.product-info { flex: 1; padding-top: 8px; }
.product-info h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.product-info__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-info__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: #3a96c2; transform: translateY(-1px); }
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5b; transform: translateY(-1px); }

/* =============================================
   SEKCJA: INNE NAPRAWY (na podstronach)
   ============================================= */
.related {
  padding: 64px 0;
  background: rgba(255,255,255,0.02);
}
.related__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.related__header {
  margin-bottom: 36px;
}
.related__header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
}

/* =============================================
   STRONA KONTAKT
   ============================================= */
.page-title {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.page-title h1 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.contact-section {
  padding: 64px 0;
}
.contact-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--primary); }
.contact-card svg { flex-shrink: 0; }
.contact-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  overflow-wrap: break-word;
}
.contact-card__value a {
  color: var(--text);
  transition: color var(--transition);
  word-break: break-all;
  overflow-wrap: break-word;
}
.contact-card__value a:hover { color: var(--primary); }

/* Hours card */
.contact-hours p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  width: 100%;
}
.contact-hours p:last-child { border-bottom: none; }
.contact-hours p strong { color: var(--text); }

/* =============================================
   GOOGLE MAPS
   ============================================= */
.map-section {
  height: 400px;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) brightness(0.9);
}

/* =============================================
   STOPKA / FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__contact-item:hover { color: var(--text); }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer__social:hover { background: var(--primary); border-color: var(--primary); }

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__menu-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__menu-list a:hover { color: var(--primary); }

.footer__hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__bottom a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.footer__bottom a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transition: width 0.35s ease;
}
.footer__bottom a:hover {
  color: rgba(255,255,255,0.6);
}
.footer__bottom a:hover::after { width: 100%; }
.footer__copyright-wrap {
  padding: 0 24px 12px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* =============================================
   IKONA SVG email (cls-1, cls-2)
   ============================================= */
.cls-1, .cls-2 {
  fill: none;
  stroke: var(--primary);
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.cls-2 { stroke-linecap: round; }

/* =============================================
   RESPONSYWNOŚĆ
   ============================================= */
@media (max-width: 1024px) {
  .hero__image { width: 320px; }
  .about__image { width: 280px; }
  .services__image { width: 280px; }
  .product-gallery { width: 360px; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .header__ham { display: flex; }
  .header__menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 8px 0 16px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0.25s;
    z-index: 999;
    gap: 0;
  }
  .header.open .header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0s;
  }

  .header__menu-list { flex-direction: column; width: 100%; }
  .header__menu-item { width: 100%; border-bottom: 1px solid var(--border); position: relative; }
  .header__menu-item > a { padding: 14px 20px; border-radius: 0; width: 100%; }
  .chevron-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
  .header__menu-item.submenu-open > .chevron-icon { transform: translateY(-50%) rotate(180deg); }

  /* Submenu mobile */
  .header__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.04);
    padding: 0;
    min-width: unset;
    display: none;
    transition: none;
    box-shadow: none;
  }
  .header__menu-item.submenu-open > .header__submenu { display: block; }
  .header__submenu .header__menu-item > a { padding-left: 36px; }
  .header__wa { margin: 12px 20px; width: 40px; height: 40px; }

  /* Hero */
  .hero__slide { min-height: 420px; }
  .hero__image { display: none; }
  .hero__slide-bg::after { background: rgba(39,30,30,0.7); }
  .hero__content { padding: 60px 24px 100px; }

  /* About */
  .about__inner { flex-direction: column; gap: 40px; }
  .about__image { width: 100%; }

  /* Services */
  .services__content { flex-direction: column; }
  .services__image { width: 100%; }

  /* Product */
  .product-hero__inner { flex-direction: column; }
  .product-gallery { width: 100%; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__info-inner { gap: 16px; }
  .hero__info-item { font-size: 0.8rem; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}
