body {
  font-family: "Work Sans", sans-serif;
}

.social-icon-card {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(130, 147, 181, 0.2);
  border-radius: 0.9rem;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(38, 58, 91, 0.96), rgba(16, 38, 70, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 18px rgba(0, 7, 22, 0.22);
  cursor: default;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.social-icon-card img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.social-icon-card--link {
  cursor: pointer;
  text-decoration: none;
}

.social-icon-card--facebook img {
  width: 0.85rem;
  height: 1.5rem;
}

.social-icon-card:hover,
.social-icon-card:focus-visible {
  border-color: rgba(255, 222, 165, 0.58);
  background: linear-gradient(145deg, rgba(48, 72, 109, 0.98), rgba(22, 48, 84, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 24px rgba(0, 7, 22, 0.3), 0 0 0 3px rgba(233, 193, 118, 0.1);
  transform: translateY(-3px);
}

.offer-primary-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 280ms ease, background-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.service-icon-mark,
.service-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.service-icon-mark {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(119, 90, 25, 0.35);
  border-radius: 0.75rem;
  background: rgba(255, 222, 165, 0.28);
}

.service-check {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  border-radius: 999px;
  background: rgba(255, 222, 165, 0.44);
  font-size: 0.8rem;
}

.offer-primary-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -35%;
  width: 24%;
  height: 190%;
  background: rgba(255, 255, 255, 0.46);
  transform: translateX(-220%) rotate(18deg);
  transition: transform 650ms ease;
}

.offer-primary-cta:hover,
.offer-primary-cta:focus-visible {
  color: #261900;
  background-color: #ffdea5;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(119, 90, 25, 0.28), 0 0 0 4px rgba(255, 222, 165, 0.22);
}

.offer-primary-cta:hover::after,
.offer-primary-cta:focus-visible::after {
  transform: translateX(700%) rotate(18deg);
}

.offer-primary-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.home-offer-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(115deg, #031632 0%, #08264a 62%, #0b3159 100%);
  border: 1px solid rgba(233, 193, 118, 0.62);
  box-shadow: 0 8px 20px rgba(3, 22, 50, 0.18);
  transition: color 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease, background-position 420ms ease;
  background-size: 160% 100%;
  background-position: 0% 50%;
}

.home-offer-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -35%;
  width: 22%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 222, 165, 0.62), transparent);
  transform: translateX(-220%) rotate(18deg);
  transition: transform 650ms ease;
}

.home-offer-cta:hover,
.home-offer-cta:focus-visible {
  color: #ffdea5;
  border-color: #ffdea5;
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(3, 22, 50, 0.28), 0 0 0 4px rgba(233, 193, 118, 0.14);
}

.home-offer-cta:hover::after,
.home-offer-cta:focus-visible::after {
  transform: translateX(720%) rotate(18deg);
}

.home-offer-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.startup-promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 20%, rgba(233, 193, 118, 0.2), transparent 34%),
    linear-gradient(115deg, #031632 0%, #08264a 58%, #0b3159 100%);
  border: 1px solid rgba(233, 193, 118, 0.34);
  box-shadow: 0 16px 38px rgba(3, 22, 50, 0.16);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.startup-promo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e9c176 20%, #ffdea5 50%, #e9c176 80%, transparent);
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 420ms ease;
}

.startup-promo:hover,
.startup-promo:focus-within {
  border-color: rgba(255, 222, 165, 0.68);
  box-shadow: 0 20px 44px rgba(3, 22, 50, 0.22), 0 0 0 4px rgba(233, 193, 118, 0.08);
  transform: translateY(-4px);
}

.startup-promo:hover::after,
.startup-promo:focus-within::after {
  transform: scaleX(1);
}

.startup-promo__icon {
  width: 64px;
  height: 64px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffdea5;
  background: rgba(233, 193, 118, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 222, 165, 0.24);
  font-size: 34px !important;
  transition: color 300ms ease, background-color 300ms ease, box-shadow 300ms ease, transform 380ms cubic-bezier(.2,.8,.2,1);
}

.startup-promo:hover .startup-promo__icon,
.startup-promo:focus-within .startup-promo__icon {
  color: #261900;
  background: #ffdea5;
  box-shadow: 0 10px 24px rgba(233, 193, 118, 0.26);
  transform: rotate(-5deg) scale(1.08);
}

