/* =========================================================================
   PAGE: HOME
   ========================================================================= */

/* ---- Home Page Frame ---- */
main {
  position: relative;
}

@media (min-width: 1024px) {
  main::before,
  main::after {
    content: '';
    position: absolute;
    top: 68px;
    bottom: 0;
    z-index: 900;
    width: 1px;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom, #cacaca 0 4px, transparent 4px 8px);
  }

  main::before {
    left: max(60px, calc((100% - 1440px) / 2 + 60px));
  }

  main::after {
    top: 68px;
    right: max(60px, calc((100% - 1440px) / 2 + 60px));
  }
}

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

#home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #f5f5f5;
  overflow: hidden;
}

#home-hero .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(167.28deg, rgba(246, 246, 246, 0) 2.12%, rgba(246, 246, 246, 0.3) 35.29%, rgba(246, 246, 246, 0.6) 88.36%);
  pointer-events: none;
}

#home-hero .home-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1223px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
}

#home-hero .home-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

#home-hero .hero-content {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}

#home-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #313131;
  font-family: var(--font-geist, 'Geist', sans-serif);
  font-size: 16px;
  font-weight: var(--fw-normal);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
}

#home-hero .hero-kicker span {
  width: 5.937px;
  height: 17.789px;
  border-radius: 2px;
  background: #e64d41;
}

#home-hero .hero-title {
  margin: 0;
  color: #151515;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.28px;
}

#home-hero .hero-title-visual {
  display: block;
}

#home-hero .hero-title-rotator {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  height: 1em;
  overflow: hidden;
  color: #151515;
  line-height: 1;
}

#home-hero .hero-title-rotator-item {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  white-space: nowrap;
  opacity: 0;
  line-height: 1;
  transform: translateY(100%);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease-in;
  will-change: transform, opacity;
}

#home-hero .hero-title-rotator-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

#home-hero .hero-title-rotator-item.is-before {
  transform: translateY(-100%);
}

#home-hero .hero-title-rotator-placeholder {
  display: block;
  visibility: hidden;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  #home-hero .hero-title-rotator-item {
    transition: none;
  }
}

#home-hero .hero-title-word {
  display: inline-block;
  color: #151515;
  opacity: 1;
}

#home-hero .hero-title-word-muted {
  color: #6f6f6f;
}

#home-hero .hero-title-word-mobile {
  display: none;
}

#home-hero .hero-subtitle {
  max-width: 596px;
  margin: 0;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: var(--fw-normal);
  line-height: 1.4;
  letter-spacing: 0.2px;
}

#home-hero .hero-cta {
  display: inline-flex;
  height: 64px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 12px 0 20px;
  border-radius: 12px;
  background: #121212;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

#home-hero .hero-cta-text {
  position: relative;
  width: 177px;
  height: 64px;
  overflow: hidden;
  display: block;
}

#home-hero .hero-cta-text-inner {
  position: relative;
  display: block;
  height: 64px;
}

#home-hero .hero-cta-text-inner span {
  position: absolute;
  inset: 0;
  height: 64px;
  line-height: 64px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

#home-hero .hero-cta-text-inner span:first-child {
  transform: translateY(0);
}

#home-hero .hero-cta-text-inner span:last-child {
  transform: translateY(-64px);
}

#home-hero .hero-cta:hover .hero-cta-text-inner span:first-child {
  transform: translateY(64px);
}

#home-hero .hero-cta:hover .hero-cta-text-inner span:last-child {
  transform: translateY(0);
}

#home-hero .hero-cta-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e3392c;
  color: #fff;
  transition: background 0.24s ease, color 0.24s ease;
}

#home-hero .hero-cta-arrow {
  width: 32px;
  height: 32px;
  display: block;
  background: currentColor;
  mask: url("../../assets/images/home/hero/arrow-down.svg") center / contain no-repeat;
  -webkit-mask: url("../../assets/images/home/hero/arrow-down.svg") center / contain no-repeat;
}

#home-hero .hero-cta:hover .hero-cta-icon {
  background: #fff;
  color: #e3392c;
}

#home-hero .hero-visual-placeholder {
  grid-column: span 4;
  min-height: 503px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#home-hero .hero-card-carousel {
  position: relative;
  width: min(100%, 392px);
  height: 459px;
  isolation: isolate;
}

#home-hero .hero-stat-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 296px;
  height: 369px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #efefef;
  border: 1px dashed #cacaca;
  opacity: 0;
  transform: translate(calc(-50% + 24px), 40px);
  transition: transform 0.56s cubic-bezier(0.65, 0, 0.35, 1), width 0.56s cubic-bezier(0.65, 0, 0.35, 1), height 0.56s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.56s ease;
  will-change: transform, height, opacity;
}

#home-hero .hero-stat-card.is-active {
  z-index: 3;
  height: 459px;
  opacity: 1;
  transform: translateX(-50%);
}

#home-hero .hero-stat-card.is-next {
  z-index: 2;
  opacity: 0.52;
  transform: translate(calc(-50% + 24px), 40px);
}

#home-hero .hero-stat-card.is-prev {
  z-index: 1;
  opacity: 0.36;
  transform: translate(calc(-50% - 24px), 40px);
}

#home-hero .hero-stat-card-copy {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  background: #fafafa;
  overflow: hidden;
}

#home-hero .hero-stat-card-copy strong {
  color: #1a1a1a;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.96px;
}

#home-hero .hero-stat-card-copy span {
  color: #414141;
  font-size: 20px;
  font-weight: var(--fw-normal);
  line-height: 1.3;
}

