/* Components — VOLTAGÉ */

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--black);
  transition: transform 0.4s var(--ease);
}

.top-bar--hidden {
  transform: translateY(-100%);
}

.top-bar--light {
  background: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.25rem;
}

.top-bar__phones,
.top-bar__email,
.top-bar__address {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar__address .top-bar__link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar__link:hover {
  color: var(--orange);
}

.top-bar--light .top-bar__link {
  color: var(--black);
}

.top-bar--light .top-bar__link:hover {
  color: var(--orange);
}

.top-bar__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .top-bar__inner {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .top-bar__address {
    display: none;
  }

  .top-bar__phones,
  .top-bar__email {
    gap: 1.25rem;
  }

  .top-bar__link {
    font-size: 0.65rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.35s var(--ease);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg { transform: translateX(3px); }

.btn--fill {
  background: var(--orange);
  color: var(--white);
}

.btn--fill:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn--dark {
  background: var(--black);
  color: var(--white);
}

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

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(8, 8, 8, 0.22);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--orange);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn--line {
  background: none;
  color: var(--orange);
  padding: 0;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

.btn--line:hover { color: var(--orange-hot); }

.btn--line-light {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.btn--line-light:hover { color: var(--white); }

/* Service index rows */
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.4s var(--ease);
}

.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}

.svc-row:hover::before { transform: scaleX(1); }
.svc-row:hover { padding-left: 1.5rem; }

.svc-row > * { position: relative; z-index: 1; }

.svc-row__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  transition: color 0.3s;
}

.svc-row:hover .svc-row__num { color: var(--white); }

.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}

.svc-row__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 600px;
  transition: color 0.3s;
}

.svc-row:hover .svc-row__desc { color: rgba(255, 255, 255, 0.8); }

.svc-row__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.35s var(--ease);
  flex-shrink: 0;
}

.svc-row:hover .svc-row__arrow {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.svc-row__arrow svg { width: 18px; height: 18px; }

/* Quote slide */
.quote {
  padding: 1rem;
}

.quote__stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: var(--orange);
  margin-bottom: 2rem;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.quote__who {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.quote__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.q-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

.q-dot--on {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
}

/* News card */
.card {
  background: var(--white);
  border: 1px solid var(--cream);
  overflow: hidden;
  transition: 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(8, 8, 8, 0.08);
  border-color: var(--orange-faint);
}

.card__thumb {
  overflow: hidden;
}

.card__thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card__thumb img { transform: scale(1.04); }

.card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__date {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__excerpt {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card__more {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 50%, rgba(8, 8, 8, 0.4) 100%);
}

.page-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--top-bar-h) + var(--nav-h) + 3rem) var(--pad) 3rem;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.page-hero__label {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-hero__label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.65); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: rgba(255, 255, 255, 0.25); }

/* ============================================
   INFO CARDS (Why Choose Us)
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--cream);
  padding: 2rem 1.75rem;
  transition: 0.35s var(--ease);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(8, 8, 8, 0.08);
  border-color: var(--orange-faint);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-faint);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.info-card__icon svg { width: 22px; height: 22px; }

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.info-card__desc {
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.6;
}

/* ============================================
   TAG CLOUD
   ============================================ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-cloud__item {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream);
  color: var(--graphite);
  transition: 0.3s;
}

.tag-cloud__item:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ============================================
   SERVICE GRID & CARDS
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--cream);
  overflow: hidden;
  transition: 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(8, 8, 8, 0.08);
  border-color: var(--orange-faint);
}

.svc-card__img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.svc-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__cat {
  font-family: var(--font-tech);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.svc-card__desc {
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.svc-card__more {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.svc-card__more svg { width: 14px; height: 14px; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tabs__btn {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--ash);
  cursor: pointer;
  transition: 0.3s;
}

.filter-tabs__btn:hover,
.filter-tabs__btn--on {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ============================================
   GALLERY / PROJECTS GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--coal);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.9) 0%, rgba(255, 107, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__tag {
  font-family: var(--font-tech);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
}

.gallery-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

/* ============================================
   UPDATE / BLOG GRID
   ============================================ */
.update-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cream);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--orange);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream);
}

.contact-info__item:first-child { padding-top: 0; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-faint);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 18px; height: 18px; }

.contact-info__label {
  font-family: var(--font-tech);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.55;
}

.contact-info__value a { color: var(--graphite); transition: color 0.3s; }
.contact-info__value a:hover { color: var(--orange); }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  margin-top: 1.5rem;
  background: var(--coal);
}

