:root {
  --cream: #fafaf0;
  --paper: #fffdf8;
  --ink: #26231f;
  --muted: #70695f;
  --green: #678da8;
  --green-dark: #435f75;
  --green-soft: #e7eef2;
  --line: #e2e2d8;
  --shadow: 0 18px 50px rgba(49, 61, 69, 0.09);
  --radius: 20px;
  --font-sans: Muli, Mulish, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-display: var(--font-sans);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.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;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.hero {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 900ms ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background-image: url("/assets/images/optimized/hero-3-1600.webp");
}

@media (max-width: 900px) {
  .hero-slide:nth-child(1) {
    background-image: url("/assets/images/optimized/hero-3-800.webp");
  }
}
.hero-shade {
  z-index: 1;
  display: none;
}
.hero::after {
  content: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  max-width: none;
  align-items: center;
  flex-direction: column;
  padding: 110px 0;
  color: #fff;
  text-align: center;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  justify-content: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}
.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-shadow: none;
}
.hero p {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}
.hero .button {
  min-width: 180px;
  align-self: center;
  background: #fff;
  color: var(--green-dark);
  min-height: 52px;
  padding: 0 28px;
}
.hero .button:hover {
  background: var(--green-soft);
}

.cmg-site-popup {
  box-sizing: border-box;
  width: min(440px, calc(100vw - 32px), calc(100dvh - 32px));
  height: min(440px, calc(100vw - 32px), calc(100dvh - 32px));
  aspect-ratio: 1 / 1;
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #24323c;
}

.cmg-site-popup::backdrop {
  background: var(--cmg-popup-overlay, rgba(18, 28, 35, 0.66));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cmg-site-popup__card {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(75, 103, 122, 0.2);
  border-radius: var(--cmg-popup-radius, 18px);
  background: var(--cmg-popup-background, rgba(255, 253, 248, 0.86));
  box-shadow: 0 28px 90px rgba(17, 31, 41, 0.34);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.cmg-site-popup__content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(34px, 8vw, 58px);
  text-align: var(--cmg-popup-text-align, center);
}

.cmg-site-popup__eyebrow {
  margin: 0 0 14px;
  color: var(--cmg-popup-eyebrow-color, #56778e);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cmg-site-popup h2 {
  max-width: 330px;
  margin: 0 0 18px;
  color: var(--cmg-popup-title-color, #263843);
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, var(--cmg-popup-title-size, 36px));
  font-weight: var(--cmg-popup-title-weight, 600);
  line-height: 1.12;
}

.cmg-site-popup [data-site-popup-message] {
  max-width: 330px;
  margin: 0;
  color: var(--cmg-popup-message-color, #58636a);
  font-size: clamp(12px, 3vw, var(--cmg-popup-message-size, 16px));
  font-weight: var(--cmg-popup-message-weight, 400);
  line-height: 1.58;
}

.cmg-site-popup__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cmg-popup-action-background, #547d68);
  color: var(--cmg-popup-action-text, #fff);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cmg-site-popup__action:hover {
  background: var(--cmg-popup-action-background, #547d68);
  filter: brightness(0.88);
}

.cmg-site-popup__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(48, 70, 84, 0.16);
  border-radius: 50%;
  background: var(--cmg-popup-close-background, rgba(255, 255, 255, 0.9));
  color: var(--cmg-popup-close-text, #2d414d);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.cmg-site-popup__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--cmg-popup-progress, #6f9c85);
  transform-origin: left;
  animation: cmg-popup-progress var(--cmg-popup-duration, 15s) linear forwards;
}

@keyframes cmg-popup-progress {
  to { transform: scaleX(0); }
}

@media (max-width: 420px), (max-height: 520px) {
  .cmg-site-popup__content {
    padding: 42px 26px 30px;
  }

  .cmg-site-popup h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .cmg-site-popup__action {
    min-height: 40px;
    margin-top: 15px;
  }

}
.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.65));
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.hero-arrow::before,
.achievement-arrow::before,
.review-arrow::before {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}
.hero-prev::before,
.achievement-prev::before,
.review-prev::before {
  transform: translateY(2px) rotate(135deg);
}
.hero-next::before,
.achievement-next::before,
.review-next::before {
  transform: translateY(2px) rotate(-45deg);
}
.hero-arrow:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.12);
}
.hero-arrow:active {
  transform: translateY(-50%) scale(1.04);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}