#home-hero .hero-stat-card-media {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#home-hero .hero-stat-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#home-hero .hero-partners {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 12px max(120px, calc((100% - 1440px) / 2 + 120px));
  overflow: hidden;
  background: #fafafa;
  border-top: dashed 1px #CACACA;
  border-bottom: dashed 1px #CACACA;
}

#home-hero .hero-partners p {
  margin: 0;
  flex: 0 0 auto;
  color: #181818;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  white-space: nowrap;
}

#home-hero .hero-partners-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: 4px;
  background: #d9d9d9;
}

#home-hero .hero-partners-marquee {
  position: relative;
  min-width: 0;
  height: 68px;
  flex: 1 1 auto;
  overflow: hidden;
}

#home-hero .hero-partners-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: hero-partners-marquee 56s linear infinite;
  transform: translateX(0);
  will-change: transform;
}

#home-hero .hero-partners-set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex: 0 0 auto;
}

#home-hero .hero-partner-logo {
  display: block;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  transform: scale(0.7);
  transform-origin: center;
  filter: grayscale(1);
  mix-blend-mode: luminosity;
}

.home-scroll-bottom-blur {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -24px;
  z-index: 850;
  height: 96px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: visible;
  background: transparent;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.home-scroll-bottom-blur::before,
.home-scroll-bottom-blur::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.home-scroll-bottom-blur::before {
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0.08) 56%, rgba(217, 217, 217, 0.2) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.82) 72%, #000 100%);
  -webkit-mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.82) 72%, #000 100%);
}

.home-scroll-bottom-blur::after {
  height: 120px;
  bottom: -64px;
  background: rgba(217, 217, 217, 0.42);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  filter: blur(64px);
}

.home-scroll-bottom-blur.is-visible {
  opacity: 1;
  visibility: visible;
}

#home-hero .hero-partners-marquee::before,
#home-hero .hero-partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: 99px;
  height: 68px;
  pointer-events: none;
}

#home-hero .hero-partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fafafa 43.13%, rgba(250, 250, 250, 0) 105.8%);
}

#home-hero .hero-partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fafafa 43.13%, rgba(250, 250, 250, 0) 105.8%);
}

@keyframes hero-partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1279px) {
  #home-hero .home-hero-container {
    max-width: none;
    padding-left: 48px;
    padding-right: 48px;
  }

  #home-hero .hero-partners {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 1023px) {
  #home-hero {
    min-height: auto;
  }

  #home-hero .hero-partners {
    display: none;
  }

  #home-hero .home-hero-container {
    min-height: auto;
    padding: 96px 24px 72px;
  }

  #home-hero .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #home-hero .hero-content,
  #home-hero .hero-visual-placeholder {
    grid-column: 1;
  }

  #home-hero .hero-title {
    font-size: clamp(42px, 9vw, 64px);
  }
}

@media (max-width: 640px) {
  #home-hero .home-hero-container {
    padding: 102px 24px 32px;
  }

  #home-hero .home-hero-grid {
    gap: 40px;
  }

  #home-hero .hero-content {
    width: 100%;
    max-width: 334px;
    gap: 27px;
  }

  #home-hero .hero-title {
    max-width: 334px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.56px;
  }

  #home-hero .hero-title-word-desktop {
    display: none;
  }

  #home-hero .hero-title-word-mobile {
    display: inline-block;
  }

  #home-hero .hero-subtitle {
    max-width: 334px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.16px;
  }

  #home-hero .hero-subtitle br {
    display: none;
  }

  #home-hero .hero-cta {
    height: 48px;
    gap: 16px;
    padding: 12px;
    font-size: 16px;
  }

  #home-hero .hero-cta-text {
    width: 139px;
  }

  #home-hero .hero-cta-text,
  #home-hero .hero-cta-text-inner,
  #home-hero .hero-cta-text-inner span {
    height: 48px;
    line-height: 48px;
  }

  #home-hero .hero-cta-text-inner span:last-child {
    transform: translateY(-48px);
  }

  #home-hero .hero-cta:hover .hero-cta-text-inner span:first-child {
    transform: translateY(48px);
  }

  #home-hero .hero-cta-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  #home-hero .hero-cta-arrow {
    width: 13px;
    height: 13px;
  }

  #home-hero .hero-visual-placeholder {
    min-height: 489px;
    align-items: flex-start;
  }

  #home-hero .hero-card-carousel {
    width: min(100%, 342px);
    height: 489px;
  }

  #home-hero .hero-stat-card {
    width: 296px;
    height: 431px;
    transform: translate(calc(-50% + 38px), 27px);
  }

  #home-hero .hero-stat-card.is-active {
    width: min(100%, 340px);
    height: 489px;
    transform: translateX(-50%);
  }

  #home-hero .hero-stat-card.is-next {
    transform: translate(calc(-50% + 38px), 27px);
  }

  #home-hero .hero-stat-card.is-prev {
    transform: translate(calc(-50% - 38px), 27px);
  }

  #home-hero .hero-stat-card-copy {
    min-height: auto;
    padding: 24px;
  }

  #home-hero .hero-stat-card-copy strong {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  #home-hero .hero-stat-card-copy span {
    font-size: 18px;
  }
}

/* Stats wrapper */
#home-hero .hero-stats-wrapper {
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

#home-hero .stats-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0.5rem;
}

#home-hero .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  #home-hero .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #home-hero .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

#home-hero .stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#home-hero .stat-value {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

