.visual-page {
  --kakao-yellow: #fee500;
  --kakao-ink: #191600;
  color: var(--neutral-900);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.5;
}

.visual-page :focus-visible {
  outline: 3px solid rgba(27, 100, 218, 0.4);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--neutral-200);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}

.wordmark strong,
.site-footer__brand strong {
  font-size: 1.38rem;
  font-weight: 750;
  letter-spacing: -0.055em;
}

.wordmark__symbol {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 23px;
}

.wordmark__symbol i {
  position: absolute;
  width: 20px;
  height: 18px;
  border: 2px solid var(--brand-teal);
  border-radius: 7px;
}

.wordmark__symbol i::after {
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--brand-teal);
  border-left: 2px solid var(--brand-teal);
  content: "";
  transform: skewY(-28deg);
}

.wordmark__symbol i:last-child {
  right: 0;
  bottom: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: var(--neutral-600);
  font-size: 0.92rem;
  font-weight: 680;
  text-decoration: none;
}

.main-nav a.is-active {
  color: var(--blue-700);
}

.main-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  content: "";
}

.main-nav span {
  margin-left: 4px;
  color: #9ba3aa;
  font-size: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
}

.button span {
  font-size: 1.1rem;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(27, 100, 218, 0.12), transparent 31%),
    linear-gradient(135deg, #fff 0%, var(--blue-050) 55%, var(--blue-100) 100%);
}

.service-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48vw;
  height: 100%;
  background-image:
    linear-gradient(rgba(27, 100, 218, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 100, 218, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 28%);
}

.service-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(30px, 4.2vw, 74px);
  align-items: center;
  padding-block: 52px;
}

.detail-context,
.eyebrow,
.product-story__type,
.access-panel__label {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.detail-context {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--neutral-500);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.detail-context i {
  width: 18px;
  height: 1px;
  background: var(--neutral-300);
}

.channel-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: #756a00;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.channel-cue > span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 9px;
  color: var(--kakao-ink);
  background: var(--kakao-yellow);
  font-size: 0.7rem;
  letter-spacing: 0;
}

.service-hero h1,
.section-heading h2,
.product-story h3 {
  margin-top: 0;
  overflow-wrap: normal;
  word-break: keep-all;
  font-weight: 760;
}

.service-hero h1 {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: clamp(4.1rem, 5.4vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.service-family {
  margin: 0 0 24px;
  color: #6d6200;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.service-family::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 10px 3px 0;
  border-radius: 999px;
  background: var(--kakao-yellow);
  content: "";
}

.service-hero__lead {
  max-width: 580px;
  margin: 0;
  color: var(--neutral-900);
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 720;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.service-hero__support {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--neutral-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 26px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(27, 100, 218, 0.2);
}

.benefit-list li > span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 0.65rem;
  font-weight: 800;
}

.benefit-list strong {
  color: var(--neutral-700);
  font-size: 0.75rem;
  line-height: 1.4;
}

.service-hero__visual {
  width: min(730px, 100%);
  margin: 0;
  justify-self: end;
}

.service-hero__visual img {
  width: 100%;
}

.service-hero__visual figcaption {
  margin-top: 4px;
  color: var(--neutral-500);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
}

.service-overview {
  padding: 104px 0 90px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.3vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.062em;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--neutral-600);
}

.product-stories {
  border-top: 1px solid var(--neutral-200);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(470px, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  min-height: 650px;
  padding: 64px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.product-story--brand .product-story__visual {
  order: 2;
}

.product-story--brand .product-story__content {
  order: 1;
}

.product-story__visual {
  margin: 0;
}

.product-story__visual img {
  width: 100%;
  max-height: 560px;
}

.product-story__type {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #756900;
}

.product-story__type span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kakao-yellow);
}

.product-story h3 {
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-story__lead {
  max-width: 480px;
  margin: 0;
  color: var(--neutral-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-story ul {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--neutral-200);
  list-style: none;
}

.product-story li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.product-story li span {
  color: var(--neutral-500);
  font-size: 0.75rem;
  font-weight: 760;
}

.product-story li strong {
  color: var(--neutral-700);
  font-size: 0.85rem;
}

.access-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 38px 0 0;
}

.access-panel p {
  margin: 0;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.access-panel__label {
  margin-bottom: 6px !important;
  color: var(--blue-600) !important;
}

.access-panel__back-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.access-panel .button {
  flex: 0 0 auto;
}

.site-footer {
  color: #fff;
  background: var(--blue-900);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr auto;
  gap: 48px;
  align-items: start;
  min-height: 240px;
  padding-block: 62px;
}

.site-footer p {
  margin: 10px 0 0;
  color: #9fb0c5;
  font-size: 0.82rem;
}

.site-footer__label {
  margin: 3px 0 0 !important;
  color: #6f8aad !important;
  font-size: 0.66rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.site-footer a {
  color: #d8e7fb;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .service-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .benefit-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 6px;
  }

  .product-story {
    grid-template-columns: minmax(400px, 1fr) minmax(300px, 0.8fr);
  }
}

@media (max-width: 900px) {
  .service-hero {
    min-height: 0;
  }

  .service-hero__grid,
  .section-heading,
  .product-story {
    grid-template-columns: 1fr;
  }

  .service-hero__grid {
    gap: 48px;
    padding-block: 70px;
  }

  .service-hero__visual {
    width: min(720px, 100%);
    margin-inline: auto;
    justify-self: center;
  }

  .section-heading {
    gap: 22px;
  }

  .product-story {
    gap: 30px;
  }

  .product-story--brand .product-story__visual,
  .product-story--brand .product-story__content {
    order: initial;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 66px;
  }

  .main-nav {
    display: none;
  }

  .button--small {
    min-height: 40px;
    padding-inline: 16px;
  }

  .service-hero__grid {
    gap: 34px;
    padding-block: 52px 60px;
  }

  .service-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4rem);
  }

  .service-hero__lead {
    font-size: 1.12rem;
  }

  .benefit-list {
    margin-block: 22px;
  }

  .service-overview {
    padding-block: 76px 70px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  .product-story {
    min-height: 0;
    padding: 46px 0;
  }

  .product-story h3 {
    font-size: 3.2rem;
  }

  .product-story__lead {
    font-size: 0.94rem;
  }

  .access-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
    padding-block: 48px;
  }
}
