.visual-page {
  --visual-blue-900: #0b1f3a;
  --visual-blue-700: #0f4b99;
  --visual-blue-600: #1b64da;
  --visual-blue-100: #edf5ff;
  --visual-blue-050: #f7faff;
  --visual-neutral-900: #191f28;
  --visual-neutral-600: #4e5968;
  --visual-neutral-200: #dfe5ec;
  --visual-font-family:
    Pretendard, "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans KR", sans-serif;
  --visual-font-weight-body: 400;
  --visual-font-weight-navigation: 680;
  --visual-font-weight-control: 750;
  --visual-font-weight-heading: 760;
  --visual-font-weight-label: 800;
  --visual-line-height-body: 1.5;
  color: var(--visual-neutral-900);
  background: var(--paper);
  font-family: var(--visual-font-family);
  font-weight: var(--visual-font-weight-body);
  line-height: var(--visual-line-height-body);
}

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

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

.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: var(--visual-font-weight-control);
  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 {
  color: var(--visual-neutral-600);
  font-size: 0.92rem;
  font-weight: var(--visual-font-weight-navigation);
  text-decoration: none;
}

.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: 20px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: var(--visual-font-weight-control);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button--primary {
  color: #fff;
  background: var(--visual-blue-700);
}

.button--quiet {
  border-color: var(--visual-neutral-200);
  color: var(--visual-neutral-900);
  background: rgba(255, 255, 255, 0.74);
}

.button--dark {
  color: #fff;
  background: var(--visual-blue-900);
}

.button--light {
  border-color: rgba(15, 75, 153, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button-row--center {
  justify-content: center;
}

.hero {
  position: relative;
  display: grid;
  min-height: 822px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(27, 100, 218, 0.12), transparent 27%),
    linear-gradient(135deg, #fff 0%, var(--visual-blue-050) 48%, var(--visual-blue-100) 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  height: 100%;
  border-left: 1px solid rgba(27, 100, 218, 0.1);
  content: "";
  background-image: linear-gradient(rgba(27, 100, 218, 0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 100, 218, 0.065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 30%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: 34px;
  padding-block: 72px 98px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--visual-blue-600);
  font-size: 0.76rem;
  font-weight: var(--visual-font-weight-label);
  letter-spacing: 0.17em;
}

.eyebrow--light {
  color: #9bbcf0;
}

.hero-wordmark {
  margin: 0 0 26px;
  color: var(--visual-blue-700);
  font-size: 1.08rem;
  font-weight: var(--visual-font-weight-label);
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 30px;
  font-size: clamp(3.65rem, 4.35vw, 4.25rem);
  font-weight: var(--visual-font-weight-heading);
  line-height: 1.02;
  letter-spacing: -0.068em;
}

h1 span {
  display: block;
}

h1 span:last-child {
  white-space: nowrap;
}

h1 em {
  color: var(--visual-blue-600);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.6vw, 4.7rem);
  font-weight: var(--visual-font-weight-heading);
  line-height: 1.04;
  letter-spacing: -0.062em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.hero__support {
  max-width: 590px;
  margin: 0;
  color: var(--visual-neutral-600);
  font-size: 1.16rem;
  line-height: var(--visual-line-height-body);
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(640px, 100%);
}

.hero__visual img {
  display: block;
  width: 100%;
}

.hero__visual picture {
  display: block;
}

.hero__visual p {
  position: absolute;
  right: 38px;
  bottom: -2px;
  margin: 0;
  color: var(--visual-blue-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero__foot {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #88929d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: 124px;
}

.company {
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.company::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(234, 241, 247, 0.62));
  content: "";
  pointer-events: none;
}

.company::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.94) 22%,
    rgba(247, 250, 255, 0.62) 34%,
    rgba(247, 250, 255, 0.22) 48%,
    rgba(247, 250, 255, 0.3) 58%,
    rgba(255, 255, 255, 0.64) 74%,
    rgba(255, 255, 255, 0.9) 88%,
    #fff 100%
  );
  content: "";
  pointer-events: none;
}

.company__content {
  position: relative;
  z-index: 2;
}

.company__photo {
  position: absolute;
  z-index: 0;
  top: 0;
  right: auto;
  left: 0;
  width: 84%;
  height: 100%;
  object-fit: cover;
  object-position: 190% center;
  opacity: 0.3;
  filter: brightness(1.08) saturate(0.78);
}

.company__ci {
  display: block;
  width: min(159px, 45vw);
  height: auto;
  margin-bottom: 22px;
}

.company__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 108px;
  align-items: start;
}