#home-hero .stat-label {
  font-size: 1rem;
  color: #B6B6B6;
  margin: 0;
  line-height: 1.3;
}


/* ---- Home Testimonials Block ---- */
#home-testimonials {
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed #cacaca;
  background: #fafafa;
  padding: 100px 120px;
}

#home-testimonials .home-testimonials-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#home-testimonials .testimonials-heading {
  width: 100%;
  max-width: 1192px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#home-testimonials .testimonials-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #313131;
  font-size: 16px;
  font-weight: var(--fw-normal);
  line-height: 1.3;
}

#home-testimonials .testimonials-kicker p {
  margin: 0;
}

#home-testimonials .testimonials-kicker span {
  width: 5.937px;
  height: 17.789px;
  border-radius: 2px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

#home-testimonials.is-eyebrow-active .testimonials-kicker span {
  background: #e64d41;
}

#home-testimonials .testimonials-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

#home-testimonials .testimonials-title-row h2 {
  margin: 0;
  color: #181818;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
}

#home-testimonials .testimonials-title-row h2 span {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}

#home-testimonials .testimonials-title-row h2 span::before,
#home-testimonials .testimonials-title-row h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#home-testimonials .testimonials-title-row h2 span::before {
  z-index: 2;
  background: #fafafa;
  transform: translateX(0);
}

#home-testimonials .testimonials-title-row h2 span::after {
  z-index: 3;
  background: #000;
  transform: translateX(-101%);
}

#home-testimonials.is-title-reveal-active .testimonials-title-row h2 span::before {
  animation: home-title-reveal-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-testimonials.is-title-reveal-active .testimonials-title-row h2 span::after {
  animation: home-title-reveal-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-testimonials .testimonials-title-row p {
  width: min(100%, 338px);
  margin: 0;
  color: #404040;
  font-size: 18px;
  font-weight: var(--fw-normal);
  line-height: 1.4;
  letter-spacing: 0.18px;
}

#home-testimonials .testimonials-stage {
  display: grid;
  grid-template-columns: minmax(360px, 496px) minmax(0, 689px);
  gap: 16px;
  align-items: start;
}

#home-testimonials .testimonials-feature-card {
  position: relative;
  width: 100%;
  max-width: 496px;
  height: 638px;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #121212;
}

#home-testimonials .testimonials-feature-card picture {
  width: 100%;
  height: 100%;
  display: block;
}

#home-testimonials .testimonials-mobile-rating {
  position: absolute;
  left: 38px;
  top: 33px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

#home-testimonials .testimonials-mobile-rating span {
  font-size: 48px;
  font-weight: var(--fw-medium);
  line-height: 1.35;
  white-space: nowrap;
}

#home-testimonials .testimonials-mobile-rating img {
  width: 40px !important;
  height: 40px !important;
  display: block;
  flex: 0 0 auto;
}

#home-testimonials .testimonials-platform-tabs {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
}

#home-testimonials .testimonials-platform-tab {
  appearance: none;
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d9212e;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

#home-testimonials .testimonials-platform-tab.is-active {
  opacity: 1;
}

#home-testimonials .platform-rating {
  color: #d9212e;
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 1.2;
  white-space: nowrap;
}

#home-testimonials .platform-star {
  width: 26px !important;
  height: 26px !important;
  display: block;
  flex: 0 0 auto;
}

#home-testimonials .platform-logo {
  display: block;
  min-width: 0;
  object-fit: contain;
}

#home-testimonials .platform-logo--clutch {
  width: 72px;
  height: 26px;
}

#home-testimonials .platform-logo--goodfirms {
  width: 122px;
  height: 22px;
}

#home-testimonials .testimonials-platform-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 auto;
  background: #d9d9d9;
}

#home-testimonials .testimonials-feature-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#home-testimonials .testimonials-review-marquee {
  position: relative;
  width: 100%;
  max-width: 689px;
  height: 666px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 338px 338px;
  justify-content: space-between;
  gap: 13px;
}

#home-testimonials .testimonials-review-marquee::before,
#home-testimonials .testimonials-review-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 104px;
  pointer-events: none;
}

#home-testimonials .testimonials-review-marquee::before {
  top: 0;
  background: linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
}

#home-testimonials .testimonials-review-marquee::after {
  bottom: 0;
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
}

#home-testimonials .testimonial-column {
  min-width: 0;
}

#home-testimonials .testimonial-column-viewport {
  height: 666px;
  overflow: hidden;
}

#home-testimonials .testimonial-column-track {
  display: grid;
  gap: 16px;
  animation: home-testimonials-vertical-up 52s linear infinite;
  will-change: transform;
}

#home-testimonials .testimonial-column--2 .testimonial-column-track {
  animation-duration: 46s;
}

#home-testimonials .testimonial-column-viewport:hover .testimonial-column-track,
#home-testimonials .testimonial-mobile-carousel:hover .testimonial-mobile-track {
  animation-play-state: paused;
}

#home-testimonials .testimonial-card {
  box-sizing: border-box;
  width: 338px;
  height: 315px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  background: #e5e5e5;
  color: inherit;
  text-decoration: none;
}

#home-testimonials .testimonial-card:hover .testimonial-card-inner {
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.16);
}

#home-testimonials .testimonial-card-inner {
  box-sizing: border-box;
  width: 100%;
  height: 219px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

#home-testimonials .testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

#home-testimonials .testimonial-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
}

#home-testimonials .testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#home-testimonials .testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-top: 8px;
}

#home-testimonials .testimonial-stars img {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