.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}
.hero-dot {
  position: relative;
  width: 9px;
  height: 9px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.hero-dot.active {
  width: 44px;
  background: rgba(255, 255, 255, 0.28);
}
.hero-dot-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #fff;
  border-radius: inherit;
}
.hero-dot.active .hero-dot-progress {
  animation: hero-dot-progress 7s linear both;
}
.hero.is-autoplay-paused .hero-dot.active .hero-dot-progress {
  animation-play-state: paused;
}
@keyframes hero-dot-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.specialists {
  padding: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.specialists-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 164px;
}
.specialists-label {
  position: relative;
  z-index: 2;
  padding-right: 54px;
  background: var(--paper);
}
.specialists-label span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.specialists-label strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}
.specialists-window {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.specialists-track {
  display: flex;
  width: max-content;
  animation: specialistsMove 55s linear infinite;
}
.specialists-group {
  display: flex;
  align-items: center;
}
.specialists-group span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.specialists-group span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0 27px;
  border-radius: 50%;
  background: var(--green);
}
.specialists:hover .specialists-track {
  animation-play-state: paused;
}
@keyframes specialistsMove {
  to {
    transform: translateX(-50%);
  }
}
.trust-strip {
  padding: 38px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 42px;
  text-align: left;
}
.trust-copy {
  max-width: 340px;
}
.trust-copy span,
.achievements-head span {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.trust-copy strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(245px, 1fr));
  align-items: stretch;
  gap: 14px;
}
.orly-badge,
.zl-badge {
  display: flex;
  width: auto;
  height: auto;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(43, 63, 78, 0.12);
  border-radius: 18px;
  padding: 14px 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(43, 63, 78, 0.06);
}
.orly-badge {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.orly-badge img {
  display: block;
  width: 300px;
  height: 75px;
  max-width: 100%;
  border: 0;
  object-fit: contain;
}
.zl-badge {
  position: relative;
}
.achievements {
  padding: 82px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.achievements-head {
  margin-bottom: 30px;
  text-align: center;
}
.achievements-head h2 {
  margin: 5px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 500;
}
.achievements-head p {
  margin: 0;
  color: var(--muted);
}
.achievement-carousel {
  position: relative;
  width: min(900px, 100%);
  margin: auto;
}
.achievement-stage {
  position: relative;
  height: clamp(620px, 82vw, 900px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.achievement-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  pointer-events: none;
}
.achievement-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.achievement-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: 50% 50%;
}
.achievement-slide.portrait {
  padding: 46px;
}
.achievement-slide.portrait img {
  width: auto;
  height: 100%;
  max-width: 72%;
  max-height: 100%;
  object-fit: contain;
}
.achievement-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  padding: 0;
  font-size: 0;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.achievement-arrow:hover {
  transform: translateY(-50%) scale(1.12);
}
.achievement-arrow:active {
  transform: translateY(-50%) scale(1.04);
}
.achievement-prev {
  left: -24px;
}
.achievement-next {
  right: -24px;
}
.achievement-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.achievement-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c9c5b9;
  cursor: pointer;
  transition: 0.25s;
}
.achievement-dot.active {
  width: 34px;
  background: var(--green);
}
section {
  padding: 92px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-head h2,
.newsletter h2,
.reviews h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 55px);
  font-weight: 500;
  line-height: 1.1;
}
.section-head p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 10px 32px rgba(62, 49, 35, 0.06);
}
.news-card.has-image {
  padding: 0;
}
.news-card-image {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}
.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.news-card.has-image .news-card-body {
  padding: 25px 28px 28px;
}
.news-card .date,
.news-dialog .date {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 22px 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.2;
}
.news-card p {
  margin: 0 0 25px;
  color: var(--muted);
}
.news-card .read {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.news-card .read:hover {
  text-decoration: underline;
}
.news-empty {
  grid-column: 1/-1;
  padding: 55px;
  border: 1px dashed #cbc1b3;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.38);
}
.news-dialog {
  width: min(780px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(25, 37, 45, 0.3);
}
.news-dialog::backdrop {
  background: rgba(24, 36, 45, 0.68);
  backdrop-filter: blur(6px);
}
.news-dialog-shell {
  position: relative;
}
.news-dialog-close {
  position: sticky;
  z-index: 2;
  top: 14px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(29, 48, 64, 0.82);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.news-dialog-image {
  width: 100%;
  max-height: 430px;
  display: block;
  object-fit: contain;
  background: var(--green-soft);
}
.news-dialog-body {
  padding: clamp(28px, 5vw, 55px);
}
.news-dialog-body h2 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
}
.news-dialog-body p {
  white-space: pre-line;
}
.news-dialog-author {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
.newsletter {
  background: var(--green-dark);
  color: #fff;
}
.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.75);
}
.signup {
  display: flex;
  gap: 10px;
}
.signup input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}
.signup input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.signup input:focus {
  border-color: #fff;
}
.signup .button {
  background: #fff;
  color: var(--green-dark);
}
.form-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.social {
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 19px;
  background: var(--paper);
  font-weight: 700;
  text-decoration: none;
}
.social a:hover {
  border-color: var(--green);
  color: var(--green);
}
.reviews {
  background: var(--paper);
}
.reviews-header {
  text-align: center;
}
.reviews-header h2 {
  margin: 0;
}
.reviews-header > p {
  max-width: 650px;
  margin: 16px auto 34px;
  color: var(--muted);
}
.review-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(900px, 100%);
  margin: 0 auto;
}
.review-directory-grid[hidden],
[data-google-reviews-live][hidden],
.reviews-carousel[hidden] {
  display: none;
}
.review-directory-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(145deg, #fff, var(--cream));
  box-shadow: 0 14px 36px rgba(43, 63, 78, 0.07);
}
.review-directory-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-directory-card__head span:not(.review-directory-card__mark) {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-directory-card__head h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 25px;
}
.review-directory-card__mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
  border-radius: 15px;
  background: #4285f4;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
}
.review-directory-card--znanylekarz .review-directory-card__mark {
  background: var(--green);
  font-size: 14px;
}
.review-directory-card > p {
  margin: 22px 0;
  color: var(--muted);
}
.review-directory-card__actions {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: auto;
}
.review-directory-card .review-link {
  min-height: 40px;
  font-size: 13px;
}
.review-link--secondary {
  border-color: transparent;
  color: var(--muted);
}
.rating-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(740px, 100%);
  margin: 0 auto 35px;
}
.rating-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  background: var(--cream);
}
.rating-source {
  font-weight: 700;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
.rating-stars {
  color: #e6a325;
  letter-spacing: 2px;
}
.rating-count {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.reviews-carousel {
  position: relative;
  width: min(780px, calc(100% - 70px));
  margin: auto;
}
.reviews-window {
  overflow: hidden;
  border-radius: 18px;
}
.reviews-grid {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.review-card {
  display: flex;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(43, 63, 78, 0.06);
}
.review-card .quote-mark {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 45px;
  line-height: 0.7;
}
.review-card p {
  margin: 18px 0 25px;
  color: var(--ink);
  font-size: 16px;
}
.review-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.review-author strong,
.review-author span {
  display: block;
}
.review-author span {
  color: var(--muted);
  font-size: 12px;
}
.source-pill {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.review-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  padding: 0;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(43, 63, 78, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}
.review-prev {
  left: -62px;
}
.review-next {
  right: -62px;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.review-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c9c5b9;
  cursor: pointer;
  transition: 0.25s;
}
.review-dot.active {
  width: 34px;
  background: var(--green);
}
.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.review-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}
.review-link:hover {
  border-color: var(--green);
}
footer {
  padding: 38px 0;
  background: #303b44;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-row a {
  color: #fff;
}
@media (max-width: 1000px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 780px) {
  .hero {
    min-height: 570px;
  }
  .hero-content {
    padding: 80px 45px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-prev {
    left: 8px;
  }
  .hero-next {
    right: 8px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: left;
  }
  .trust-copy {
    max-width: 600px;
  }
  .specialists-inner {
    grid-template-columns: 1fr;
    min-height: 150px;
    gap: 18px;
    padding: 26px 0;
  }
  .specialists-label {
    padding-right: 0;
  }
  .specialists-label strong {
    font-size: 32px;
  }
  .specialists-group span {
    font-size: 17px;
  }
  .achievement-stage {
    height: 125vw;
    min-height: 500px;
    max-height: 720px;
  }
  .achievement-slide {
    padding: 22px;
  }
  .achievement-prev {
    left: 8px;
  }
  .achievement-next {
    right: 8px;
  }
  .news-grid,
  .newsletter-wrap {
    grid-template-columns: 1fr;
  }
  .newsletter-wrap {
    gap: 30px;
  }
  .review-directory-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 14px;
  }
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 26px, 1180px);
  }
  section {
    padding: 68px 0;
  }
  .hero h1 {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 1.04;
  }
  .hero-content {
    padding-inline: 36px;
  }
  .news-grid,
  .rating-summary {
    grid-template-columns: 1fr;
  }
  .rating-box {
    padding: 17px;
  }
  .reviews-carousel {
    width: 100%;
  }
  .review-card {
    min-height: 310px;
    padding: 24px;
  }
  .review-prev {
    left: 8px;
  }
  .review-next {
    right: 8px;
  }
  .review-arrow {
    top: auto;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
  .google-reviews-attribution {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .signup {
    flex-direction: column;
  }
  .signup .button {
    width: 100%;
  }
  .social-row {
    flex-direction: column;
  }
  .social a {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .specialists-track,
  .reviews-grid {
    transition: none;
    animation: none;
  }
  .hero-dot.active .hero-dot-progress {
    animation: none;
    width: 100%;
  }
}
.specialists-group span:hover,
.specialists-group span:focus-visible {
  color: var(--green-dark);
  background: var(--green-soft);
  outline: none;
}
.news-card h3 a,
.news-card .read {
  text-decoration: none;
}
.news-card h3 a:hover,
.news-card .read:hover {
  text-decoration: underline;
}
.section-head > .button {
  flex: none;
}
.review-card-rating {
  margin-top: 12px;
  color: #e6a325;
  font-size: 17px;
  letter-spacing: 2px;
}
.review-author-link {
  display: block;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.review-author-link:hover {
  text-decoration: underline;
}
.review-translation {
  margin-top: 3px;
  font-size: 10px !important;
}
.source-pill:hover {
  text-decoration: underline;
}
.google-reviews-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.google-reviews-attribution[hidden] {
  display: none;
}
.google-reviews-attribution > a {
  flex: none;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.google-reviews-attribution a:hover {
  text-decoration: underline;
}
.google-reviews-attribution [data-google-providers] a {
  color: inherit;
  font: inherit;
  font-weight: 600;
}
.orly-badge:hover {
  border-color: rgba(92, 138, 114, 0.5);
  box-shadow: 0 16px 34px rgba(43, 63, 78, 0.1);
  transform: translateY(-2px);
}
.zl-badge iframe {
  max-width: 100% !important;
  margin: auto;
}
.zl-facility-url {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.zl-facility-url:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .orly-badge,
  .zl-badge {
    min-height: 108px;
  }
}
.cmg-award-logo {
  width: 300px;
  height: 75px;
  border: 0;
}