.startup-promo__accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 0.55em 1.35em 0.5em;
  border: 2px solid rgba(255, 244, 215, 0.92);
  border-radius: 999px;
  color: #241700;
  background: linear-gradient(135deg, #fff0cb 0%, #ffdea5 48%, #e9c176 100%);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(255, 222, 165, 0), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform-origin: center;
  animation: startup-gratis-pulse 3.6s cubic-bezier(.2,.8,.2,1) infinite;
}

.startup-promo__accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  transform: skewX(-18deg) translateX(0);
  animation: startup-gratis-shimmer 3.6s ease-in-out infinite;
}

.startup-promo__accent:focus-visible {
  outline: 3px solid #fffdf5;
  outline-offset: 4px;
}

@keyframes startup-gratis-pulse {
  0%, 58%, 100% { transform: translateY(0) scale(1) rotate(0); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(255, 222, 165, 0), inset 0 1px 0 rgba(255, 255, 255, 0.72); }
  68% { transform: translateY(-5px) scale(1.08) rotate(-1deg); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), 0 0 0 9px rgba(255, 222, 165, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.88); }
  76% { transform: translateY(-3px) scale(1.05) rotate(1deg); }
  86% { transform: translateY(0) scale(1.02) rotate(0); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 222, 165, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78); }
}

@keyframes startup-gratis-shimmer {
  0%, 55% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  62% { opacity: 1; }
  82%, 100% { transform: skewX(-18deg) translateX(660%); opacity: 0; }
}

.client-panel-button {
  font-size: 14px !important;
}

/* Responsywny nagłówek: czytelniejsze logo i wygodny przycisk menu. */
#main-header a[aria-label="Tax & Co — strona główna"] {
  width: min(220px, calc(100vw - 100px)) !important;
  height: auto !important;
  min-height: 64px;
}

#main-header a[aria-label="Tax & Co — strona główna"] > img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left center;
}

#main-header > div > button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.document-toc {
  max-width: 56rem;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #dfe1e5;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
}

