@charset "UTF-8";

:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --white: #ffffff;
  --red: #ff3b3b;
  --red-deep: #e22929;
  --text: #121212;
  --muted: #6d6d6d;
  --muted-light: #cfcfcf;
  --border: #e7e7e7;
  --container: 1200px;
  --header-height: 90px;
  --transition: 0.3s ease;
  --hero-image: url("./assets/977d6a1c-8276-4a31-b9e6-ba74d8c2d905.png");
  --gold: #b48a42;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 45, 53, 0.13), transparent 34%),
    linear-gradient(135deg, #050505 0%, #0b0b0d 48%, #151515 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  animation: loaderFailsafeHide 0.01s linear 0.95s forwards;
}

body.is-loading #page-loader {
  opacity: 1;
  visibility: visible;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-mark {
  width: min(164px, 42vw);
  max-width: 164px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 45, 53, 0.26));
  animation: loaderBreathe 1.15s ease-in-out infinite;
}

.brand-logo {
  max-width: 220px;
}

@keyframes loaderBreathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
    filter: drop-shadow(0 0 10px rgba(255, 45, 53, 0.20));
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
    filter: drop-shadow(0 0 24px rgba(255, 45, 53, 0.36));
  }
}

@keyframes loaderFailsafeHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #page-loader {
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }

  .page-loader-mark {
    animation: none;
  }
}

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

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

.reveal-left,
.reveal-up,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.56s ease, transform 0.56s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-up {
  transform: translateY(22px);
}

.reveal-fade {
  transform: none;
}

.reveal-left.is-visible,
.reveal-up.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  --reveal-delay: 70ms;
}

.reveal-delay-2 {
  --reveal-delay: 140ms;
}

.reveal-delay-3 {
  --reveal-delay: 210ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}

.brand-logo {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.call-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  max-width: 265px;
  padding: 14px 16px 14px 24px;
  background: linear-gradient(135deg, var(--red) 0%, #d71919 100%);
  color: var(--white);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  flex: 0 1 auto;
  transition: transform var(--transition), box-shadow var(--transition);
}

.call-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 59, 59, 0.22);
}

.call-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.call-icon svg {
  width: 20px;
  height: 20px;
}

.call-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.call-copy span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.call-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  word-spacing: 3px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #121212;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.66)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 32px 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-title,
.section-title,
.card-title,
.stat-value,
.cta-title {
  font-family: "Poppins", sans-serif;
  letter-spacing: -1px;
}

.page-title {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
  font-weight: 800;
}

.page-description {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.section {
  width: 100%;
  padding: 96px 0;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: #050505;
  color: #fff;
}

.split-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.section-title span {
  color: var(--red);
}

.section-copy {
  margin-top: 22px;
  color: #555;
  font-size: 16px;
  line-height: 1.95;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.media-frame.gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 138, 66, 0.28), transparent 48%);
}

.about-page .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 44%, rgba(5, 5, 5, 0.44) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.about-page .page-hero::before {
  background:
    radial-gradient(circle at 16% 32%, rgba(255, 45, 53, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
}

.about-page .page-hero-inner {
  padding-top: 116px;
  padding-bottom: 112px;
}

.about-page .page-title {
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.about-page .page-description {
  max-width: 720px;
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.about-page .section-light {
  padding-top: 118px;
  padding-bottom: 108px;
}

.about-page .split-layout > div:first-child {
  max-width: 660px;
}

.about-page .section-copy {
  max-width: 640px;
}

.about-page .media-frame {
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-page .media-frame:hover {
  transform: scale(1.018);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.50);
}

.about-feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 53, 0.24);
  box-shadow: 0 0 25px rgba(255, 45, 53, 0.2);
}

.about-trust-section {
  padding: 100px 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 45, 53, 0.10), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: #fff;
}

.about-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.about-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-section-head .section-title {
  color: #fff;
}

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

.about-trust-card {
  min-height: 230px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px 24px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 45, 53, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 25px rgba(255, 45, 53, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 53, 0.44);
  box-shadow: 0 0 34px rgba(255, 45, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.about-trust-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff2d35;
  background: rgba(255, 45, 53, 0.13);
  box-shadow: 0 0 24px rgba(255, 45, 53, 0.24);
}

.about-trust-icon svg {
  width: 30px;
  height: 30px;
}

.about-trust-card strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: #fff;
}

.about-trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-cta-section {
  padding: 96px 32px 112px;
  background: #fff;
}

.about-cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 45, 53, 0.22), transparent 28%),
    linear-gradient(135deg, #050505 0%, #141414 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.about-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 45, 53, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.about-cta-panel > * {
  position: relative;
  z-index: 1;
}

