.service-page {
  background:
    radial-gradient(circle at 88% 12%, rgba(230, 57, 70, 0.09), transparent 26rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 34%, #f8fafc 100%);
}

.service-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.service-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08);
}

.service-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.service-header .logo img {
  width: auto;
  height: 46px;
}

.service-nav,
.service-nav-links {
  display: flex;
  align-items: center;
}

.service-nav {
  gap: 28px;
}

.service-nav-links {
  gap: 22px;
}

.service-nav-links a {
  position: relative;
  color: var(--gray-700);
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.service-nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-nav-links a:hover,
.service-nav-links a.active {
  color: var(--gray-900);
}

.service-nav-links a:hover::after,
.service-nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 clamp(70px, 9vw, 128px);
}

.service-detail-hero::before,
.service-detail-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.service-detail-hero::before {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -80px;
  background: rgba(230, 57, 70, 0.08);
}

.service-detail-hero::after {
  width: 230px;
  height: 230px;
  bottom: -130px;
  left: 8%;
  border: 1px solid rgba(230, 57, 70, 0.13);
}

.service-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--gray-500);
  font-size: 12px;
}

.service-breadcrumb a {
  transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
  color: var(--red);
}

.service-detail-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--gray-900);
  font-size: clamp(44px, 6.3vw, 82px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-detail-copy h1.is-long {
  font-size: clamp(42px, 5vw, 68px);
}

.service-detail-subtitle {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--gray-600);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.service-detail-visual {
  position: relative;
  min-height: 510px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 34px 86px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-detail-visual img {
  width: 100%;
  height: 486px;
  border-radius: 23px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-detail-visual:hover img {
  transform: scale(1.035);
}

.service-visual-tag {
  position: absolute;
  right: 32px;
  bottom: 32px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-detail-content {
  padding: clamp(80px, 10vw, 140px) 0;
  background: rgba(255, 255, 255, 0.8);
}

.service-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: start;
}

.service-detail-text h2,
.service-deliverables h2,
.service-detail-cta h2,
.service-related h2 {
  color: var(--gray-900);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-detail-text h2 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 54px);
}

.service-detail-text > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.85;
}

.service-deliverables {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.78));
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-deliverables h2 {
  margin-bottom: 28px;
  font-size: clamp(27px, 3vw, 36px);
}

.service-deliverables ul {
  display: grid;
  gap: 0;
  list-style: none;
}

.service-deliverables li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.service-deliverables li:last-child {
  border-bottom: 0;
}

.service-deliverables li svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
}

.service-detail-cta {
  padding: 0 0 clamp(80px, 10vw, 130px);
  background: rgba(255, 255, 255, 0.8);
}

.service-detail-cta-box {
  position: relative;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.97), rgba(31, 42, 55, 0.91)),
    radial-gradient(circle at 85% 50%, rgba(230, 57, 70, 0.45), transparent 40%);
  box-shadow: 0 28px 72px rgba(17, 24, 39, 0.18);
}

.service-detail-cta-box::after {
  content: '';
  position: absolute;
  right: -75px;
  bottom: -115px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.service-detail-cta .eyebrow {
  color: #ff6975;
}

.service-detail-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.service-detail-cta .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.service-related {
  padding: clamp(80px, 9vw, 120px) 0;
}

.service-related-heading {
  margin-bottom: 42px;
}

.service-related h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-related-card {
  min-height: 118px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-related-card span:last-child {
  color: var(--red);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.service-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 57, 70, 0.23);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.1);
}

.service-related-card:hover span:last-child {
  transform: translateX(5px);
}

.service-footer {
  padding: 64px 0 28px;
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.64);
}

.service-footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 64px;
  padding-bottom: 46px;
}

.service-footer-brand .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.service-footer-brand .logo img {
  width: 170px;
  height: auto;
}

.service-footer-brand p {
  max-width: 360px;
  font-size: 13.5px;
  line-height: 1.7;
}

.service-footer-contact,
.service-footer-address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}

.service-footer-contact strong,
.service-footer-address strong {
  margin-bottom: 8px;
  color: #fff;
}

.service-footer-contact a,
.service-footer-bottom a {
  transition: color 0.2s ease;
}

.service-footer-contact a:hover,
.service-footer-bottom a:hover {
  color: #fff;
}

.service-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
}

.service-footer-bottom .credit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-footer-bottom .credit img {
  width: 90px;
  height: auto;
}

.has-js .service-page [data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .service-page [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (max-width: 1080px) {
  .service-nav-links { display: none; }
  .service-detail-hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr); }
  .service-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .service-detail-hero-grid,
  .service-detail-content-grid { grid-template-columns: 1fr; }
  .service-detail-visual { min-height: 430px; }
  .service-detail-visual img { height: 406px; }
  .service-detail-content-grid { gap: 44px; }
  .service-detail-cta-box { align-items: flex-start; flex-direction: column; }
  .service-footer-main { grid-template-columns: 1fr 1fr; }
  .service-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .service-header-inner { min-height: 70px; gap: 16px; }
  .service-header .logo img { height: 37px; }
  .service-header .btn { padding: 12px 14px; font-size: 11px; }
  .service-detail-hero { padding-top: 46px; }
  .service-breadcrumb { margin-bottom: 26px; }
  .service-detail-copy h1 { font-size: clamp(40px, 13vw, 58px); }
  .service-detail-visual { min-height: 340px; border-radius: 24px; }
  .service-detail-visual img { height: 316px; border-radius: 17px; }
  .service-visual-tag { right: 24px; bottom: 24px; }
  .service-related-grid,
  .service-footer-main { grid-template-columns: 1fr; }
  .service-footer-brand { grid-column: auto; }
  .service-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .service-page [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .service-detail-visual img,
  .service-related-card { transition: none; }
}