#home-testimonials .testimonial-title {
  margin: 0;
  color: #181818;
  font-size: 18px;
  font-weight: var(--fw-medium);
  line-height: 1.3;
}

#home-testimonials .testimonial-quote {
  margin: 0;
  color: #404040;
  font-size: 14px;
  font-weight: var(--fw-normal);
  line-height: 1.4;
}

#home-testimonials .testimonial-author {
  box-sizing: border-box;
  width: 100%;
  height: 72px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
}

#home-testimonials .testimonial-author-name {
  margin: 0;
  color: #181818;
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

#home-testimonials .testimonial-author-role {
  margin: 0;
  color: #404040;
  font-size: 12px;
  font-weight: var(--fw-normal);
  line-height: 1.4;
}

#home-testimonials .testimonial-mobile-carousel {
  display: none;
}

@media (max-width: 1279px) {
  #home-testimonials {
    padding-left: 48px;
    padding-right: 48px;
  }

  #home-testimonials .testimonials-stage {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  }
}

@media (max-width: 1023px) {
  #home-testimonials .testimonials-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  #home-testimonials .testimonials-stage {
    grid-template-columns: 1fr;
  }

  #home-testimonials .testimonials-feature-card,
  #home-testimonials .testimonials-review-marquee {
    max-width: none;
  }
}

@media (max-width: 767px) {
  #home-testimonials {
    padding: 40px 24px;
  }

  #home-testimonials .home-testimonials-inner {
    max-width: none;
    margin: 0;
    gap: 40px;
  }

  #home-testimonials .testimonials-heading {
    max-width: none;
    gap: 24px;
  }

  #home-testimonials .testimonials-kicker {
    font-size: 16px;
  }

  #home-testimonials .testimonials-title-row {
    gap: 16px;
  }

  #home-testimonials .testimonials-title-row h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  #home-testimonials .testimonials-title-row p {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.16px;
  }

  #home-testimonials .testimonials-stage {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  #home-testimonials .testimonials-feature-card {
    width: 100%;
    height: 324px;
    max-width: 342px;
    margin: 0 auto;
  }

  #home-testimonials .testimonials-review-marquee {
    width: 100%;
    max-width: none;
    height: 315px;
    display: block;
    overflow: hidden;
  }

  #home-testimonials .testimonials-review-marquee::before,
  #home-testimonials .testimonials-review-marquee::after,
  #home-testimonials .testimonial-column {
    display: none;
  }

  #home-testimonials .testimonial-mobile-carousel {
    width: 100%;
    height: 315px;
    display: block;
    overflow: hidden;
  }

  #home-testimonials .testimonial-mobile-track {
    width: max-content;
    display: flex;
    gap: 16px;
    animation: home-testimonials-horizontal 58s linear infinite;
    will-change: transform;
  }

  #home-testimonials .testimonial-card {
    width: calc(100vw - 48px);
    max-width: none;
    height: 315px;
    min-height: 315px;
    flex: 0 0 auto;
  }


  #home-testimonials .testimonials-mobile-rating {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
  }

  #home-testimonials .testimonials-mobile-rating span {
    font-size: 32px;
    font-weight: var(--fw-medium);
    line-height: 1.34;
    white-space: nowrap;
  }

  #home-testimonials .testimonials-mobile-rating img {
    width: 32px !important;
    height: 32px !important;
    display: block;
    flex: 0 0 auto;
  }

  #home-testimonials .testimonials-platform-tabs {
    left: 24px;
    right: 24px;
    bottom: 20px;
    gap: 8px;
    padding: 8px;
  }

  #home-testimonials .testimonials-platform-tab {
    flex: 1 1 0;
    justify-content: center;
    gap: 4px;
    padding: 8px;
  }

  #home-testimonials .platform-rating {
    font-size: 16px;
  }

  #home-testimonials .platform-star {
    width: 16px;
    height: 16px;
  }

  #home-testimonials .platform-logo--clutch {
    width: 53px;
    height: 19px;
    margin-left: 4px;
  }

  #home-testimonials [data-testimonials-platform="goodfirms"] .platform-rating,
  #home-testimonials [data-testimonials-platform="goodfirms"] .platform-star {
    display: none;
  }

  #home-testimonials .platform-logo--goodfirms {
    width: 97px;
    height: 18px;
  }

  #home-testimonials .testimonials-platform-divider {
    height: 28px;
  }

}

@keyframes home-title-reveal-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes home-title-reveal-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

@media (prefers-reduced-motion: reduce) {
  #home-testimonials .testimonials-title-row h2 span::before,
  #home-testimonials .testimonials-title-row h2 span::after {
    animation: none;
    display: none;
  }
}

@keyframes home-testimonials-vertical-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes home-testimonials-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.expertise-strip {
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px dashed #cacaca;
}

.expertise-strip .expertise-strip-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 12px 120px;
}

.expertise-strip .expertise-label {
  margin: 0;
  flex: 0 0 auto;
  color: #181818;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.expertise-strip .expertise-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 auto;
  background: #d9d9d9;
}