.document-toc h2 {
  margin: 0 0 0.85rem;
  color: #031632;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

.document-toc ol {
  columns: 2;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.25rem;
}

.document-toc li {
  break-inside: avoid;
  margin: 0 0 0.45rem;
}

.document-toc a {
  color: #5d4201;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-decoration: none;
}

.document-toc a:hover,
.document-toc a:focus-visible {
  color: #031632;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Monogram zaczyna się na tej samej wysokości co nagłówki kolumn stopki. */
footer a[aria-label="Tax & Co — strona główna"] {
  height: 64px !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

footer a[aria-label="Tax & Co — strona główna"] > img {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px;
  object-fit: contain;
}

footer a[aria-label="Tax & Co — strona główna"] + [aria-label="Portale społecznościowe"] {
  margin-top: 1rem;
}

.pricing-employee-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.5rem;
  row-gap: 0.15rem;
}

.pricing-employee-price__suffix {
  white-space: nowrap;
}

.form-privacy-note {
  line-height: 1.55;
}

.cookie-banner[hidden],
.cookie-modal[hidden],
.external-media-placeholder[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 760px;
  margin-inline: auto;
  padding: 1.25rem;
  border: 1px solid rgba(233, 193, 118, 0.5);
  border-radius: 0.75rem;
  color: #ffffff;
  background: #031632;
  box-shadow: 0 18px 48px rgba(3, 22, 50, 0.32);
}

.cookie-banner h2,
.cookie-dialog h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.cookie-banner a,
.cookie-dialog a {
  color: #ffdea5;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-button {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font: 600 0.875rem/1.2 "Work Sans", sans-serif;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-2px);
}

.cookie-button:focus-visible,
.cookie-settings-link:focus-visible,
.external-media-placeholder a:focus-visible,
.external-media-enable:focus-visible {
  outline: 3px solid #ffdea5;
  outline-offset: 3px;
}

.cookie-button--accept {
  color: #261900;
  background: #ffdea5;
  border-color: #ffdea5;
}

.cookie-button--reject {
  color: #ffffff;
  background: #374765;
  border-color: #b6c7eb;
}

.cookie-button--settings {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.cookie-modal {
  position: fixed;
  z-index: 1250;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 22, 50, 0.72);
}

.cookie-dialog {
  width: min(100%, 620px);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: 1.5rem;
  border: 1px solid rgba(119, 90, 25, 0.32);
  border-radius: 0.75rem;
  color: #191c1e;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(3, 22, 50, 0.35);
}

.cookie-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-dialog__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid #c5c6ce;
  border-radius: 999px;
  color: #031632;
  background: #ffffff;
  cursor: pointer;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #dfe1e5;
  border-radius: 0.5rem;
  background: #f7f9fb;
}

.cookie-category h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-category p,
.cookie-dialog__intro {
  margin: 0;
  color: #44474d;
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-category__status {
  flex: 0 0 auto;
  color: #5d4201;
  font-size: 0.8125rem;
  font-weight: 700;
}

.cookie-switch {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  margin-top: 0.15rem;
  accent-color: #775a19;
}

.cookie-settings-link {
  width: fit-content;
  padding: 0;
  border: 0;
  color: #8293b5;
  background: transparent;
  font: 400 0.875rem/1.25rem "Work Sans", sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.cookie-settings-link:hover {
  color: #e9c176;
}

.external-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #191c1e;
  background: linear-gradient(145deg, #f2f4f6, #e6e8ea);
  text-align: center;
}

.external-media-placeholder__icon {
  margin-bottom: 0.5rem;
  color: #775a19;
  font-size: 2.5rem !important;
}

.external-media-placeholder h3 {
  margin: 0 0 0.4rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.external-media-placeholder p {
  max-width: 34rem;
  margin: 0;
  color: #44474d;
  font-size: 0.875rem;
  line-height: 1.5;
}

.external-media-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.external-media-enable,
.external-media-placeholder a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 0.35rem;
  font: 600 0.875rem/1.2 "Work Sans", sans-serif;
  cursor: pointer;
}

.external-media-enable {
  border: 1px solid #775a19;
  color: #ffffff;
  background: #775a19;
}

.external-media-placeholder a {
  border: 1px solid #75777e;
  color: #031632;
  background: #ffffff;
  text-decoration: none;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem;
  }

  .cookie-actions,
  .external-media-placeholder__actions {
    flex-direction: column;
  }

  .cookie-button,
  .external-media-enable,
  .external-media-placeholder a {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    background-attachment: scroll !important;
  }

  .document-toc {
    margin-bottom: 2.25rem;
    padding: 1rem 1.1rem;
  }

  .document-toc ol {
    columns: 1;
  }
}

.footer-hours {
  transition: color 220ms ease, transform 220ms ease;
}

.footer-hours .material-symbols-outlined {
  transition: color 220ms ease, filter 220ms ease, transform 220ms ease;
}

.footer-hours:hover,
.footer-hours:focus-within {
  color: #e9c176;
  transform: translateX(3px);
}

.footer-hours:hover .material-symbols-outlined,
.footer-hours:focus-within .material-symbols-outlined {
  color: #ffdea5;
  filter: drop-shadow(0 0 6px rgba(255, 222, 165, 0.55));
  transform: scale(1.08);
}

.value-card {
  position: relative;
  overflow: hidden;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease, background-color 320ms ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, #e9c176 18%, #ffdea5 50%, #e9c176 82%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 420ms ease;
}

.value-card:hover,
.value-card:focus-within {
  border-color: rgba(119, 90, 25, 0.55);
  background-color: #fffdf8;
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(3, 22, 50, 0.12), 0 0 0 1px rgba(233, 193, 118, 0.16);
}

.value-card:hover::before,
.value-card:focus-within::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(233, 193, 118, 0.14);
  box-shadow: inset 0 0 0 1px rgba(119, 90, 25, 0.14);
  transition: color 320ms ease, background-color 320ms ease, box-shadow 320ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}

.value-card:hover .value-icon,
.value-card:focus-within .value-icon {
  color: #261900;
  background: #ffdea5;
  box-shadow: 0 9px 20px rgba(119, 90, 25, 0.22);
  transform: rotate(-6deg) scale(1.1);
}

.value-title {
  transition: color 260ms ease, transform 260ms ease;
}

.value-card:hover .value-title,
.value-card:focus-within .value-title {
  color: #775a19;
  transform: translateY(-2px);
}

.pricing-card {
  position: relative;
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within {
  border-color: rgba(119, 90, 25, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 15px 34px rgba(3, 22, 50, 0.1);
}

.pricing-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.pricing-card-link:focus-visible {
  outline: none;
}

.pricing-card:has(.pricing-card-link:focus-visible) {
  outline: 3px solid #e9c176;
  outline-offset: 4px;
}

.pricing-animated-cta {
  background-image: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.52) 49%, transparent 56%);
  background-size: 300% 100%;
  background-position: 100% 50%;
  transition: color 280ms ease, background-color 280ms ease, background-position 720ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.pricing-card:hover .pricing-animated-cta,
.pricing-card:focus-within .pricing-animated-cta {
  color: #261900;
  background-color: #ffdea5;
  background-position: 0% 50%;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(119, 90, 25, 0.28), 0 0 0 4px rgba(255, 222, 165, 0.22);
}

.pricing-animated-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.remote-service-visual {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 9.5rem;
  height: 9.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 193, 118, 0.28);
  border-radius: 1.5rem;
  color: #a77c1d;
  background: radial-gradient(circle at 50% 42%, rgba(255, 222, 165, 0.24), rgba(233, 193, 118, 0.06) 62%, transparent 72%);
  box-shadow: inset 0 0 28px rgba(233, 193, 118, 0.08), 0 12px 30px rgba(3, 22, 50, 0.06);
  opacity: 0.58;
  transform: translateY(-50%);
  transition: opacity 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
  pointer-events: none;
}

.remote-service-visual::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(233, 193, 118, 0.24);
  border-radius: 1.1rem;
  animation: remote-service-halo 3.8s ease-in-out infinite;
}

