.js-enabled .js-reveal {
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.js-enabled .js-reveal-up {
  opacity: 0;
  transform: translateY(20px);
}

.js-enabled .js-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

.js-enabled .js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-title {
  max-width: 14ch;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

@media (max-width: 1023px) {
  .hero-title {
    max-width: 16ch;
    line-height: 1.04;
  }
}

.hero-photo-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 24rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 20px 40px -28px rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
}

.hero-photo-caption__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-photo-caption__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-photo-caption__meta {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
}

.service-card-link {
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 24px 44px -30px rgba(15, 23, 42, 0.35);
}

.service-card-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 639px) {
  .cta-paired-mobile {
    width: 220px;
    height: 52px;
  }
}

.service-detail-check {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b35 100%);
  box-shadow: 0 10px 20px -14px rgba(255, 107, 53, 0.8);
  position: relative;
}

.service-detail-check::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.23rem;
  width: 0.28rem;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(38deg);
}

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-breadcrumbs a {
  color: var(--foreground);
  text-decoration: none;
}

.service-breadcrumbs a:hover {
  color: var(--primary);
}

.service-hero {
  position: relative;
  aspect-ratio: 16 / 5;
  border-radius: 2rem;
  overflow: hidden;
  background: #d7dde4;
}

.service-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.24) 35%, rgba(15, 23, 42, 0.72) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.15) 60%);
}

.service-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 2rem;
  color: #fff;
}

.service-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 700;
  white-space: nowrap;
}

.service-hero__text {
  margin-top: 1rem;
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.service-hero__meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-article {
  --service-stack-gap: 2.5rem;
  --service-copy-gap: 1.2rem;
  --service-section-title-gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--service-stack-gap);
  padding-bottom: 3.5rem;
}

.service-article__header {
  margin-bottom: -0.5rem;
}

.service-article__main-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--foreground);
}

.service-article__intro,
.service-article__body {
  display: flex;
  flex-direction: column;
  gap: var(--service-copy-gap);
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--muted-foreground);
}

.service-article__body h2 {
  margin-top: var(--service-section-title-gap);
  color: var(--foreground);
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 700;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
}

.blog-post-meta__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.blog-post-meta__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 107, 53, 0.16);
}

.blog-post-meta__author-copy,
.blog-post-meta__date {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-post-meta__name,
.blog-post-meta__date time {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}

.blog-post-meta__date time {
  color: var(--muted-foreground);
  font-weight: 500;
}

.blog-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.blog-video-card__frame {
  position: relative;
  min-height: 26rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #cfd8e3;
}

.blog-video-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-video-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.18) 44%, rgba(15, 23, 42, 0.52) 100%);
}

.blog-video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  box-shadow: 0 24px 44px -28px rgba(15, 23, 42, 0.48);
}

.blog-video-card__play svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.2rem;
}

.blog-video-card__summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 26rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 20px 34px -30px rgba(15, 23, 42, 0.2);
}

.blog-video-card__summary h2 {
  color: var(--foreground);
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.9rem;
}

.blog-video-card__list {
  display: grid;
  gap: 0.55rem;
  color: var(--muted-foreground);
}

.blog-video-card__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.12rem;
  line-height: 1.42;
}

.blog-video-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b35 100%);
}

.service-callout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.14);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 138, 61, 0.06));
}

.service-callout__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-callout__title {
  color: var(--foreground);
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-callout__text {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.service-faq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.service-faq__title {
  color: var(--foreground);
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.service-faq__list {
  display: grid;
  gap: 1rem;
}

.service-faq__item {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 18px 32px -28px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.service-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-faq__icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.service-faq__icon::before,
.service-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq__item.is-open .service-faq__icon::after {
  opacity: 0;
}

.service-faq__panel {
  padding: 0 1.5rem 1.35rem;
}

.service-faq__question {
  color: var(--foreground);
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-faq__answer {
  color: var(--muted-foreground);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .service-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .service-hero {
    aspect-ratio: 16 / 8;
    border-radius: 1.5rem;
  }

  .service-hero__image {
    height: 100%;
  }

  .service-hero__content {
    padding: 1.25rem;
  }

  .service-article {
    --service-stack-gap: 2rem;
    --service-section-title-gap: 0.85rem;
    padding-bottom: 2.5rem;
  }

  .blog-post-meta {
    padding: 0;
  }

  .blog-post-meta__avatar {
    width: 3rem;
    height: 3rem;
  }

  .blog-video-card__frame {
    border-radius: 1.5rem;
    min-height: 16rem;
  }

  .blog-video-card {
    grid-template-columns: 1fr;
  }

  .blog-video-card__summary {
    min-height: auto;
    padding: 1.2rem 1.1rem;
    border-radius: 1.4rem;
  }

  .blog-video-card__play {
    width: 4.25rem;
    height: 4.25rem;
  }

}

.messenger-button {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-radius: 1rem;
  padding: 1rem 1.125rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.messenger-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.55);
  filter: saturate(1.04);
}

.messenger-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.messenger-button__label {
  letter-spacing: -0.01em;
}

.messenger-button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.messenger-button-telegram {
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}

.messenger-button-phone {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b35 55%, #e85a2a 100%);
}

.messenger-button-max {
  background: linear-gradient(135deg, #2f3542 0%, #111827 100%);
}

.review-source-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: 0 8px 20px -18px rgba(0, 0, 0, 0.45);
}

.review-source__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.45rem;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.review-source__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.director-photo {
  position: relative;
}

.director-photo__image {
  transform: scaleX(-1);
}

.service-area-map {
  background:
    radial-gradient(circle at 18% 24%, rgba(239, 68, 68, 0.08), transparent 22%),
    radial-gradient(circle at 76% 34%, rgba(59, 130, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
}

.service-area-map__canvas {
  position: relative;
  min-height: 18rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}

.service-area-map__frame {
  position: absolute;
  inset: -1.9rem;
  width: calc(100% + 3.8rem);
  height: calc(100% + 3.8rem);
  border: 0;
  filter: saturate(0.9) contrast(0.96) brightness(0.99);
  pointer-events: none;
}

.service-area-map__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 50%, transparent 0 60%, rgba(255, 255, 255, 0.55) 88%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 7%, transparent 16% 84%, rgba(255, 255, 255, 0.72) 93% 100%),
    linear-gradient(rgba(255, 255, 255, 0.72) 0 10%, transparent 18% 82%, rgba(255, 255, 255, 0.72) 90% 100%);
  pointer-events: none;
}

.service-area-map__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), transparent 36%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

@media (max-width: 767px) {
  .service-area-map__canvas {
    min-height: 20rem;
  }

  .service-area-map__frame {
    inset: -1.2rem;
    width: calc(100% + 2.4rem);
    height: calc(100% + 2.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .group img {
    transition: none !important;
  }
}

@media (min-width: 1024px) {
  .js-enabled .js-extra-review {
    display: none;
  }

  .js-enabled .js-reviews-section.reviews-expanded .js-extra-review {
    display: flex;
  }
}