.expertise-strip .expertise-icons {
  width: 316px;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.expertise-strip .expertise-icons > img {
  width: 36px;
  height: 36px;
  display: block;
  flex: 0 0 auto;
  border-radius: 6px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.expertise-strip .expertise-icons.is-shuffling > img {
  opacity: 0;
  transform: translateY(-8px) rotate(-6deg) scale(0.94);
}

.expertise-strip .expertise-icons.is-shuffled > img {
  animation: expertise-logo-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes expertise-logo-in {
  from {
    opacity: 0;
    transform: translateY(8px) rotate(6deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@media (max-width: 1279px) {
  .expertise-strip .expertise-strip-inner {
    padding-left: 48px;
    padding-right: 48px;
    gap: 32px;
  }
}

@media (max-width: 1023px) {
  .expertise-strip .expertise-strip-inner {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
  }

  .expertise-strip .expertise-icons {
    width: auto;
    max-width: 316px;
  }
}

@media (max-width: 767px) {
  .expertise-strip .expertise-strip-inner {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 0;
    padding: 24px;
  }

  .expertise-strip .expertise-divider {
    display: none;
  }

  .expertise-strip .expertise-label {
    font-size: 16px;
    line-height: normal;
  }

  .expertise-strip .expertise-label:first-of-type {
    order: 1;
  }

  .expertise-strip .expertise-icons:first-of-type {
    order: 2;
    margin-left: auto;
  }

  .expertise-strip .expertise-icons:last-of-type {
    order: 3;
  }

  .expertise-strip .expertise-label:last-of-type {
    order: 4;
    margin-left: auto;
  }

  .expertise-strip .expertise-icons {
    width: auto;
    max-width: calc(100% - 124px);
    flex: 0 1 auto;
    flex-wrap: nowrap;
  }

  .expertise-strip .expertise-icons > img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }
}


/* Styles moved to shared/expertise-strip/block.css */


/* ---- Home Selected Work Block ---- */

#home-selected-work {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: hidden;
  background: #f6f6f6;
  border-bottom: 1px dashed #cacaca;
  padding: 100px 0;
}

#home-selected-work .home-selected-work-header,
#home-selected-work .home-selected-work-grid {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
}

#home-selected-work .home-selected-work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

#home-selected-work .home-selected-work-heading {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
}

#home-selected-work .home-selected-work-eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

#home-selected-work .home-selected-work-eyebrow span {
  width: 5.937px;
  height: 17.789px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

#home-selected-work.is-eyebrow-active .home-selected-work-eyebrow span {
  background: #e64d41;
}

#home-selected-work h2 {
  margin: 0;
  color: #212121;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
  white-space: nowrap;
}

#home-selected-work h2 span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
  vertical-align: top;
}

#home-selected-work h2 span::before,
#home-selected-work h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#home-selected-work h2 span::before {
  z-index: 2;
  background: #f6f6f6;
  transform: translateX(0);
}

#home-selected-work h2 span::after {
  z-index: 3;
  background: #000;
  transform: translateX(-101%);
}

#home-selected-work.is-title-reveal-active h2 span::before {
  animation: home-title-reveal-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-selected-work.is-title-reveal-active h2 span::after {
  animation: home-title-reveal-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-selected-work .home-selected-work-updated {
  margin: 0;
  flex: 0 0 auto;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

#home-selected-work .home-selected-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#home-selected-work .home-work-card {
  position: relative;
  height: 427px;
  overflow: hidden;
  border-radius: 16px;
  background: #f6f6f6;
}

@keyframes home-title-reveal-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes home-title-reveal-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes home-work-image-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

#home-selected-work .home-work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, clip-path;
}

#home-selected-work .home-work-card:not(.is-image-reveal-active) img {
  clip-path: inset(0 100% 0 0);
}

#home-selected-work .home-work-card.is-image-reveal-active img {
  animation: home-work-image-reveal 0.9s cubic-bezier(0.77, 0, 0.18, 1) both;
}

@media (min-width: 768px) {
  #home-selected-work .home-work-card:nth-child(even).is-image-reveal-active img {
    animation-delay: 0.26s;
  }
}

#home-selected-work .home-work-card:hover img,
#home-selected-work .home-work-card:focus-within img {
  transform: scale(1.04);
}

#home-selected-work .home-work-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}

#home-selected-work .home-work-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  box-sizing: border-box;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: #f0f0f0;
  padding: 28px 19px 28px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

#home-selected-work .home-work-card:hover .home-work-info,
#home-selected-work .home-work-card:focus-within .home-work-info {
  opacity: 1;
  transform: translateY(0);
}

#home-selected-work .home-work-info h3,
#home-selected-work .home-work-info p {
  margin: 0;
}

#home-selected-work .home-work-info h3 {
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.28px;
  white-space: nowrap;
}

#home-selected-work .home-work-info p {
  margin-top: 8px;
  color: #343434;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

