.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  display: grid;
  padding: 18px;
}

.gallery-grid figcaption span {
  color: var(--blue);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.empty-gallery {
  max-width: 780px;
}

.warranty {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-inline: 48px;
}

.warranty::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  background:
    radial-gradient(circle at 66% 36%, rgba(96, 220, 255, 0.78) 0 10%, transparent 34%),
    radial-gradient(circle at 82% 64%, rgba(0, 139, 205, 0.72) 0 12%, transparent 38%),
    conic-gradient(from 30deg, transparent, rgba(57, 196, 255, 0.48), transparent 42%);
  filter: blur(18px);
  opacity: 0.78;
  transform-origin: center;
  animation: warranty-flow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.warranty-shader {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.warranty-content {
  position: relative;
  z-index: 1;
}

.warranty-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 92%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 91, 154, 0.32));
}

.warranty-mark {
  border-color: rgba(255, 255, 255, 0.98);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.17)),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42), transparent 46%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.88),
    inset 0 -20px 48px rgba(255, 255, 255, 0.1),
    0 18px 55px rgba(1, 16, 26, 0.2),
    0 0 32px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

@keyframes warranty-flow {
  0% {
    transform: translate3d(-7%, -4%, 0) rotate(-8deg) scale(1);
  }

  50% {
    transform: translate3d(8%, 5%, 0) rotate(7deg) scale(1.08);
  }

  100% {
    transform: translate3d(-2%, 9%, 0) rotate(16deg) scale(1.14);
  }
}

.site-header {
  height: 160px;
  overflow: visible;
}

.brand img {
  width: 192px;
  height: 192px;
  transform: translateY(8px);
  position: relative;
  z-index: 2;
}

.brand span {
  font-size: 1.65rem;
  margin-left: 4px;
}

.hero-stage {
  padding-top: 0;
}

.hero {
  width: 100%;
  height: calc(100vh - 160px);
  height: calc(100dvh - 160px);
  min-height: 0;
  margin: 0 auto;
  align-items: flex-start;
  border: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 4, 6, 0.72), rgba(2, 4, 6, 0.18)),
    var(--hero-poster);
  background-position: center;
  background-size: cover;
}

.hero-content {
  margin: 35px auto 0;
}

.hero-content h1 {
  font-size: clamp(2.8rem, min(9vw, 12dvh), 8rem);
}

.hero-content .button-row {
  margin-top: clamp(12px, 3dvh, 30px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(320px, 420px) auto;
  align-items: start;
}

.footer-details p {
  margin-block: 10px;
}

.footer-map {
  display: grid;
  gap: 12px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 1px solid var(--line);
  filter: grayscale(0.2) contrast(1.04);
}

.footer-map a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-legal {
  align-self: end;
}

.site-header nav .button-small {
  padding: 13px 22px !important;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.trust-strip {
  color: #fff;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.trust-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: #fff;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.22));
}

.tint-card-grid .service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(190, 225, 242, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(35, 52, 63, 0.72), rgba(7, 12, 16, 0.86)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.13), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 22px 60px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.tint-card-grid .service-card > * {
  position: relative;
  z-index: 2;
}

.service-card-title {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 90px;
  margin-bottom: 18px;
}

.service-card-title img {
  display: block;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(184, 236, 255, 0.28);
  border-radius: 16px;
  object-fit: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(57, 196, 255, 0.08);
}

.service-card-title h3 {
  margin: 0;
}

.coating-feature-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-left: 16px;
}

.coating-feature-list li::before {
  content: none;
}

.coating-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--blue);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(57, 196, 255, 0.26));
}

.tint-card-grid .service-card.featured {
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 50px rgba(57, 196, 255, 0.12),
    0 24px 65px rgba(0, 0, 0, 0.32);
}

.tint-card-grid .service-card.featured::before {
  content: "";
  position: absolute;
  inset: -70%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0 24%,
    rgba(57, 196, 255, 0.24) 34%,
    #39c4ff 45%,
    #b8ecff 50%,
    #39c4ff 55%,
    rgba(57, 196, 255, 0.24) 66%,
    transparent 76% 100%
  );
  transform: rotate(0deg);
}