.company__intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--visual-neutral-600);
  font-size: 1.1rem;
}

.text-link {
  display: inline-flex;
  gap: 28px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--visual-blue-700);
  font-size: 0.9rem;
  font-weight: var(--visual-font-weight-control);
  text-decoration: none;
}

.company__story {
  margin-left: 32px;
  border-top: 1px solid var(--visual-neutral-200);
}

.company__story article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--visual-neutral-200);
}

.company__story time {
  color: var(--visual-blue-600);
  font-size: 1.6rem;
  font-weight: var(--visual-font-weight-heading);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.company__story strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.company__story p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--visual-neutral-600);
  font-size: 0.92rem;
}

.trust {
  min-height: 0;
  padding-block: 104px 72px;
  color: var(--visual-neutral-900);
  border-block: 1px solid rgba(15, 75, 153, 0.1);
  background: #eaf1f7;
}

.trust__heading,
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.trust__heading h2 {
  margin-bottom: 0;
  color: var(--visual-blue-900);
}

.trust .eyebrow--light {
  color: var(--visual-blue-600);
}

.trust__heading > p {
  margin-bottom: 4px;
  color: var(--visual-neutral-600);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(15, 75, 153, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(15, 75, 153, 0.045);
}

.metrics article {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 25px 28px 23px;
  background: transparent;
}

.metrics article + article {
  border-left: 1px solid rgba(15, 75, 153, 0.1);
}

.metrics strong {
  color: var(--visual-blue-700);
  font-size: clamp(2.15rem, 3.3vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.metrics p {
  margin: 0;
  color: var(--brand-teal);
  font-size: 0.67rem;
  font-weight: var(--visual-font-weight-label);
  letter-spacing: 0.13em;
}

.metrics span {
  color: var(--visual-neutral-600);
  font-size: 0.82rem;
  line-height: 1.45;
  word-break: keep-all;
}

.trust-evidence {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.evidence-group {
  padding: 20px 0;
  border-top: 1px solid var(--visual-neutral-200);
  background: transparent;
}

.evidence-group--clients {
  padding-block: 20px;
}

.evidence-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 15px;
}

.evidence-heading p {
  margin: 0;
  color: var(--visual-blue-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.evidence-heading span {
  color: #7b8794;
  font-size: 0.78rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  background: #e8edf3;
}

.client-logo-grid figure,
.partner-list figure {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #fff;
}

.client-logo-grid figure {
  min-height: 78px;
  padding: 16px 14px;
}

.client-logo-grid img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.trust-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.certification-list article {
  display: grid;
  min-width: 0;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  background: #fff;
}

.certification-list img,
.evidence-cue {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  object-fit: contain;
}

.evidence-cue {
  border: 1px solid rgba(27, 100, 218, 0.2);
  border-radius: 15px;
  color: var(--visual-blue-700);
  background: var(--visual-blue-100);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.evidence-cue--venture {
  color: #17734b;
  border-color: rgba(23, 115, 75, 0.2);
  background: #eaf8ef;
}

.certification-list strong,
.certification-list span {
  display: block;
}

.certification-list strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.certification-list span {
  color: var(--visual-neutral-600);
  font-size: 0.72rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.partner-list figure {
  min-height: 64px;
  padding: 10px 18px;
  border: 1px solid #e8edf3;
  border-radius: 12px;
}

.partner-list img {
  display: block;
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.partner-list figure:last-child img {
  max-height: 42px;
}

.partner-wordmark {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.partner-wordmark--naver {
  color: #03a84e;
}

.claim-note {
  margin: 10px 0 0;
  color: #84909c;
  font-size: 0.68rem;
}

.services {
  min-height: 820px;
  background: var(--visual-blue-050);
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--visual-neutral-600);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 258px;
  flex-direction: column;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid var(--visual-neutral-200);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 75, 153, 0.045);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.service-card::after {
  position: absolute;
  right: -32px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--visual-blue-100);
  content: "";
}

.service-card svg {
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
  color: var(--visual-blue-600);
}

.service-card > span:not(.service-card__cta) {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #9ba4ad;
  font-size: 0.7rem;
  font-weight: 800;
}

.service-card p {
  max-width: 310px;
  min-height: 2.9em;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--visual-neutral-600);
  font-size: 0.9rem;
  line-height: var(--visual-line-height-body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  color: inherit;
  font-size: 0.76rem;
  font-weight: var(--visual-font-weight-navigation);
  text-decoration: none;
}

.service-card__cta i {
  font-style: normal;
}

.quick-guide {
  min-height: 670px;
  display: grid;
  align-items: center;
  background: #fff;
}

.quick-guide__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 110px;
  align-items: start;
}

.quick-guide__grid > div:first-child > p:last-child {
  max-width: 430px;
  color: var(--visual-neutral-600);
}

.faq-list {
  border-top: 1px solid var(--visual-neutral-200);
}

.faq-list details {
  border-bottom: 1px solid var(--visual-neutral-200);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 82px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--visual-blue-600);
  font-size: 1.3rem;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 610px;
  margin: -10px 0 26px;
  color: var(--visual-neutral-600);
  font-size: 0.9rem;
}

.final-cta {
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--visual-blue-600), var(--visual-blue-700));
}

.final-cta__inner {
  position: relative;
}

.final-cta__inner::before,
.final-cta__inner::after {
  position: absolute;
  width: 180px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  content: "";
}

.final-cta__inner::before {
  top: -80px;
  left: -40px;
  transform: rotate(11deg);
}

.final-cta__inner::after {
  right: -40px;
  bottom: -90px;
  transform: rotate(-11deg);
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 auto;
  color: #dbe8fb;
}

.final-cta .eyebrow {
  color: #dbe8fb;
}

.final-cta .button--dark {
  color: var(--visual-blue-700);
  background: #fff;
}

.final-cta .button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.site-footer {
  padding: 82px 0 92px;
  color: #fff;
  background: var(--visual-blue-900);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1.25fr 0.8fr 0.8fr;
  gap: 48px;
}

.site-footer__grid > div:not(.site-footer__brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__grid b {
  margin-bottom: 10px;
  color: #6f8995;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.site-footer__grid a,
.site-footer__grid span {
  color: #b7c5cc;
  font-size: 0.78rem;
  text-decoration: none;
}

.site-footer__brand p {
  margin: 14px 0 42px;
  color: #b7c5cc;
  font-size: 0.82rem;
}

.site-footer__brand small {
  color: #617985;
  font-size: 0.66rem;
}

@media (min-width: 981px) and (max-width: 1399px) {
  .company__photo {
    object-position: 140% center;
  }
}

@media (min-width: 1500px) and (max-width: 1799px) {
  .company__photo {
    width: 80%;
  }
}

@media (min-width: 1800px) {
  .company__photo {
    width: 70%;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .company__grid,
  .trust__heading,
  .section-heading,
  .quick-guide__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__content {
    padding-top: 36px;
  }

  .hero__visual {
    justify-self: center;
    width: min(600px, 86vw);
  }

  .company::after {
    background: linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(247, 250, 255, 0.58) 72%,
      rgba(247, 250, 255, 0.5) 100%
    );
  }

  .company__photo {
    top: 40%;
    right: auto;
    left: 0;
    width: 100%;
    height: 60%;
    object-position: 72% center;
    opacity: 0.22;
  }

  .company__story {
    margin-left: 0;
  }

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

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

  .client-logo-grid,
  .certification-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .main-nav {
    display: none;
  }

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

  .hero {
    min-height: 0;
  }

  .hero__grid {
    gap: 20px;
    padding: 72px 0 74px;
  }

  h1 {
    font-size: clamp(3.55rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
  }

  .hero__support br {
    display: none;
  }

  .hero__visual {
    width: min(104%, 500px);
    justify-self: center;
  }

  .hero__visual p {
    right: 16px;
    bottom: -2px;
    font-size: 0.56rem;
  }

  .hero__foot {
    display: none;
  }

  .section {
    padding-block: 86px;
  }

  .trust {
    padding-block: 78px 62px;
  }

  .company__story article {
    grid-template-columns: 114px 1fr;
    gap: 12px;
  }

  .service-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics article {
    padding: 21px 18px 19px;
  }

  .metrics article:nth-child(odd) {
    border-left: 0;
  }

  .metrics article:nth-child(n + 3) {
    border-top: 1px solid rgba(15, 75, 153, 0.1);
  }

  .evidence-group {
    padding: 18px 0;
  }

  .evidence-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .client-logo-grid figure {
    min-height: 82px;
    padding: 17px 16px;
  }

  .certification-list {
    grid-template-columns: 1fr;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 244px;
  }

  h1 span:last-child {
    white-space: normal;
  }

  .final-cta__inner::before,
  .final-cta__inner::after {
    display: none;
  }
}
