/* Webco — global starfield + transparent sections */

html,
body {
  background-color: #000000;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-color: #000000;
  background-image:
    radial-gradient(2.5px 2.5px at 12% 18%, #ffffff 30%, rgba(255, 255, 255, 0.55) 45%, transparent 70%),
    radial-gradient(1.8px 1.8px at 28% 72%, #ffffff 28%, rgba(255, 255, 255, 0.4) 48%, transparent 72%),
    radial-gradient(2.2px 2.2px at 44% 34%, #ffffff 32%, rgba(255, 255, 255, 0.5) 46%, transparent 70%),
    radial-gradient(1.6px 1.6px at 61% 12%, #ffffff 30%, rgba(255, 255, 255, 0.35) 50%, transparent 72%),
    radial-gradient(2.4px 2.4px at 73% 58%, #ffffff 28%, rgba(255, 255, 255, 0.5) 45%, transparent 70%),
    radial-gradient(1.5px 1.5px at 86% 26%, #ffffff 30%, rgba(255, 255, 255, 0.35) 50%, transparent 72%),
    radial-gradient(2px 2px at 92% 82%, #ffffff 28%, rgba(255, 255, 255, 0.45) 48%, transparent 70%),
    radial-gradient(1.5px 1.5px at 8% 48%, #ffffff 30%, rgba(255, 255, 255, 0.3) 50%, transparent 72%),
    radial-gradient(1.8px 1.8px at 52% 88%, #ffffff 28%, rgba(255, 255, 255, 0.4) 48%, transparent 72%),
    radial-gradient(1.4px 1.4px at 35% 8%, #ffffff 30%, rgba(255, 255, 255, 0.3) 50%, transparent 72%),
    radial-gradient(2px 2px at 70% 22%, #ffffff 25%, rgba(255, 255, 255, 0.4) 45%, transparent 70%),
    radial-gradient(1.6px 1.6px at 18% 90%, #ffffff 28%, rgba(255, 255, 255, 0.35) 48%, transparent 72%);
  background-size: 420px 420px;
  background-repeat: repeat;
  animation: webco-stars-shine 3.8s ease-in-out infinite alternate;
}

body::after {
  background-image:
    radial-gradient(ellipse 55% 35% at 88% 10%, rgba(250, 59, 30, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 8% 50%, rgba(250, 59, 30, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 45% 28% at 80% 82%, rgba(250, 59, 30, 0.06) 0%, transparent 58%),
    radial-gradient(2.2px 2.2px at 18% 62%, rgba(250, 59, 30, 0.55) 30%, rgba(250, 59, 30, 0.2) 50%, transparent 72%),
    radial-gradient(2px 2px at 68% 38%, #ffffff 28%, rgba(255, 255, 255, 0.45) 48%, transparent 70%),
    radial-gradient(1.6px 1.6px at 82% 68%, #ffffff 30%, rgba(255, 255, 255, 0.35) 50%, transparent 72%),
    radial-gradient(1.8px 1.8px at 40% 55%, #ffffff 25%, rgba(255, 255, 255, 0.4) 48%, transparent 70%),
    radial-gradient(2px 2px at 55% 15%, #ffffff 28%, rgba(255, 255, 255, 0.4) 46%, transparent 70%);
  background-size: auto, auto, auto, 640px 640px, 640px 640px, 640px 640px, 640px 640px, 640px 640px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, repeat, repeat, repeat;
  opacity: 0.85;
  animation: webco-stars-shine-alt 5.2s ease-in-out infinite alternate;
}

@keyframes webco-stars-shine {
  0% {
    opacity: 0.72;
    filter: brightness(0.92);
  }
  50% {
    opacity: 0.92;
    filter: brightness(1.08);
  }
  100% {
    opacity: 1;
    filter: brightness(1.18);
  }
}

@keyframes webco-stars-shine-alt {
  0% {
    opacity: 0.7;
    filter: brightness(1.05);
  }
  100% {
    opacity: 0.95;
    filter: brightness(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
    opacity: 0.95;
    filter: none;
  }
}

#wrapper,
main#wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ——— Page-wide orange atmosphere (theme symmetry) ——— */
#wrapper > header,
#wrapper > .section-hero-v1,
#wrapper > section,
#wrapper > .section-feature,
#wrapper > footer.tf-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#wrapper > header::before,
#wrapper > .section-hero-v1::before,
#wrapper > section::before,
#wrapper > .section-feature::before,
#wrapper > footer.tf-footer::before {
  content: "";
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
  background: radial-gradient(circle, rgba(250, 59, 30, 0.07) 0%, transparent 70%);
}

#wrapper > header::after,
#wrapper > .section-hero-v1::after,
#wrapper > section::after,
#wrapper > .section-feature::after,
#wrapper > footer.tf-footer::after {
  content: "";
  position: absolute;
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(16px);
  background: radial-gradient(circle, rgba(250, 59, 30, 0.04) 0%, transparent 72%);
}

/* Alternate glow sides so the page feels balanced */
#wrapper > header::before,
#wrapper > section:nth-of-type(odd)::before {
  top: -8%;
  right: -12%;
}

#wrapper > header::after,
#wrapper > section:nth-of-type(odd)::after {
  bottom: -12%;
  left: -10%;
}

#wrapper > .section-hero-v1::before,
#wrapper > section:nth-of-type(even)::before,
#wrapper > footer.tf-footer::before {
  top: -6%;
  left: -14%;
}

#wrapper > .section-hero-v1::after,
#wrapper > section:nth-of-type(even)::after,
#wrapper > footer.tf-footer::after {
  bottom: -10%;
  right: -8%;
}

/* Local section glows handled by page ambient */
.webco-why__glow {
  display: none !important;
}

section,
.section-hero-v1,
.section-selected-work,
.webco-services-showcase,
.section-feature,
.section-service-2,
.section-process,
.section-about-me,
.webco-about,
.webco-why,
.webco-leads,
.webco-projects,
.section-tech-stack,
.section-brand,
.section-award,
.section-testimonial,
.section-cta,
.tf-footer {
  background: transparent !important;
}

/* About — no background image */
.section-about-me .s-img-bg {
  display: none !important;
}

/* Let stars show through decorative section backgrounds */
.section-selected-work > .bg-img,
.section-service-2 .bg-image-list,
.section-cta > .bg-img,
.section-testimonial .bg-img-item {
  display: none !important;
}

/* Softer overlays so black space + orange ambient feel open */
.section-hero-v1 .overlay {
  background: rgba(0, 0, 0, 0.45) !important;
}

.section-hero-v1 .video-overlay,
.section-hero-v1 .video-overlay-2 {
  opacity: 0.55;
}

.section-selected-work .content-wrap-2::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%) !important;
}

.section-process .wg-process .bg-img img {
  opacity: 0.35;
}

header.tf-header.header-sticky {
  background-color: rgba(0, 0, 0, 0.82) !important;
  backdrop-filter: blur(10px);
}

/* Services dropdown — readable on dark theme */
.tf-header .menu-item.has-child .sub-menu {
  min-width: 240px;
  background-color: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  left: 0;
}

.tf-header .menu-item.has-child .sub-menu .item-link {
  display: block;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
}

.tf-header .menu-item.has-child .sub-menu .item-link:hover {
  color: #FA3B1E;
}

/* Header — desktop alignment (logo | nav | contact | menu) */
.tf-header .webco-header-row {
  align-items: center;
  flex-wrap: nowrap;
  --bs-gutter-x: 1.25rem;
}

.tf-header .logo-site {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.tf-header .logo-site .logo-img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
}

.tf-header .webco-header-logo {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.tf-header .webco-header-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.tf-header .webco-header-nav .box-navigation {
  width: 100%;
}

.tf-header .webco-header-nav .nav-menu-main {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
}

.tf-header .webco-header-nav .item-link {
  align-items: center;
  white-space: nowrap;
}

.tf-header .webco-header-contact {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  text-align: right;
}

.tf-header .webco-header-contact .header-contact {
  justify-items: end;
  gap: 2px;
}

.tf-header .webco-header-contact .header-contact a,
.tf-header .webco-header-contact .header-contact p {
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
}

.tf-header .webco-header-menu {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.tf-header .webco-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 0;
  white-space: nowrap;
  border: 0;
  background: transparent;
}

.tf-header .webco-menu-btn .icon {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .tf-header .webco-header-menu {
    margin-left: 0.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tf-header .webco-header-nav .nav-menu-main {
    gap: 6px 18px;
  }

  .tf-header .logo-site .logo-img {
    height: 40px;
    max-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .tf-header .webco-header-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }

  .tf-header .webco-header-logo {
    flex: 0 1 auto;
    max-width: calc(100% - 110px);
  }

  .tf-header .webco-header-menu {
    flex: 0 0 auto;
    width: auto !important;
    max-width: none;
    margin-left: auto;
  }

  .tf-header .logo-site .logo-img {
    height: 38px;
    max-width: 150px;
  }

  .tf-header .webco-menu-btn {
    font-size: 14px;
    gap: 8px;
  }

  .tf-header .webco-menu-btn .icon {
    font-size: 20px;
  }
}

.offcanvas-menu .offcanvas-content {
  background-color: rgba(0, 0, 0, 0.94) !important;
}

/* Offcanvas — CLOSE button always visible + clickable */
.offcanvas-menu .canvas_head {
  align-items: center;
  position: relative;
  z-index: 5;
}

.offcanvas-menu .canvas_head .logo-site .logo-img {
  height: 44px;
  max-width: 180px;
}

.offcanvas-menu .webco-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.offcanvas-menu .webco-close-btn .icon {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.offcanvas-menu .webco-close-btn span {
  display: inline-block;
  opacity: 1 !important;
  visibility: visible !important;
}

.offcanvas-menu .webco-close-btn:hover,
.offcanvas-menu .webco-close-btn:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

@media (max-width: 767.98px) {
  .offcanvas-menu .canvas_head .logo-site .logo-img {
    height: 38px;
    max-width: 150px;
  }

  .offcanvas-menu .webco-close-btn {
    font-size: 14px;
    padding: 10px 18px;
    gap: 8px;
  }

  .offcanvas-menu .webco-close-btn .icon {
    font-size: 16px;
  }
}

/* Light page-open transition */
.page-open-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.page-open-curtain.is-hidden {
  opacity: 0;
  visibility: hidden;
}

body.page-is-opening #wrapper {
  opacity: 1;
}

body.page-is-open .section-hero-v1 .effectFade {
  will-change: transform, opacity;
}

/* OUR EXPERTISE — logo marquee */
.webco-expertise-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.webco-expertise-section .mini-title {
  margin-bottom: 40px;
}

.webco-tech-marquee-wrap {
  margin-top: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(250, 59, 30, 0.1);
  border-bottom: 1px solid rgba(250, 59, 30, 0.1);
  background: linear-gradient(
    90deg,
    rgba(250, 59, 30, 0.03) 0%,
    transparent 18%,
    transparent 82%,
    rgba(250, 59, 30, 0.03) 100%
  );
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* Pure CSS infinite logo marquee — keep independent of GSAP effectFade */
.webco-logo-marquee {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.webco-logo-marquee__viewport {
  display: flex;
  width: max-content;
  animation: webco-logo-marquee-scroll 42s linear infinite !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.webco-logo-marquee:hover .webco-logo-marquee__viewport {
  animation-play-state: paused;
}

.webco-logo-marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

@keyframes webco-logo-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.webco-marquee-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 88px;
  height: 88px;
  min-width: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.webco-marquee-logo:hover {
  border-color: rgba(250, 59, 30, 0.45);
  background: rgba(250, 59, 30, 0.1);
  box-shadow: 0 0 24px rgba(250, 59, 30, 0.15);
  transform: translateY(-3px);
}

.webco-marquee-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(0.15) brightness(1.05);
}

.webco-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.webco-marquee-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.webco-marquee-item span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 575.98px) {
  .webco-marquee-logo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    padding: 14px;
  }

  .webco-marquee-logo img {
    max-width: 36px;
    max-height: 36px;
  }

  .webco-expertise-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .webco-logo-marquee__viewport {
    animation-duration: 32s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webco-logo-marquee__viewport {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }

  .webco-logo-marquee__track[aria-hidden="true"] {
    display: none;
  }
}

.webco-bg-music {
  display: none !important;
  pointer-events: none;
}

.webco-music-toggle {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 10050;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 24px rgba(0, 0, 0, 0.35);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.webco-music-toggle:hover {
  color: #ffffff;
  border-color: rgba(250, 59, 30, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(250, 59, 30, 0.12) inset,
    0 10px 28px rgba(0, 0, 0, 0.4);
}

.webco-music-toggle:focus-visible {
  outline: 2px solid rgba(250, 59, 30, 0.7);
  outline-offset: 3px;
}

.webco-music-toggle.is-playing {
  color: #ffffff;
  border-color: rgba(250, 59, 30, 0.55);
  background: rgba(250, 59, 30, 0.12);
  box-shadow:
    0 0 0 1px rgba(250, 59, 30, 0.18) inset,
    0 0 20px rgba(250, 59, 30, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.webco-music-toggle.is-playing::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  background: #FA3B1E;
  box-shadow: 0 0 8px rgba(250, 59, 30, 0.8);
}

.webco-music-toggle__icon {
  display: none;
  pointer-events: none;
}

.webco-music-toggle__icon--off {
  display: block;
}

.webco-music-toggle.is-playing .webco-music-toggle__icon--off {
  display: none;
}

.webco-music-toggle.is-playing .webco-music-toggle__icon--on {
  display: block;
}

@media (max-width: 575px) {
  .webco-music-toggle {
    left: 14px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }
}

/* Footer text marquee */
.webco-footer-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.webco-footer-marquee__viewport {
  display: flex;
  width: max-content;
  animation: webco-footer-marquee-scroll 28s linear infinite !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.webco-footer-marquee:hover .webco-footer-marquee__viewport {
  animation-play-state: paused;
}

.webco-footer-marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes webco-footer-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.webco-footer-marquee__text {
  display: block;
  flex: none;
  font-size: clamp(72px, 16vw, 220px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
  padding-right: clamp(2rem, 5vw, 4.5rem);
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.webco-footer-marquee__text:nth-child(even) {
  color: rgba(250, 59, 30, 0.75);
}

@media (min-width: 1200px) {
  .footer-bottom .img-agency.webco-footer-marquee {
    height: auto;
    min-height: 240px;
    align-items: center;
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webco-footer-marquee__viewport {
    animation: none !important;
  }
}


/* Our Services — auto-advance showcase (Selected Works layout) */
.webco-services-showcase .content-wrap-1 .row {
  align-items: stretch;
}

.webco-services-showcase .content-wrap-1 .col-left,
.webco-services-showcase .content-wrap-1 .col-right {
  margin-bottom: 28px;
  height: 100%;
}

.webco-services-showcase .webco-service-panel {
  padding: 28px 28px 24px;
  max-width: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04) 0%, rgba(250, 59, 30, 0.03) 100%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.webco-services-showcase .slick-current .webco-service-panel,
.webco-services-showcase .webco-service-panel:hover {
  border-color: rgba(250, 59, 30, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(250, 59, 30, 0.06);
}

.webco-services-showcase .content-wrap-2 {
  border-top: 1px solid rgba(250, 59, 30, 0.14);
  padding-top: 20px;
  margin-top: 8px;
}

.webco-services-showcase .content-wrap-2::before {
  display: none;
}

.webco-services-showcase .content-wrap-2 .col-right {
  transform: none !important;
}

.webco-services-showcase .webco-service-panel__desc {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
  line-height: 1.7;
}

.webco-services-showcase .webco-service-panel__list {
  margin-bottom: 20px;
}

.webco-services-showcase .webco-service-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.webco-services-showcase .slick-for .webco-service-panel {
  min-height: 320px;
}

.webco-services-showcase .webco-services-counter__current {
  display: inline-block;
  min-width: 2ch;
}

/* Kill template 3D nav transforms — clean vertical service titles */
.webco-services-showcase .webco-services-nav.slick-nav,
.webco-services-showcase .webco-services-nav {
  perspective: none;
  max-height: 340px;
}

.webco-services-showcase .webco-services-nav .slick-list {
  height: 340px !important;
}

.webco-services-showcase .webco-services-nav .slick-track {
  display: flex !important;
  flex-direction: column;
}

.webco-services-showcase .webco-services-nav .slick-slide {
  height: auto !important;
  opacity: 1;
  transform: none !important;
  transition: opacity 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.webco-services-showcase .webco-services-nav .slick-slide .text-slide {
  margin: 0;
  padding: 10px 0;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.28);
  transform: none !important;
}

.webco-services-showcase .webco-services-nav .slick-slide.slick-center .text-slide,
.webco-services-showcase .webco-services-nav .slick-slide.slick-current .text-slide {
  color: #ffffff;
}

.webco-services-showcase .webco-services-nav .slick-slide:not(.slick-center) .text-slide {
  color: rgba(255, 255, 255, 0.28);
}

.webco-services-showcase .group-btn-slider {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .webco-services-showcase .content-wrap-1 .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .webco-services-showcase .content-wrap-1 .col-md-8 {
    display: flex;
    align-items: stretch;
  }

  .webco-services-showcase .content-wrap-1 .col-right {
    width: 100%;
  }

  .webco-services-showcase .slick-for {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .webco-services-showcase .webco-service-panel {
    padding-top: 24px;
  }

  .webco-services-showcase .slick-for .webco-service-panel {
    min-height: auto;
  }

  .webco-services-showcase .webco-services-nav .slick-list {
    height: 220px !important;
  }

  .webco-services-showcase .webco-services-nav {
    max-height: 220px;
  }
}

/* ——— About Us (shares Why Choose mosaic styles) ——— */
.webco-about.webco-why {
  padding-top: 90px;
}

/* ——— Why Choose Us ——— */
.webco-why {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.webco-why__glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 59, 30, 0.14) 0%, transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.webco-why__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 64px;
  align-items: end;
  margin-bottom: 56px;
}

.webco-why__intro-left h2 {
  margin-bottom: 0;
  max-width: 14ch;
}

.webco-why__intro-right {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(250, 59, 30, 0.45);
}

.webco-why__quote-mark {
  position: absolute;
  top: -28px;
  left: 20px;
  font-size: 72px;
  line-height: 1;
  color: rgba(250, 59, 30, 0.35);
  font-weight: 600;
  pointer-events: none;
}

.webco-why__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.7;
  max-width: 420px;
}

.webco-why__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.webco-why-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.01) 55%, transparent 100%);
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.webco-why-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(250, 59, 30, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.webco-why-tile:hover {
  border-color: rgba(250, 59, 30, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(250, 59, 30, 0.08);
}

.webco-why-tile:hover::before {
  opacity: 1;
}

.webco-why-tile--hero {
  grid-row: 1 / span 2;
  min-height: 100%;
  justify-content: flex-end;
  padding: 36px 32px 32px;
  background:
    linear-gradient(165deg, rgba(250, 59, 30, 0.12) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.2) 100%);
  border-color: rgba(250, 59, 30, 0.22);
}

.webco-why-tile--hero .webco-why-tile__num {
  font-size: clamp(96px, 12vw, 148px);
  top: 8px;
  right: 8px;
}

.webco-why-tile--hero .webco-why-tile__title {
  font-size: clamp(26px, 3vw, 36px);
  max-width: 10ch;
}

.webco-why-tile--wide {
  grid-column: 2 / span 2;
  min-height: 200px;
}

.webco-why-tile--wide-inner,
.webco-why-tile--wide .webco-why-tile__wide-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.webco-why-tile--accent {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(200deg, rgba(255, 255, 255, 0.06) 0%, rgba(250, 59, 30, 0.06) 100%);
}

.webco-why-tile__num {
  position: absolute;
  top: 4px;
  right: 10px;
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transition: color 0.35s ease, transform 0.45s ease;
}

.webco-why-tile:hover .webco-why-tile__num {
  color: rgba(250, 59, 30, 0.18);
  transform: translate(-4px, 4px);
}

.webco-why-tile__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(250, 59, 30, 0.85);
  border: 1px solid rgba(250, 59, 30, 0.25);
  border-radius: 50%;
  background: rgba(250, 59, 30, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.webco-why-tile:hover .webco-why-tile__icon {
  background: rgba(250, 59, 30, 0.14);
  border-color: rgba(250, 59, 30, 0.5);
  transform: rotate(-8deg) scale(1.05);
}

.webco-why-tile__title {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: #fff;
}

.webco-why-tile__text {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.webco-why-tile__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.webco-why-tile:hover .webco-why-tile__tag {
  color: #fff;
  border-color: rgba(250, 59, 30, 0.45);
  background: rgba(250, 59, 30, 0.12);
}

@media (max-width: 991.98px) {
  .webco-why__intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .webco-why__intro-left h2 {
    max-width: none;
  }

  .webco-why__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .webco-why-tile--hero {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .webco-why-tile--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .webco-why {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .webco-why__mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .webco-why-tile,
  .webco-why-tile--hero {
    min-height: auto;
    padding: 24px 20px;
  }

  .webco-why-tile--wide .webco-why-tile__wide-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .webco-why__quote-mark {
    font-size: 56px;
    top: -18px;
  }
}

/* Why Choose Us — auto carousel */
.webco-why--carousel .webco-why-carousel {
  margin-left: -12px;
  margin-right: -12px;
}

.webco-why--carousel .swiper-why {
  overflow: visible;
  padding-bottom: 8px;
}

.webco-why--carousel .swiper-why .swiper-slide {
  height: auto;
}

.webco-why--carousel .webco-why-tile {
  height: 100%;
  min-height: 280px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(250, 59, 30, 0.04) 55%, transparent 100%);
}

.webco-why--carousel .swiper-slide-active .webco-why-tile {
  border-color: rgba(250, 59, 30, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(250, 59, 30, 0.08);
}

.webco-why--carousel .swiper-slide-active .webco-why-tile__num {
  color: rgba(250, 59, 30, 0.2);
}

.webco-why-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.webco-why-carousel__nav .nav-prev-swiper,
.webco-why-carousel__nav .nav-next-swiper {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.webco-why-carousel__nav .nav-prev-swiper:hover,
.webco-why-carousel__nav .nav-next-swiper:hover {
  color: #FA3B1E;
}

@media (max-width: 575.98px) {
  .webco-why--carousel .webco-why-tile {
    min-height: 260px;
  }
}

/* ——— Who Leads Us ——— */
.webco-leads {
  padding-top: 100px;
  padding-bottom: 100px;
}

.webco-leads__layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 56px 80px;
  align-items: center;
}

.webco-leads__visual {
  position: relative;
  justify-self: start;
  width: 100%;
  max-width: 380px;
}

.webco-leads__watermark {
  position: absolute;
  top: 50%;
  left: -8%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.webco-leads__portrait {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
}

.webco-leads__ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(250, 59, 30, 0.35);
  border-radius: 8px;
  transform: rotate(4deg);
  pointer-events: none;
  transition: transform 0.45s ease, border-color 0.35s ease;
}

.webco-leads__portrait:hover .webco-leads__ring {
  transform: rotate(0deg);
  border-color: rgba(250, 59, 30, 0.55);
}

.webco-leads__frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(250, 59, 30, 0.08);
}

.webco-leads__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.webco-leads__portrait:hover .webco-leads__frame img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.08);
}

.webco-leads__badge {
  position: absolute;
  right: -14px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.webco-leads__badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.webco-leads__badge strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #fa3b1e;
  font-weight: 700;
}

.webco-leads__content {
  max-width: 560px;
  padding-top: 8px;
}

.webco-leads__content .mini-title {
  margin-bottom: 12px;
}

.webco-leads__content h2 {
  margin-bottom: 10px;
}

.webco-leads__role {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.webco-leads__quote {
  position: relative;
  padding-left: 28px;
  margin-bottom: 28px;
  border-left: 1px solid rgba(250, 59, 30, 0.45);
}

.webco-leads__quote-mark {
  position: absolute;
  top: -18px;
  left: 18px;
  font-size: 56px;
  line-height: 1;
  color: rgba(250, 59, 30, 0.35);
  font-weight: 600;
  pointer-events: none;
}

.webco-leads__bio {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
  line-height: 1.75;
}

.webco-leads__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.webco-leads__chips li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.webco-leads__chips li:hover {
  border-color: rgba(250, 59, 30, 0.45);
  color: #fff;
}

.webco-leads__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 1200px) {
  .webco-leads__layout {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 64px 96px;
  }

  .webco-leads__portrait {
    max-width: 380px;
  }
}

@media (max-width: 991.98px) {
  .webco-leads__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .webco-leads__visual {
    justify-self: center;
  }

  .webco-leads__portrait {
    margin: 0 auto;
  }

  .webco-leads__watermark {
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .webco-leads__content {
    max-width: 560px;
    margin: 0 auto;
  }

  .webco-leads__quote {
    text-align: left;
  }

  .webco-leads__chips,
  .webco-leads__actions {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .webco-leads {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .webco-leads__portrait {
    max-width: 240px;
  }

  .webco-leads__badge {
    right: -8px;
    padding: 10px 12px;
  }
}

/* Footer map — desktop only under address */
.webco-footer-map {
  margin-top: 20px;
  max-width: 360px;
}

.webco-footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  filter: grayscale(0.35) contrast(1.05);
}

@media (max-width: 767.98px) {
  .webco-footer-map {
    display: none !important;
  }
}

/* ——— Projects Delivered ——— */
.webco-projects__stats {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(250, 59, 30, 0.1);
  background: transparent;
}

.webco-projects .wg-feature-v01 {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.webco-projects .wg-feature-v01:hover {
  border-color: rgba(250, 59, 30, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(250, 59, 30, 0.08);
}

.section-cta .form-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 36px 32px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, rgba(250, 59, 30, 0.025) 100%);
  box-shadow: none;
}

/* CTA logo — full mark, no crosshair crop */
.webco-cta-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.webco-cta-logo .logo-img--cta {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

.tf-footer .br-line {
  background: linear-gradient(90deg, transparent, rgba(250, 59, 30, 0.45), transparent) !important;
  height: 1px;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .section-cta .form-cta {
    padding: 24px 18px;
  }

  .webco-cta-logo .logo-img--cta {
    height: 44px;
    max-width: 160px;
  }
}

/* ——— Inner pages (.webco-page) — shared chrome content shell ——— */
.webco-page.pt-page {
  padding-top: 140px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  .webco-page.pt-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575.98px) {
  .webco-page.pt-page {
    padding-top: 108px;
    padding-bottom: 64px;
  }
}

.webco-page__hero {
  margin-bottom: 2.75rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.webco-page__breadcrumbs {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.webco-page__breadcrumbs a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.webco-page__breadcrumbs a:hover {
  color: #fa3b1e;
}

.webco-page__eyebrow {
  margin: 0 0 0.75rem;
  color: #fa3b1e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.webco-page__hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f5f5f5;
}

.webco-page__lead {
  max-width: 52ch;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.webco-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.webco-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .webco-page__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

.webco-page__content {
  min-width: 0;
}

.webco-page__content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f5f5f5;
}

.webco-page__content h2:first-child {
  margin-top: 0;
}

.webco-page__content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
  color: #f5f5f5;
}

.webco-page__content p,
.webco-page__content li {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.webco-page__content a {
  color: #fa3b1e;
  text-decoration: none;
}

.webco-page__content a:hover {
  text-decoration: underline;
}

.webco-page__content ul,
.webco-page__content ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.webco-page__content li {
  margin-bottom: 0.4rem;
}

.webco-page__content .webco-page__checklist {
  list-style: none;
  padding-left: 0;
}

.webco-page__content .webco-page__checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.webco-page__content .webco-page__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border: 1.5px solid #fa3b1e;
  border-radius: 1px;
}

.webco-page__faq {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}

.webco-page__faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.85rem 1rem;
}

.webco-page__faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #f5f5f5;
  list-style: none;
}

.webco-page__faq summary::-webkit-details-marker {
  display: none;
}

.webco-page__faq details[open] summary {
  margin-bottom: 0.5rem;
  color: #fa3b1e;
}

.webco-page__faq p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.webco-page__related {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.webco-page__related a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f5f5 !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.webco-page__related a:hover {
  border-color: rgba(250, 59, 30, 0.45);
  background: rgba(250, 59, 30, 0.08);
}

.webco-page__related a span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.webco-page__aside {
  display: grid;
  gap: 1rem;
}

.webco-page__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(250, 59, 30, 0.03) 100%);
  padding: 1.15rem 1.2rem;
}

.webco-page__card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fa3b1e;
}

.webco-page__card p,
.webco-page__card li {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.55;
}

.webco-page__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.webco-page__card li + li {
  margin-top: 0.4rem;
}

.webco-page__card a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.webco-page__card a:hover {
  color: #fa3b1e;
}

.webco-page__nap {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
}

.webco-page__nap strong {
  color: #f5f5f5;
}

.webco-page__map {
  display: block;
  width: 100%;
  min-height: 320px;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.webco-page--404 .webco-page__hero {
  border-bottom: none;
  max-width: 36rem;
}

