:root {
  --red: #e10600;
  --red-dark: #b80500;
  --red-glow: rgba(225, 6, 0, 0.35);
  --bg: #0a0a0c;
  --bg-elevated: #121218;
  --bg-card: #18181f;
  --text: #f4f4f6;
  --text-muted: #9a9aa8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Site shell */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

#site-header.scrolled .header {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.promo-strip {
  background: linear-gradient(90deg, var(--red-dark), #8b0000);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 0.55rem 0;
  text-align: center;
}

.promo-strip__badge {
  background: #fff;
  color: var(--red-dark);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.promo-strip__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-strip__link:hover {
  opacity: 0.85;
}

/* Header */
.header {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.logo__text em {
  color: var(--red);
  font-style: normal;
}

.logo__text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__phone {
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active {
  color: var(--red);
}

.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav__dropdown-link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nav__dropdown-link:hover {
  background: rgba(225, 6, 0, 0.1);
  color: var(--text);
}

.nav__cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 28px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero */
.page-hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.95), rgba(10, 10, 12, 0.7));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 12, 0.97) 0%,
    rgba(10, 10, 12, 0.88) 45%,
    rgba(10, 10, 12, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b66;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

/* Services */
.services {
  background: var(--bg-elevated);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

a.service-card {
  display: block;
  color: inherit;
}

a.service-card:hover h3 {
  color: var(--red);
}

.service-card__arrow {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}

.service-card--featured {
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.08), var(--bg-card));
}

.highlight-box {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.15), rgba(225, 6, 0, 0.05));
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  color: var(--text-muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.content-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.content-grid__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-block h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.content-block ul {
  padding-left: 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filters button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery__item .gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__item.hidden {
  display: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1fb855;
}

.btn--facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.btn--facebook:hover {
  background: #166fe5;
}

.future-app-section {
  padding: 3rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.future-app {
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.08), var(--bg-card));
  border: 1px solid rgba(225, 6, 0, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 820px;
}

.future-app__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225, 6, 0, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.future-app h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.future-app p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.future-app__note {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.trust-bar__item {
  text-align: center;
}

.trust-bar__item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--red);
}

.trust-bar__item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.about__text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__list {
  list-style: none;
  margin: 1.5rem 0;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.about__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  background: var(--bg-elevated);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-card);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-band .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-band .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.contact__card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact__card a,
.contact__card p {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact__card a:hover {
  color: var(--red);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer__brand p {
  margin-top: 0.75rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}

.footer h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--red);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

.footer__line2::before {
  content: " · ";
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.lightbox__nav:hover {
  background: var(--red);
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

/* Mobile nav */
@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 95;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 112;
  }

  .header {
    position: relative;
    z-index: 111;
  }

  .nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__item--dropdown .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding-left: 0.5rem;
    box-shadow: none;
    display: none;
  }

  .nav__item--dropdown.open .nav__dropdown {
    display: block;
  }

  .nav__cta {
    display: flex;
    width: 100%;
    margin-top: 0.5rem;
  }

  .header__phone {
    display: none;
  }

  .content-grid,
  .cards-3,
  .trust-bar,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 1.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__image {
    order: -1;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.98) 0%,
      rgba(10, 10, 12, 0.96) 45%,
      rgba(10, 10, 12, 0.94) 100%
    );
  }

  .hero__bg img {
    object-position: left 35%;
    filter: brightness(0.45);
  }

  .hero__content {
    background: rgba(10, 10, 12, 0.82);
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 1.75rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    background: rgba(10, 10, 12, 0.88);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 0.25rem;
  }

  .hero__stat strong {
    font-size: 1.15rem;
  }

  .hero__stat span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .highlight-box {
    padding: 1.25rem 1rem;
  }

  .highlight-box p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 400px) {
  .hero__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__legal {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }

  .footer__line2::before {
    content: none;
  }

  .gallery-filters button {
    min-height: 44px;
    padding: 0.55rem 0.9rem;
  }
}