#home-selected-work .home-work-arrow {
  width: 75px;
  height: 74px;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background: url("data:image/svg+xml,%3Csvg width='75' height='74' viewBox='0 0 75 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='75' height='74' rx='12' fill='%23E3392C'/%3E%3Cpath d='M27.6004 49.728L24.772 46.8996L41.7426 29.929L38.9142 27.1006L41.7426 24.2722L44.571 27.1006L47.3994 24.2722L50.2278 27.1006L47.3994 29.929L50.2278 32.7574L47.3994 35.586L44.571 32.7574L27.6004 49.728ZM47.3994 41.2428L50.2278 38.4144L47.3994 35.586L44.571 38.4144L47.3994 41.2428ZM47.3994 41.2428L44.571 44.0712L47.3994 46.8996L50.2278 44.0712L47.3994 41.2428ZM33.2572 27.1006L36.0856 24.2722L38.9142 27.1006L36.0856 29.929L33.2572 27.1006ZM33.2572 27.1006L30.4288 29.929L27.6004 27.1006L30.4288 24.2722L33.2572 27.1006Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1279px) {
  #home-selected-work .home-selected-work-header,
  #home-selected-work .home-selected-work-grid {
    padding-left: 48px;
    padding-right: 48px;
  }

  #home-selected-work .home-work-info h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  #home-selected-work {
    gap: 24px;
    padding: 40px 0;
  }

  #home-selected-work::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    max-width: 390px;
    height: 167px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 38.21%, #fafafa 100%);
  }

  #home-selected-work .home-selected-work-header,
  #home-selected-work .home-selected-work-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  #home-selected-work .home-selected-work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  #home-selected-work h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  #home-selected-work .home-selected-work-updated {
    font-size: 16px;
  }

  #home-selected-work .home-selected-work-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  #home-selected-work .home-work-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  #home-selected-work .home-work-link {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  #home-selected-work .home-work-card img {
    aspect-ratio: 800 / 560;
    height: auto;
  }

  #home-selected-work .home-work-info {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 0 0 16px 16px;
    padding: 18px 13px;
    opacity: 1;
    transform: none;
  }

  #home-selected-work .home-work-info h3 {
    font-size: 18px;
    letter-spacing: -0.18px;
  }

  #home-selected-work .home-work-info p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 20px;
  }

  #home-selected-work .home-work-arrow {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #home-selected-work .home-work-card img {
    animation: none;
    clip-path: inset(0 0 0 0);
  }
}


#home-blog {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  background: #fafafa;
  border-bottom: 1px dashed #cacaca;
  padding: 100px 0;
}

#home-blog .home-blog-header,
#home-blog .home-blog-layout {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
}

#home-blog .home-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

#home-blog .home-blog-title {
  width: 571px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#home-blog .home-blog-eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

#home-blog .home-blog-eyebrow span {
  width: 5.937px;
  height: 17.789px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

#home-blog.is-eyebrow-active .home-blog-eyebrow span {
  background: #e64d41;
}

#home-blog h2 {
  margin: 0;
  color: #212121;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
}

#home-blog h2 span {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}

#home-blog h2 span::before,
#home-blog h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#home-blog h2 span::before {
  z-index: 2;
  background: #fafafa;
  transform: translateX(0);
}

#home-blog h2 span::after {
  z-index: 3;
  background: #000;
  transform: translateX(-101%);
}

#home-blog.is-title-reveal-active h2 span::before {
  animation: home-title-reveal-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-blog.is-title-reveal-active h2 span::after {
  animation: home-title-reveal-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes home-title-reveal-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes home-title-reveal-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

#home-blog .home-blog-description {
  width: 303px;
  margin: 0;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

#home-blog .home-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 507px;
  gap: 16px;
  border-radius: 12px;
}

#home-blog .home-blog-featured,
#home-blog .home-blog-news-card {
  color: inherit;
  text-decoration: none;
}

#home-blog .home-blog-featured {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  border-radius: 16px;
  background: #f0f0f0;
  padding: 8px;
}

#home-blog .home-blog-featured-inner {
  width: 100%;
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

#home-blog .home-blog-featured picture,
#home-blog .home-blog-featured img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  border-radius: 16px;
}

#home-blog .home-blog-featured img {
  aspect-ratio: 960 / 540;
  object-fit: cover;
}

#home-blog .home-blog-featured-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: #fafafa;
  padding: 20px;
}

#home-blog .home-blog-featured-info h3,
#home-blog .home-blog-featured-info p {
  margin: 0;
}

#home-blog .home-blog-featured-info h3 {
  color: #181818;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

#home-blog .home-blog-featured-info p {
  max-width: 582px;
  color: #404040;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

#home-blog .home-blog-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: #f0f0f0;
  padding: 8px;
}

#home-blog .home-blog-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 16px 20px 0;
}

#home-blog .home-blog-news-arrow {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='15.5' stroke='%23D9D9DB'/%3E%3Cpath d='M11.0504 22.3641L9.63623 20.9499L18.1215 12.4646L16.7073 11.0504L18.1215 9.63623L19.5357 11.0504L20.9499 9.63623L22.3641 11.0504L20.9499 12.4646L22.3641 13.8788L20.9499 15.2931L19.5357 13.8788L11.0504 22.3641ZM20.9499 18.1215L22.3641 16.7073L20.9499 15.2931L19.5357 16.7073L20.9499 18.1215ZM20.9499 18.1215L19.5357 19.5357L20.9499 20.9499L22.3641 19.5357L20.9499 18.1215ZM13.8789 11.0504L15.2931 9.63623L16.7073 11.0504L15.2931 12.4646L13.8789 11.0504ZM13.8789 11.0504L12.4647 12.4646L11.0504 11.0504L12.4647 9.63623L13.8789 11.0504Z' fill='%23242424'/%3E%3C/svg%3E") center / contain no-repeat;
}

#home-blog .home-blog-news-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
}

#home-blog .home-blog-news-title {
  color: #181818;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

#home-blog .home-blog-news-excerpt {
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1279px) {
  #home-blog .home-blog-header,
  #home-blog .home-blog-layout {
    padding-left: 48px;
    padding-right: 48px;
  }

  #home-blog .home-blog-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
  }
}