.tint-card-grid .service-card.featured.edge-active::before {
  animation: tint-edge-orbit 4.5s linear infinite;
}

.tint-card-grid .service-card.featured::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 21px;
  background:
    linear-gradient(145deg, rgba(30, 50, 63, 0.95), rgba(6, 12, 16, 0.96)),
    radial-gradient(circle at 18% 0%, rgba(57, 196, 255, 0.15), transparent 42%);
  pointer-events: none;
}

@keyframes tint-edge-orbit {
  to {
    transform: rotate(360deg);
  }
}

.tint-comparison {
  padding-top: 30px;
}

.tint-comparison-heading {
  margin-bottom: 34px;
}

.tint-comparison-shell {
  --squeegee-position: 6%;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.windshield-wrap {
  position: relative;
  min-width: 0;
}

.windshield {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(184, 236, 255, 0.38);
  border-radius: 60px 60px 28px 28px / 32px 32px 20px 20px;
  background:
    linear-gradient(140deg, rgba(85, 141, 168, 0.3), rgba(5, 12, 17, 0.94) 65%),
    #071014;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -34px 70px rgba(0, 0, 0, 0.46),
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.windshield::before,
.windshield::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.windshield::before {
  inset: 10px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 52px 52px 22px 22px / 26px 26px 16px 16px;
}

.windshield::after {
  left: 5%;
  right: 5%;
  bottom: 18px;
  z-index: 4;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(57, 196, 255, 0.46), transparent);
  filter: blur(1px);
}

.windshield-reflection,
.windshield-film,
.windshield-reveal {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.windshield-reflection {
  z-index: 1;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(255, 255, 255, 0.13) 19% 22%, transparent 23% 100%),
    radial-gradient(ellipse at 72% 4%, rgba(159, 224, 255, 0.2), transparent 36%),
    radial-gradient(ellipse at 18% 90%, rgba(57, 196, 255, 0.1), transparent 38%);
}

.windshield-film {
  z-index: 2;
  background: rgba(3, 9, 13, 0.58);
  transition: background-color 360ms ease;
}

.tint-comparison-shell[data-active-tier="0"] .windshield-film {
  background: rgba(4, 25, 39, 0.36);
}

.tint-comparison-shell[data-active-tier="1"] .windshield-film {
  background: rgba(9, 13, 17, 0.48);
}

.tint-comparison-shell[data-active-tier="2"] .windshield-film {
  background: rgba(18, 23, 28, 0.6);
}

.windshield-reveal {
  right: auto;
  z-index: 3;
  width: var(--squeegee-position);
  border-right: 2px solid rgba(184, 236, 255, 0.76);
  background:
    linear-gradient(115deg, rgba(57, 196, 255, 0.16), transparent 45%),
    rgba(119, 205, 242, 0.08);
  box-shadow: 12px 0 34px rgba(57, 196, 255, 0.12);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.windshield-segments {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
}

.windshield-segment {
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 28px 20px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.44);
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    text-shadow 220ms ease;
}

.windshield-segment:last-child {
  border-right: 0;
}

.windshield-segment small {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.windshield-segment strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.windshield-segment.active {
  color: #fff;
  background: linear-gradient(0deg, rgba(57, 196, 255, 0.1), transparent 58%);
  text-shadow: 0 0 22px rgba(57, 196, 255, 0.3);
}

.squeegee-handle {
  position: absolute;
  top: 42%;
  left: var(--squeegee-position);
  z-index: 9;
  width: 78px;
  transform: translate(-50%, -50%) rotate(7deg);
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.44));
  pointer-events: none;
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.squeegee-handle svg {
  display: block;
  width: 100%;
  height: auto;
}

.squeegee-grip {
  fill: #c8d5dc;
  stroke: #fff;
  stroke-width: 2;
}

.squeegee-neck {
  fill: #138fc8;
  stroke: #83ddff;
  stroke-width: 2;
}

.squeegee-blade {
  fill: #eef8fc;
  stroke: #fff;
  stroke-width: 2;
}

.squeegee-edge {
  fill: #39c4ff;
  stroke: #b8ecff;
  stroke-width: 2;
}

.squeegee-detail {
  stroke: #5e707a;
  stroke-width: 2;
  stroke-linecap: round;
}

.tint-squeegee-input {
  position: absolute;
  top: 0;
  right: 6%;
  bottom: 0;
  left: 6%;
  z-index: 12;
  width: 88%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0.001;
  touch-action: pan-y;
}

.windshield-wrap:has(.tint-squeegee-input:focus-visible) .windshield {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.squeegee-prompt {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.tint-comparison-shell:not(.is-prompting) .squeegee-prompt {
  opacity: 0;
}

.squeegee-prompt svg {
  width: 74px;
  color: var(--blue);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tint-comparison-shell.is-prompting.prompt-visible .squeegee-handle {
  animation: squeegee-invite 1.8s ease-in-out infinite;
}

@keyframes squeegee-invite {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(7deg);
  }

  50% {
    transform: translate(calc(-50% + 12px), -50%) rotate(10deg);
  }
}

.tint-tier-details {
  min-width: 0;
}

.tint-tier-panel {
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(184, 236, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(29, 47, 58, 0.88), rgba(7, 12, 16, 0.96)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 20px 56px rgba(0, 0, 0, 0.26);
}

.tint-tier-panel[hidden] {
  display: none;
}

.tint-tier-intro {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tint-tier-intro img {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(184, 236, 255, 0.3);
  border-radius: 17px;
  object-fit: cover;
}

.tint-tier-intro span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tint-tier-intro h3 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.tint-tier-panel > p {
  margin-bottom: 18px;
}

.tint-tier-panel ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #d5dde2;
}

.tint-tier-panel li {
  margin-block: 8px;
}

.tint-tier-panel > a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.tint-simulation-note {
  margin: 14px 0 0;
  color: #7f8d96;
  font-size: 0.72rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #071014;
}

.cta-lightning {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.reviews-intro {
  position: relative;
  margin-bottom: 78px;
}

.reviews {
  overflow: clip;
}

.reviews-intro .section-heading {
  margin-bottom: 0;
}

.review-arrow-anchor {
  position: relative;
  display: inline-block;
}

.review-arrow {
  position: absolute;
  top: calc(72% - 23px);
  left: calc(56% + 25px);
  width: 270px;
  height: 145px;
  overflow: visible;
  z-index: 5;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.38));
  animation: review-arrow-float 2.8s ease-in-out infinite;
  pointer-events: none;
}

.reviews .stars {
  color: #ffd54a;
}

.review-arrow-desktop,
.review-arrow-mobile {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
}

.review-arrow-mobile {
  display: none;
}

@keyframes review-arrow-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-3px, 4px, 0);
  }
}