.about-cta-panel h2 {
  margin: 0;
  max-width: 700px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
}

.about-cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.about-cta-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.about-cta-btn:hover {
  transform: translateY(-3px);
}

.about-cta-primary {
  background: #ff2d35;
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 45, 53, 0.24);
}

.about-cta-primary:hover {
  box-shadow: 0 0 30px rgba(255, 45, 53, 0.42);
}

.about-cta-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.about-cta-secondary:hover {
  border-color: rgba(255, 45, 53, 0.42);
  box-shadow: 0 0 28px rgba(255, 45, 53, 0.20);
}

@media (max-width: 1100px) {
  .about-page .page-hero-inner {
    padding-top: 96px;
    padding-bottom: 94px;
  }

  .about-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .about-page .page-hero-inner {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-page .section-light {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .about-page .media-frame:hover,
  .about-feature:hover,
  .about-trust-card:hover,
  .about-cta-btn:hover {
    transform: none;
  }

  .about-trust-section,
  .about-cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-trust-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-card {
    min-height: 200px;
  }

  .about-cta-section {
    padding-top: 72px;
    padding-bottom: 86px;
  }

  .about-cta-panel {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .about-cta-actions {
    width: 100%;
  }

  .about-cta-btn {
    width: 100%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stat-card {
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.stat-value {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: #111;
}

.stat-label {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

.cards-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.cards-grid.services-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.filter-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 59, 0.22);
}

.filter-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.info-card {
  min-width: 0;
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 59, 59, 0.18);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.12), rgba(180, 138, 66, 0.12));
  color: #111;
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.card-title {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
}

.card-text {
  margin: 0 0 22px;
  color: #666;
  line-height: 1.8;
}

.card-media {
  min-height: 240px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.gallery-card {
  overflow: hidden;
}

.reference-card {
  text-align: left;
}

.reference-logo-wrap {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  border: 1px solid #ececec;
}

.reference-logo {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.gallery-card .card-media {
  transition: transform var(--transition);
}

.gallery-card:hover .card-media {
  transform: scale(1.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.12);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 10px;
}

.gallery-card .card-title {
  margin-top: 0;
}

.gallery-launch {
  margin-top: 10px;
}

.gallery-empty {
  padding: 30px;
  border: 1px dashed rgba(18, 18, 18, 0.14);
  border-radius: 16px;
  color: #666;
  text-align: center;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 24px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
}

.gallery-modal.is-open {
  display: grid;
  place-items: center;
}

.gallery-modal-dialog {
  width: min(1080px, 100%);
  max-height: min(88vh, 920px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gallery-modal-media {
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

.gallery-modal-content {
  position: relative;
  padding: 34px 32px 32px;
  overflow-y: auto;
}

.gallery-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-copy {
  margin-top: 18px;
  color: #666;
  line-height: 1.85;
}

.card-media.gold {
  background:
    linear-gradient(180deg, rgba(180, 138, 66, 0.16), rgba(0, 0, 0, 0.18)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.meta-line {
  margin-top: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(18, 18, 18, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(255, 59, 59, 0.32);
  color: var(--red);
}

.cta-strip {
  max-width: 1320px;
  margin: 42px auto 0;
  padding: 0 32px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #050505 0%, #111111 100%);
  color: #fff;
}

.cta-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}

.cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.contact-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
}

.contact-info-card,
.contact-form-card,
.map-placeholder {
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value {
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fbfbfb;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 59, 59, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.08);
}

.map-placeholder {
  margin-top: 24px;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #666;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.04)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.map-placeholder.map-embed-card {
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.map-placeholder.map-embed-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 45, 53, 0.12), transparent 25%),
    radial-gradient(circle at 82% 72%, rgba(255, 45, 53, 0.09), transparent 30%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  color: #fff;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px);
  opacity: 0.36;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 64px;
  width: min(1180px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 53, 0.92), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 45, 53, 0.48);
}

.footer-shell {
  max-width: 1520px;
  margin: 0 auto;
  padding: 86px 112px 30px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(230px, 1fr)) minmax(310px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.footer-brand-panel {
  padding: 34px 10px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 30px;
}

.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), 0 0 28px rgba(255, 45, 53, 0.10);
}

.footer-logo {
  width: min(252px, 68vw);
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.footer-brand-panel p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.footer-social {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-social:hover {
  color: #ff2d35;
  border-color: rgba(255, 45, 53, 0.58);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(255, 45, 53, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 45, 53, 0.28);
  box-shadow: 0 0 25px rgba(255, 45, 53, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 53, 0.44);
  box-shadow: 0 0 35px rgba(255, 45, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.footer-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  pointer-events: none;
  background:
    linear-gradient(145deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, transparent 26%),
    linear-gradient(25deg, transparent 42%, rgba(255, 255, 255, 0.06) 43%, transparent 44%),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.06) 18% 19%, transparent 19% 100%);
  opacity: 0.16;
  transform: skewY(-8deg) translateY(28px);
}

.footer-services-card::before {
  opacity: 0.22;
}

.footer-card-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
}

.footer-card-title::after {
  content: "";
  position: absolute;
  left: 58px;
  bottom: 0;
  width: 140px;
  max-width: calc(100% - 58px);
  height: 2px;
  background: linear-gradient(90deg, #ff2d35, rgba(255, 45, 53, 0));
  box-shadow: 0 0 14px rgba(255, 45, 53, 0.72);
}

.footer-title-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ff2d35;
  background: rgba(255, 45, 53, 0.13);
  box-shadow: 0 0 22px rgba(255, 45, 53, 0.22);
}

.footer-title-icon svg {
  width: 24px;
  height: 24px;
}

.footer-card h2 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-link-card a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 0 6px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.35;
  transition: color var(--transition), transform var(--transition);
}

.footer-link-card a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  color: #ff2d35;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-54%);
  text-shadow: 0 0 10px rgba(255, 45, 53, 0.72);
}

.footer-link-card a:hover {
  color: #ff2d35;
  transform: translateX(4px);
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-card .footer-card-title {
  margin-bottom: 8px;
}

.footer-mini-card {
  position: relative;
  z-index: 1;
  min-height: 88px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-mini-card:hover {
  transform: translateY(-3px);
}

.footer-mini-red {
  box-shadow: inset 3px 0 0 #ff2d35, 0 0 22px rgba(255, 45, 53, 0.10);
}

.footer-mini-red:hover {
  border-color: rgba(255, 45, 53, 0.42);
  box-shadow: inset 3px 0 0 #ff2d35, 0 0 28px rgba(255, 45, 53, 0.22);
}

.footer-mini-green {
  box-shadow: inset 3px 0 0 #25D366, 0 0 22px rgba(37, 211, 102, 0.10);
}

.footer-mini-green:hover {
  border-color: rgba(37, 211, 102, 0.42);
  box-shadow: inset 3px 0 0 #25D366, 0 0 30px rgba(37, 211, 102, 0.24);
}

.footer-mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff2d35;
  background: rgba(255, 45, 53, 0.12);
}

.footer-mini-green .footer-mini-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
}

.footer-mini-icon svg {
  width: 25px;
  height: 25px;
}

.footer-mini-card strong {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-mini-card em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 14px;
}

.footer-bottom {
  position: relative;
  margin-top: 54px;
  padding: 18px 0 0;
  text-align: center;
}

.footer-glow-line {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-glow-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff2d35, transparent);
  box-shadow: 0 0 18px rgba(255, 45, 53, 0.55), 0 0 34px rgba(255, 45, 53, 0.24);
  transform: translateY(-50%);
}

.footer-bottom p {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
  max-width: 760px;
}

.footer-credit span {
  color: rgba(255, 255, 255, 0.28);
  margin: 0 8px;
}

.footer-signature {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-signature a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-signature a:hover {
  color: #ff2d35;
  text-shadow: 0 0 14px rgba(255, 45, 53, 0.42);
}

.sticky-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.40), 0 0 0 8px rgba(37, 211, 102, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sticky-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.52), 0 0 0 12px rgba(37, 211, 102, 0.10);
}

.sticky-whatsapp svg {
  width: 38px;
  height: 38px;
}

@media (max-width: 1180px) {
  .footer-shell {
    padding: 72px 28px 28px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-panel {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .footer-shell {
    padding: 58px 20px 104px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-panel {
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-brand-panel p {
    font-size: 15px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .footer-card:hover,
  .footer-link-card a:hover,
  .footer-mini-card:hover {
    transform: none;
  }

  .footer-mini-card {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
  }

  .footer-bottom {
    margin-top: 36px;
    padding-top: 8px;
  }

  .footer-bottom p {
    max-width: 300px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-signature {
    max-width: none;
    margin-top: 6px;
    font-size: 11px;
  }

  .sticky-whatsapp {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32), 0 0 0 6px rgba(37, 211, 102, 0.07);
  }

  .sticky-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: calc(100vw - 88px);
    max-height: 46px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .footer-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-info-card .section-title {
    font-size: clamp(30px, 9vw, 38px);
    overflow-wrap: anywhere;
  }

  .contact-value {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .sticky-whatsapp {
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .sticky-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 1220px) {
  .header-inner {
    padding: 0 24px;
  }

  .split-layout,
  .cards-section,
  .cta-strip,
  .contact-layout,
  .page-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1100px) {
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.services-list,
  .cards-grid.products-grid,
  .cards-grid.gallery-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-modal-dialog {
    grid-template-columns: 1fr;
  }

  .gallery-modal-media {
    min-height: 320px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .call-box {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    padding: 0 14px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-logo {
    width: min(300px, calc(100vw - 96px));
    max-height: 50px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 16px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
  }

  .cards-grid,
  .cards-grid.services-list,
  .cards-grid.products-grid,
  .cards-grid.gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-inner,
  .split-layout,
  .cards-section,
  .cta-strip,
  .contact-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal-content {
    padding: 28px 22px 22px;
  }

  .contact-info-card .section-title {
    font-size: clamp(30px, 9vw, 42px);
    overflow-wrap: anywhere;
  }

  .contact-value {
    font-size: 22px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .cards-grid .card-text.reveal-up,
  .contact-info-card.reveal-up,
  .contact-form-card.reveal-up,
  .map-placeholder.reveal-up {
    opacity: 1;
    transform: none;
  }

  .cards-grid .card-text {
    color: #555;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .page-hero-inner {
    padding-top: 68px;
    padding-bottom: 66px;
  }

  .page-title {
    font-size: clamp(38px, 11vw, 54px);
    overflow-wrap: anywhere;
  }

  .page-description,
  .section-copy,
  .card-text {
    line-height: 1.75;
  }

  .info-card,
  .stat-card,
  .contact-info-card,
  .contact-form-card,
  .map-placeholder {
    padding: 24px 20px;
  }

  .card-media {
    min-height: 210px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    flex: 1 1 auto;
    min-width: min(150px, 100%);
  }

  .btn,
  .contact-form .btn {
    width: 100%;
  }

  .map-placeholder.map-embed-card iframe {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-card,
  .footer-brand-panel,
  .footer-contact-card {
    width: 100%;
  }
}

/* Force public pages to keep the premium dark theme in all browsers. */
:root {
  color-scheme: dark;
}

html,
body,
main {
  background: #050505;
  color: #ffffff;
}

.section,
.section-light,
.cards-section,
.about-cta-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 45, 53, 0.08), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0d 100%) !important;
  color: #ffffff;
}

.split-layout,
.contact-layout,
.cards-section,
.cta-strip,
.about-trust-inner,
.about-cta-panel {
  color: #ffffff;
}

.page-title,
.section-title,
.card-title,
.stat-value,
.cta-title,
.contact-value,
.info-card h2,
.info-card h3,
.stat-card h3,
.contact-info-card .section-title,
.contact-form label {
  color: #ffffff;
}

.section-title span,
.eyebrow,
.contact-label,
.meta-line,
.badge {
  color: #ff3b3b;
}

.section-copy,
.card-text,
.stat-label,
.contact-form label,
.gallery-modal-copy,
.contact-value.contact-address {
  color: rgba(255, 255, 255, 0.74);
}

.stat-card,
.info-card,
.contact-info-card,
.contact-form-card,
.about-trust-card,
.about-cta-panel,
.gallery-empty {
  border-color: rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)) !important;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.reference-logo-wrap,
.gallery-modal-dialog,
.gallery-modal-content {
  background: #111113;
  border-color: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.gallery-modal-close {
  background: #18181a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.filter-btn,
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.filter-btn.is-active,
.btn-primary {
  background: #ff3b3b;
  border-color: #ff3b3b;
  color: #ffffff;
}

.map-placeholder.map-embed-card {
  background: #0b0b0d;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 45, 53, 0.30);
}

.site-nav a::after {
  background: #ff3b3b;
  box-shadow: 0 0 14px rgba(255, 59, 59, 0.42);
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  background: #ffffff;
}

.call-box {
  background: linear-gradient(135deg, #ff3b3b, #d80f1d);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(255, 45, 53, 0.28);
}

@media (max-width: 980px) {
  .site-nav {
    background: rgba(8, 8, 9, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  }
}