@media (max-width: 1023px) {
  #home-blog .home-blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  #home-blog .home-blog-description {
    width: 100%;
    max-width: 420px;
  }

  #home-blog .home-blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #home-blog {
    gap: 24px;
    padding: 40px 0;
  }

  #home-blog .home-blog-header,
  #home-blog .home-blog-layout {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  #home-blog .home-blog-title {
    width: 100%;
  }

  #home-blog h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  #home-blog .home-blog-description {
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  #home-blog .home-blog-layout {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #home-blog .home-blog-featured,
  #home-blog .home-blog-list {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  #home-blog .home-blog-featured picture,
  #home-blog .home-blog-featured img {
    width: 100%;
  }

  #home-blog .home-blog-featured-info {
    padding: 16px;
  }

  #home-blog .home-blog-featured-info h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  #home-blog .home-blog-featured-info p {
    overflow: hidden;
    color: #404040;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #home-blog .home-blog-list {
    gap: 8px;
  }

  #home-blog .home-blog-news-card {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  #home-blog .home-blog-news-text {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0;
  }

  #home-blog .home-blog-news-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  #home-blog .home-blog-news-excerpt {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


#home-faq {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #fafafa;
  border-bottom: 1px dashed #cacaca;
  padding: 100px 0;
}

#home-faq .home-faq-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 0 120px;
}

#home-faq .home-faq-copy {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  text-align: right;
}

#home-faq .home-faq-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

#home-faq .home-faq-eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

#home-faq .home-faq-eyebrow span {
  width: 5.937px;
  height: 17.789px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

#home-faq.is-eyebrow-active .home-faq-eyebrow span {
  background: #e64d41;
}

#home-faq h2 {
  width: 527px;
  max-width: 100%;
  margin: 0;
  color: #181818;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
}

#home-faq h2 span {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}

#home-faq h2 span::before,
#home-faq h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#home-faq h2 span::before {
  z-index: 2;
  background: #fafafa;
  transform: translateX(0);
}

#home-faq h2 span::after {
  z-index: 3;
  background: #000;
  transform: translateX(-101%);
}

#home-faq.is-title-reveal-active h2 span::before {
  animation: home-title-reveal-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-faq.is-title-reveal-active h2 span::after {
  animation: home-title-reveal-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

#home-faq.is-title-reveal-active h2 span:nth-child(2)::before,
#home-faq.is-title-reveal-active h2 span:nth-child(2)::after {
  animation-delay: 0.18s;
}

@keyframes home-title-reveal-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes home-title-reveal-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

#home-faq .home-faq-description {
  width: 450px;
  max-width: 100%;
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

#home-faq .home-faq-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

#home-faq .home-faq-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5a5a5a;
  border-radius: 100px;
  padding: 8px 12px;
  color: #6f6f6f;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

#home-faq .faq-list {
  box-sizing: border-box;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: #f0f0f0;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  padding: 8px;
}

#home-faq .faq-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fafafa;
}

#home-faq .faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px;
}

#home-faq .faq-item summary::-webkit-details-marker,
#home-faq .faq-item summary::marker {
  display: none;
}

#home-faq .faq-number {
  width: 24px;
  flex: 0 0 auto;
  color: #414141;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

#home-faq .faq-question {
  min-width: 0;
  flex: 1 1 auto;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

#home-faq .faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e9e9e9;
}

#home-faq .faq-toggle::before,
#home-faq .faq-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #212121;
  transform: translate(-50%, -50%);
}

#home-faq .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

#home-faq .faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

#home-faq .faq-answer {
  box-sizing: border-box;
  overflow: hidden;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

#home-faq .faq-answer-inner {
  padding: 0 20px 20px 60px;
}

#home-faq .faq-item:not([open]) .faq-answer {
  opacity: 0;
  transform: translateY(-6px);
}

@media (max-width: 1023px) {
  #home-faq .home-faq-inner {
    flex-direction: column;
    gap: 40px;
    padding-left: 48px;
    padding-right: 48px;
  }

  #home-faq .home-faq-copy,
  #home-faq .home-faq-text {
    width: 100%;
  }

  #home-faq .faq-list {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  #home-faq {
    padding: 40px 0;
  }

  #home-faq .home-faq-inner {
    gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  #home-faq .home-faq-copy {
    gap: 0;
  }

  #home-faq .home-faq-tags {
    display: none;
  }

  #home-faq h2 {
    width: 527px;
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  #home-faq .home-faq-description {
    width: 308px;
    font-size: 16px;
  }

  #home-faq .faq-item summary {
    gap: 16px;
    padding: 16px;
  }

  #home-faq .faq-question {
    font-size: 14px;
  }

  #home-faq .faq-answer {
    font-size: 14px;
  }

  #home-faq .faq-answer-inner {
    padding: 0 16px 16px 56px;
  }
}


.final-cta {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #fafafa;
  padding: 100px 0 28px;
}

.final-cta .final-cta-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.final-cta .final-cta-content {
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 346px;
  align-items: center;
  gap: 80px;
  padding: 0 120px;
}