.remote-service-visual .material-symbols-outlined {
  position: relative;
  z-index: 1;
  font-size: 6.25rem !important;
  animation: remote-service-float 3.8s cubic-bezier(.2,.8,.2,1) infinite;
}

.bento-card:hover .remote-service-visual,
.bento-card:focus-within .remote-service-visual {
  opacity: 0.82;
  border-color: rgba(233, 193, 118, 0.52);
  box-shadow: inset 0 0 30px rgba(233, 193, 118, 0.12), 0 14px 34px rgba(119, 90, 25, 0.12);
}

@keyframes remote-service-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  48% { transform: translateY(-7px) rotate(-3deg); }
  66% { transform: translateY(-3px) rotate(2deg); }
}

@keyframes remote-service-halo {
  0%, 100% { transform: scale(0.94); opacity: 0.28; }
  50% { transform: scale(1.04); opacity: 0.72; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-primary-cta,
  .home-offer-cta,
  .startup-promo,
  .startup-promo::after,
  .startup-promo__icon,
  .startup-promo__accent,
  .footer-hours,
  .footer-hours .material-symbols-outlined,
  .value-card,
  .value-card::before,
  .value-icon,
  .value-title,
  .pricing-card,
  .social-icon-card {
    transition: none;
  }

  .pricing-animated-cta {
    transition: none;
  }

  .remote-service-visual,
  .remote-service-visual::before,
  .remote-service-visual .material-symbols-outlined {
    animation: none;
    transition: none;
  }

  .offer-primary-cta::after {
    display: none;
  }

  .home-offer-cta::after {
    display: none;
  }

  .offer-primary-cta:hover,
  .offer-primary-cta:focus-visible,
  .home-offer-cta:hover,
  .home-offer-cta:focus-visible,
  .startup-promo:hover,
  .startup-promo:focus-within,
  .startup-promo:hover .startup-promo__icon,
  .startup-promo:focus-within .startup-promo__icon,
  .footer-hours:hover,
  .value-card:hover,
  .value-card:focus-within,
  .value-card:hover .value-icon,
  .value-card:focus-within .value-icon,
  .pricing-card:hover,
  .pricing-card:focus-within,
  .social-icon-card:hover,
  .social-icon-card:focus-visible {
    transform: none;
  }

  .pricing-card:hover .pricing-animated-cta,
  .pricing-card:focus-within .pricing-animated-cta {
    transform: none;
  }

  .startup-promo__accent {
    animation: none;
  }

  .startup-promo__accent::after {
    display: none;
  }
}