:where(a, button, h1) {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  h1:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 24px rgba(57, 196, 255, 0.24);
  }

  a:not(.brand):not(.button):hover {
    color: var(--blue);
    transform: translateY(-1px);
  }

  .button:hover,
  button:hover {
    transform: translateY(-2px);
    border-color: #8bddff;
    background-color: #77d6ff;
    box-shadow: 0 10px 28px rgba(57, 196, 255, 0.2);
  }

  .button-ghost:hover {
    color: var(--text);
    background-color: rgba(57, 196, 255, 0.14);
  }

  .trust-item:hover {
    color: #fff;
    filter: brightness(1.12);
    transform: translateY(-1px);
  }
}

@media (max-width: 1050px) {
  .site-header {
    height: 104px;
  }

  .brand img {
    width: 124px;
    height: 124px;
    transform: translateY(6px);
  }

  .brand span {
    font-size: 1.15rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    padding: 24px;
    background: #06090b;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .hero {
    height: calc(100vh - 104px);
    height: calc(100dvh - 104px);
  }

  .tint-comparison-shell {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  }

  .windshield {
    min-height: 350px;
  }

  .windshield-segment {
    padding-inline: 14px;
  }

  .tint-tier-panel {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    height: 104px;
  }

  .brand img {
    width: 124px;
    height: 124px;
    transform: translateY(6px);
  }

  .brand span {
    font-size: 1.15rem;
  }

  .site-header nav {
    top: 104px;
  }

  .hero {
    width: 100%;
    height: calc(100vh - 104px);
    height: calc(100dvh - 104px);
    min-height: 0;
  }

  .hero-stage {
    padding-top: 0;
  }

  .hero-content {
    margin: 35px auto 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .tint-comparison-shell {
    grid-template-columns: 1fr;
  }

  .windshield {
    min-height: 310px;
    border-radius: 40px 40px 22px 22px / 24px 24px 16px 16px;
  }

  .windshield-segment {
    padding: 22px 9px 34px;
  }

  .windshield-segment strong {
    font-size: clamp(1.15rem, 6vw, 1.75rem);
  }

  .squeegee-handle {
    width: 66px;
  }

  .squeegee-prompt {
    top: 18px;
    left: 18px;
    gap: 8px;
    font-size: 0.64rem;
  }

  .squeegee-prompt svg {
    width: 52px;
  }

  .tint-tier-panel {
    padding: 24px;
  }

  .service-card-title {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 78px;
  }

  .service-card-title img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .footer-legal {
    grid-column: auto;
    align-self: start;
  }

  .warranty {
    padding-inline: 24px;
  }

  .warranty::before {
    background:
      radial-gradient(circle at 50% 76%, rgba(96, 220, 255, 0.78) 0 10%, transparent 34%),
      radial-gradient(circle at 68% 86%, rgba(0, 139, 205, 0.72) 0 12%, transparent 38%),
      conic-gradient(from 30deg, transparent, rgba(57, 196, 255, 0.48), transparent 42%);
  }

  .reviews-intro {
    margin-bottom: 94px;
  }

  .review-arrow {
    top: calc(72% - 23px);
    left: calc(48% + 25px);
    width: 190px;
    height: 120px;
  }

  .review-arrow-desktop {
    display: none;
  }

  .review-arrow-mobile {
    display: block;
  }
}

@media (max-height: 600px) {
  .hero-content {
    margin-top: clamp(12px, 4dvh, 35px);
  }

  .hero-content h1 {
    margin-bottom: clamp(8px, 2dvh, 16px);
    font-size: clamp(2.35rem, min(8vw, 12dvh), 5rem);
  }

  .hero-content > p:not(.eyebrow) {
    margin-block: 0;
    font-size: clamp(0.88rem, 2.5dvh, 1.05rem);
    line-height: 1.45;
  }

  .hero-content .button-row {
    margin-top: clamp(10px, 2.5dvh, 18px);
  }

  .hero-content .button {
    padding-block: 10px;
  }
}

@media (max-width: 850px) and (max-height: 600px) {
  .hero-credit {
    right: 10px;
    bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(a, button, h1) {
    transition: none;
  }

  .warranty::before {
    animation: none;
  }

  .trust-item {
    transition: none;
  }

  .review-arrow {
    animation: none;
  }

  .windshield-film,
  .windshield-reveal,
  .squeegee-handle {
    transition: none;
  }

  .tint-comparison-shell.is-prompting.prompt-visible .squeegee-handle {
    animation: none;
  }

  .tint-card-grid .service-card {
    transition: none;
  }

  .tint-card-grid .service-card.featured.edge-active::before {
    animation: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .tint-card-grid .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 236, 255, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 26px 70px rgba(0, 0, 0, 0.34),
      0 0 34px rgba(57, 196, 255, 0.08);
  }

  .tint-card-grid .service-card.featured:hover {
    border-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tint-card-grid .service-card:hover {
    transform: none;
  }
}