.final-cta .final-cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.final-cta .final-cta-eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.final-cta .final-cta-eyebrow span {
  width: 5.937px;
  height: 17.789px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

.final-cta.is-eyebrow-active .final-cta-eyebrow span {
  background: #e64d41;
}

.final-cta h2 {
  width: 540px;
  max-width: 100%;
  margin: 0;
  color: #272727;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
  text-transform: capitalize;
}

.final-cta h2 span {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}

.final-cta h2 span::before,
.final-cta h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.final-cta h2 span::before {
  z-index: 2;
  background: #fafafa;
  transform: translateX(0);
}

.final-cta h2 span::after {
  z-index: 3;
  background: #000;
  transform: translateX(-101%);
}

.final-cta.is-title-reveal-active h2 span::before {
  animation: final-cta-title-reveal-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.final-cta.is-title-reveal-active h2 span::after {
  animation: final-cta-title-reveal-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.final-cta.is-title-reveal-active h2 span:nth-child(2)::before,
.final-cta.is-title-reveal-active h2 span:nth-child(2)::after {
  animation-delay: 0.18s;
}

.final-cta.is-title-reveal-active h2 span:nth-child(3)::before,
.final-cta.is-title-reveal-active h2 span:nth-child(3)::after {
  animation-delay: 0.36s;
}

@keyframes final-cta-title-reveal-after {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(101%);
  }
}

@keyframes final-cta-title-reveal-before {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(200%);
  }
}

.final-cta .final-cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.final-cta .final-cta-button {
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 8px 8px 16px;
  border-radius: 12px;
  background: #121212;
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

.final-cta .final-cta-button-text {
  position: relative;
  width: 148px;
  height: 36px;
  overflow: hidden;
  display: block;
}

.final-cta .final-cta-button-text-inner {
  position: relative;
  display: block;
  height: 36px;
}

.final-cta .final-cta-button-text-inner span {
  position: absolute;
  inset: 0;
  height: 36px;
  line-height: 36px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.final-cta .final-cta-button-text-inner span:first-child {
  transform: translateY(0);
}

.final-cta .final-cta-button-text-inner span:last-child {
  transform: translateY(-36px);
}

.final-cta .final-cta-button:hover .final-cta-button-text-inner span:first-child {
  transform: translateY(36px);
}

.final-cta .final-cta-button:hover .final-cta-button-text-inner span:last-child {
  transform: translateY(0);
}

.final-cta .final-cta-button-icon {
  width: 37px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e3392c;
  color: #fff;
  transition: background 0.24s ease, color 0.24s ease;
}

.final-cta .final-cta-button-arrow {
  width: 12px;
  height: 20px;
  display: block;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='12' height='20' viewBox='0 0 12 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 2.857H6V5.714H3V2.857ZM3 2.857H0V0H3V2.857ZM3 17.143H6V14.286H3V17.143ZM3 17.143H0V20H3V17.143ZM6 11.429V14.286H9V11.43L6 11.429ZM9 11.43L12 11.429V8.572H9V11.43ZM9 8.572V5.714H6V8.571L9 8.572Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='20' viewBox='0 0 12 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 2.857H6V5.714H3V2.857ZM3 2.857H0V0H3V2.857ZM3 17.143H6V14.286H3V17.143ZM3 17.143H0V20H3V17.143ZM6 11.429V14.286H9V11.43L6 11.429ZM9 11.43L12 11.429V8.572H9V11.43ZM9 8.572V5.714H6V8.571L9 8.572Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

.final-cta .final-cta-button:hover .final-cta-button-icon {
  background: #fff;
  color: #e3392c;
}

.final-cta .final-cta-link {
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.final-cta .final-cta-link:hover {
  text-decoration: underline;
}

.final-cta .final-cta-timeline {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.final-cta .final-cta-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.final-cta .final-cta-step strong {
  color: #3d3d3d;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.final-cta .final-cta-step span {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.final-cta .final-cta-gallery {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  height: 148px;
  min-height: 148px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta .final-cta-gallery-track,
.final-cta .final-cta-gallery-set {
  width: 100%;
  display: flex;
}

.final-cta .final-cta-gallery-set {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.final-cta .final-cta-gallery-set[aria-hidden="true"] {
  display: none;
}

.final-cta .final-cta-image {
  height: 148px;
  margin: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e8;
}

.final-cta .final-cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.final-cta .final-cta-image--one,
.final-cta .final-cta-image--four {
  width: 213px;
}

.final-cta .final-cta-image--two {
  width: 214px;
}

.final-cta .final-cta-image--three {
  width: 211px;
}

.final-cta .final-cta-image--five {
  width: 205px;
}

.final-cta .final-cta-image--six {
  width: 190px;
}

@media (max-width: 1023px) {
  .final-cta .final-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 767px) {
  .final-cta {
    padding: 40px 0;
  }

  .final-cta .final-cta-inner {
    gap: 24px;
  }

  .final-cta .final-cta-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .final-cta .final-cta-copy {
    gap: 24px;
  }

  .final-cta h2 {
    width: 100%;
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .final-cta .final-cta-actions {
    gap: 16px;
  }

  .final-cta .final-cta-button {
    height: 48px;
    padding: 12px;
  }

  .final-cta .final-cta-button-text,
  .final-cta .final-cta-button-text-inner,
  .final-cta .final-cta-button-text-inner span {
    height: 24px;
    line-height: 24px;
  }

  .final-cta .final-cta-button-text-inner span:last-child {
    transform: translateY(-24px);
  }

  .final-cta .final-cta-button:hover .final-cta-button-text-inner span:first-child {
    transform: translateY(24px);
  }

  .final-cta .final-cta-button-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  .final-cta .final-cta-button-arrow {
    width: 13px;
    height: 13px;
  }

  .final-cta .final-cta-timeline {
    display: none;
  }

  .final-cta .final-cta-gallery {
    width: 100%;
    max-width: none;
    padding: 0;
    justify-content: flex-start;
  }

  .final-cta .final-cta-gallery-track {
    width: max-content;
    gap: 32px;
    animation: final-cta-gallery-scroll 34s linear infinite;
    will-change: transform;
  }

  .final-cta .final-cta-gallery-set {
    width: max-content;
    gap: 32px;
    justify-content: flex-start;
  }

  .final-cta .final-cta-gallery-set[aria-hidden="true"] {
    display: flex;
  }
}

@keyframes final-cta-gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 16px));
  }
}


/* Uses shared/final-cta */