/* ============================================
   RELATED SERVICES STRIP
   ============================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.detail-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.detail-hero__media {
  position: absolute;
  inset: 0;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.5) 60%, rgba(8, 8, 8, 0.35) 100%);
}

.detail-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 2.5rem) var(--pad) 2.5rem;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.detail-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.spec-table th,
.spec-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cream);
}

.spec-table th {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
  background: var(--snow);
}

.spec-table td { color: var(--graphite); }

.spec-table tr:hover td { background: rgba(255, 107, 0, 0.03); }

/* ============================================
   PRODUCT VIDEOS
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: 0.4s var(--ease);
  aspect-ratio: 16 / 9;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 48px rgba(255, 107, 0, 0.15);
}

.video-card__thumb {
  position: absolute;
  inset: 0;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.7);
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s var(--ease);
  z-index: 2;
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--orange-hot);
  box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.2);
}

.video-card__play svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  margin-left: 3px;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 1;
}

.video-card__tag {
  font-family: var(--font-tech);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.video-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

/* Custom Video Player Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.video-modal__wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.video-modal__close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.video-modal__title {
  position: absolute;
  top: -48px;
  left: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 40px;
}

.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .update-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .update-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: clamp(2rem, 10vw, 3rem); }
  .video-modal__wrapper { width: 95%; }
  .video-modal__close { top: -42px; }
}

/* ============================================
   CALLBACK POPUP
   ============================================ */
.callback-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem;
}

.callback-popup--open {
  display: flex;
}

.callback-popup__inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: callbackPopupIn 0.4s var(--ease);
}

@keyframes callbackPopupIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.callback-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--snow);
  border: none;
  color: var(--ash);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  line-height: 1;
}

.callback-popup__close:hover {
  background: var(--orange);
  color: var(--white);
}

.callback-popup__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.callback-popup__subtitle {
  font-size: 0.95rem;
  color: var(--ash);
  margin-bottom: 1.5rem;
}

.callback-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.callback-popup__input-group {
  display: flex;
  gap: 0.5rem;
}

.callback-popup__country {
  flex-shrink: 0;
  width: 80px;
  padding: 0.9rem 0.75rem;
  border: 1px solid var(--cream);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}

.callback-popup__country:focus {
  border-color: var(--orange);
}

.callback-popup__phone {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cream);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.callback-popup__phone:focus {
  border-color: var(--orange);
}

.callback-popup__submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

.callback-popup__secure {
  font-size: 0.85rem;
  color: var(--ash);
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream);
}

.callback-popup__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.callback-popup__option {
  font-size: 0.88rem;
  color: var(--graphite);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.4;
}

.callback-popup__option:hover {
  color: var(--orange);
}

.callback-popup__note {
  font-size: 0.75rem;
  color: var(--ash);
  text-align: center;
  font-style: italic;
}

@media (max-width: 576px) {
  .callback-popup__inner {
    padding: 2rem 1.5rem;
  }

  .callback-popup__title {
    font-size: 1.25rem;
  }

  .callback-popup__input-group {
    flex-direction: column;
  }

  .callback-popup__country {
    width: 100%;
  }
}

/* ============================================
   CUSTOMERS / CLIENTS LOGO GRID
   ============================================ */
.customers {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--snow);
}

.customers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.customers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  transition: 0.35s var(--ease);
  min-height: 100px;
  width: 100%;
}

.customers__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(8, 8, 8, 0.08);
  border-color: var(--orange-faint);
}

.customers__item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.35s var(--ease);
}

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

@media (max-width: 768px) {
  .customers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .customers__item {
    padding: 1rem;
    min-height: 80px;
  }

  .customers__item img {
    max-height: 60px;
  }
}

/* ============================================
   BROCHURE DOWNLOAD POPUP
   ============================================ */
.brochure-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem;
}

.brochure-popup--open {
  display: flex;
}

.brochure-popup__inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: brochurePopupIn 0.4s var(--ease);
}

@keyframes brochurePopupIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.brochure-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--snow);
  border: none;
  color: var(--ash);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  line-height: 1;
}

.brochure-popup__close:hover {
  background: var(--orange);
  color: var(--white);
}

.brochure-popup__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.brochure-popup__subtitle {
  font-size: 0.95rem;
  color: var(--ash);
  margin-bottom: 1.5rem;
}

.brochure-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.brochure-popup__form .form-field input {
  width: 100%;
}

.brochure-popup__submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

.brochure-popup__secure {
  font-size: 0.85rem;
  color: var(--ash);
  text-align: center;
}

@media (max-width: 576px) {
  .brochure-popup__inner {
    padding: 2rem 1.5rem;
  }

  .brochure-popup__title {
    font-size: 1.25rem;
  }
}
