.photo img {
  object-position: center top;
}

.lawyerShowcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 30px 90px;
}

.showcaseTitle {
  margin: 0 0 64px;
  text-align: center;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -2px;
}

.showcaseTitle em {
  color: var(--orange);
  font-style: normal;
}

.lawyerProfile {
  display: grid;
  grid-template-columns: 402px 1fr;
  align-items: center;
  gap: 48px;
}

.lawyerShowcase .photo {
  height: 428px;
}

.lawyerShowcase .photo img {
  height: 100%;
  aspect-ratio: auto;
}

.lawyerShowcase .lawyerText blockquote {
  margin: 0 0 34px;
  padding: 0;
  border: 0;
  color: #e7e7e7;
  font-size: 30px;
  line-height: 1.48;
  letter-spacing: -1.1px;
}

.lawyerIdentity {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding-bottom: 32px;
  border-bottom: 1px solid #242424;
}

.lawyerIdentity h4,
.lawyerIdentity p {
  margin: 0;
}

.lawyerIdentity h4 {
  font-size: 20px;
  font-weight: 500;
}

.lawyerIdentity p {
  color: #8d8d8d;
  font-size: 16px;
}

.lawyerShowcase .mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 50px;
  text-align: center;
}

.lawyerShowcase .mini strong {
  font-size: 48px;
}

.lawyerShowcase .mini span {
  font-size: 15px;
}

.lawyerShowcase .testgrid {
  margin-top: 74px;
}

.lawyerShowcase .quote {
  min-height: 255px;
  padding: 8px 42px;
  border: 0;
  border-right: 1px solid #242424;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.lawyerShowcase .quote:last-child {
  border-right: 0;
}

.lawyerShowcase .quote p {
  min-height: 126px;
  margin-top: 18px;
  color: #a9a9a9;
  font-size: 15px;
  line-height: 1.75;
}

.lawyerShowcase .quote h5 {
  margin: 10px 0 6px;
  font-size: 16px;
}

@media (max-width: 700px) {
  .lawyerShowcase {
    padding: 80px 20px 70px;
  }

  .showcaseTitle {
    margin-bottom: 42px;
    font-size: 37px;
  }

  .lawyerProfile {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lawyerShowcase .photo {
    height: auto;
  }

  .lawyerShowcase .photo img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .lawyerShowcase .lawyerText blockquote {
    font-size: 24px;
  }

  .lawyerIdentity {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .lawyerShowcase .mini strong {
    font-size: 40px;
  }

  .lawyerShowcase .testgrid {
    margin-top: 60px;
  }

  .lawyerShowcase .quote {
    min-height: 0;
    padding: 34px 8px;
    border-right: 0;
    border-bottom: 1px solid #242424;
  }

  .lawyerShowcase .quote:last-child {
    border-bottom: 0;
  }

  .lawyerShowcase .quote p {
    min-height: 0;
  }
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  width: min(855px, calc(100% - 32px));
  margin: 0;
  transform: translateX(-50%);
  z-index: 30;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero {
  height: 540px;
}

.faq {
  padding-bottom: 40px;
}

footer {
  height: 500px;
}

.floating svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
  transition: opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.heroContent.in-view .eyebrow {
  animation: heroReveal .65s .05s both;
}

.heroContent.in-view h1 {
  animation: heroReveal .85s .16s both;
}

.heroContent.in-view > p {
  animation: heroReveal .8s .3s both;
}

.heroContent.in-view > .cta {
  animation: heroReveal .8s .42s both;
}

.stats.reveal {
  transform: none;
}

.stats.reveal div {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

.stats.in-view div {
  opacity: 1;
  transform: none;
}

.stats.in-view div:nth-child(2) {
  transition-delay: .12s;
}

.stats.in-view div:nth-child(3) {
  transition-delay: .24s;
}

.benefitVisual b {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.benefits .cards article:hover .benefitVisual b {
  transform: translateY(-5px) scale(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 15px 38px rgba(239,104,23,.3);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.in-view,
  .stats.reveal div,
  .stats.in-view div,
  .heroContent.in-view .eyebrow,
  .heroContent.in-view h1,
  .heroContent.in-view > p,
  .heroContent.in-view > .cta {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  nav {
    top: 14px;
    margin: 0;
  }

  .hero {
    height: 610px;
  }

  .faq {
    padding-bottom: 30px;
  }

  footer {
    height: 470px;
  }
}

.benefits {
  max-width: 1328px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.benefits .sectionHead h2 {
  margin: 0;
  color: #f4f4f4;
  font-size: 48px;
  letter-spacing: -2px;
}

.benefits .sectionHead p {
  margin-top: 28px;
  font-size: 17px;
}

.benefits .cards {
  gap: 32px;
  margin-top: 78px;
}

.benefits .cards article {
  min-height: 410px;
  padding: 32px;
  border-color: #242424;
  border-radius: 22px;
  background: #121212;
  text-align: center;
}

.benefitVisual {
  position: relative;
  height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #202020;
  border-radius: 18px;
  background-color: #050505;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px;
}

.benefitVisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 18%, rgba(5,5,5,.55) 78%);
}

.benefits .cards .benefitVisual b {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid #ff9a49;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff922f, #e76400);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 10px 30px rgba(239,104,23,.18);
}

.benefitVisual svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits .cards h3 {
  margin: 28px 0 18px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
}

.benefits .cards p {
  max-width: 330px;
  margin: 0 auto;
  color: #a8a8a8;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .benefits {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .benefits .sectionHead h2 {
    font-size: 37px;
  }

  .benefits .cards {
    gap: 20px;
    margin-top: 52px;
  }

  .benefits .cards article {
    min-height: 0;
    padding: 24px 24px 34px;
  }

  .benefits .cards h3 {
    font-size: 24px;
  }
}
