:root {
  --navy: #0d2261;
  --cyan: #12a5ed;
  --yellow: #ffeb3b;
  --text: #2b2b33;
  --gray: #e1e1e1;
  --white: #ffffff;
  --content: 1140px;
  --header-height: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 54px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "IBM Plex Sans KR", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.content-width {
  width: min(calc(100% - 126px), var(--content));
  margin-inline: auto;
}

.section-title,
.site-header,
.hero,
.service-card,
.reason-section,
.case-card,
.newsletter,
.process-section,
.consult-section,
.contact-us-section,
.closing-section,
.site-footer {
  font-family: Pretendard, sans-serif;
}

.section-title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.section-title-light {
  color: var(--white);
}

.gray-section {
  background: linear-gradient(#e1e1e1, #e2e2e2);
}

.down-mark {
  display: block;
  width: 34px;
  height: 30px;
  margin: 0 auto 54px;
  color: #aaa;
}

.down-mark span {
  display: block;
  width: 17px;
  height: 17px;
  margin: -7px auto 0;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}

.down-mark-light {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: transparent;
  transition: height 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.site-header.is-scrolled {
  height: 54px;
  background: rgba(25, 25, 25, 0.58);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(5px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 126px), var(--content));
  height: 100%;
  align-items: center;
  margin-inline: auto;
}

.logo {
  display: flex;
  width: 220px;
  height: 53px;
  align-items: center;
  flex: 0 0 auto;
  transition: width 0.3s ease, height 0.3s ease;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .logo {
  width: 180px;
  height: 43px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-right: auto;
  margin-left: 144px;
  transform: translateY(5px);
}

.desktop-nav a {
  position: relative;
  padding: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: 720px;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: #18344b;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035) translate3d(0, 0, 0);
  transform-origin: center center;
  animation: hero-cinematic-drift 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-cinematic-drift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(-1.3%, -0.5%, 0);
  }
}

.hero-shade {
  background: rgba(5, 18, 32, 0.49);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 730px;
  margin: 0 auto;
  padding-top: 178px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 29px;
  padding-bottom: 12px;
  font-size: 60px;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: 0;
}

.hero-content > p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
}

.mobile-copy {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 80px;
}

.quick-button {
  display: flex;
  min-width: 165px;
  height: 53px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 15px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.quick-button::after {
  display: none;
}

.quick-button:hover {
  filter: brightness(1.04);
  transform: translateY(-3px);
}

.quick-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.quick-button img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.phone-button {
  padding-inline: 10px;
  color: #333;
  background: var(--white);
}

.kakao-button {
  height: 56px;
  padding-inline: 32px;
  color: #333;
  background: var(--yellow);
}

.consult-button {
  padding-inline: 33px;
  color: var(--white);
  background: var(--navy);
}

/* Greeting */
.greeting {
  min-height: 1114px;
  padding: 133px 0 87px;
  background: var(--white);
}

.greeting .down-mark {
  margin-bottom: 45px;
}

.greeting-grid {
  display: grid;
  align-items: center;
  gap: 63px;
  margin-top: 100px;
  grid-template-columns: 538px 1fr;
}

.representative {
  transform: translateY(-45px);
  text-align: center;
}

.representative img {
  width: 286px;
  height: 286px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.75) brightness(1.08);
}

.representative p {
  margin: 62px 0 0;
  font-family: Pretendard, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.35em;
}

.representative p span {
  margin-right: 24px;
  font-size: 22px;
  letter-spacing: 0.03em;
}

.greeting-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.greeting-copy p {
  margin: 0 0 20px;
}

.greeting-copy strong {
  font-weight: 700;
}

/* Services */
.service-section {
  min-height: 690px;
  padding: 93px 0 57px;
}

.service-section .down-mark {
  margin-bottom: 86px;
}

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

.service-card {
  position: relative;
  height: 201px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(0.75);
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card span {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 13px;
  background: rgba(13, 34, 97, 0.52);
  font-size: 21px;
  font-weight: 500;
}

/* Reasons */
.reason-section {
  position: relative;
  min-height: 842px;
  padding: 68px 0 0;
  overflow: hidden;
  background: url("./assets/brand/photos/collaboration-bg.webp") center / cover no-repeat;
}

.reason-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(33, 25, 21, 0.65) 30%, rgba(34, 34, 34, 0.95) 100%);
}

.reason-section .section-title {
  position: relative;
  z-index: 2;
}

.reason-section .down-mark {
  margin-bottom: 71px;
}

.reason-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  margin-top: 25px;
  grid-template-columns: repeat(3, 1fr);
}

.reason-cards article {
  min-height: 360px;
  padding: 100px 38px 35px;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(3px);
}

.reason-cards .reason-card-navy {
  color: var(--white);
  background: rgba(13, 34, 97, 0.72);
}

.reason-cards h3 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 700;
}

.reason-cards p {
  margin: 0;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  height: 122px;
  margin-top: 50px;
  color: var(--white);
  grid-template-columns: repeat(3, 1fr);
}

.stats > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.stats strong {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.stats span {
  margin-top: 12px;
  color: var(--yellow);
  font-size: 19px;
  font-weight: 700;
}

/* Cases */
.cases-section {
  min-height: 866px;
  padding: 99px 0 38px;
}

.cases-section .down-mark {
  margin-bottom: 55px;
}

.more-link {
  display: block;
  width: max-content;
  margin: 10px auto 0;
  font-family: Pretendard, sans-serif;
  font-size: 14px;
}

.case-grid {
  display: grid;
  gap: 36px;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
}

.case-card {
  padding: 18px 18px 25px;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px);
}

.case-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top center;
}

.case-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.case-card p {
  margin: 0;
  color: #666;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
}

/* Newsletter */
.newsletter {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.newsletter-inner {
  display: grid;
  height: 94px;
  align-items: center;
  gap: 34px;
  grid-template-columns: 220px 1fr 110px 24px;
}

.newsletter-label {
  display: flex;
  align-items: center;
  gap: 24px;
}

.newsletter-label svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.42);
}

.newsletter-label h2 {
  margin: 0;
  font-size: 20px;
}

.newsletter-inner > a {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-inner > a::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.newsletter time {
  font-size: 13px;
}

.newsletter-arrows {
  font-size: 11px;
  line-height: 1.2;
}

/* Newsletter page */
.newsletter-page {
  color: var(--text);
  background: #f4f5f7;
}

.newsletter-page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: #12264d url("./assets/brand/photos/collaboration-bg.webp") center 47% / cover no-repeat;
  font-family: Pretendard, sans-serif;
}

.newsletter-page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 41, 0.91) 0%, rgba(4, 18, 41, 0.68) 54%, rgba(4, 18, 41, 0.42) 100%),
    linear-gradient(0deg, rgba(3, 15, 36, 0.28), transparent 52%);
}

.newsletter-page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 178px;
}

.newsletter-page-hero-content > p {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.newsletter-page-hero-content h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.newsletter-page-hero-content > span {
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.newsletter-content {
  padding: 38px 0 110px;
  font-family: Pretendard, sans-serif;
}

.newsletter-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  color: #8a8f99;
  font-size: 13px;
}

.newsletter-breadcrumb a:hover {
  color: var(--navy);
}

.newsletter-page-layout {
  display: grid;
  align-items: start;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.newsletter-article-list {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.newsletter-article {
  padding: 66px 72px 54px;
  border: 1px solid #e4e7eb;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(24, 35, 56, 0.06);
}

.newsletter-article-header {
  padding-bottom: 42px;
  border-bottom: 1px solid #e7e9ed;
}

.newsletter-category {
  display: inline-flex;
  padding: 8px 13px;
  color: var(--navy);
  border-radius: 6px;
  background: #eaf7fe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.newsletter-article-header h2 {
  margin: 24px 0 22px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.34;
  letter-spacing: -0.045em;
}

.newsletter-article-header time {
  color: #969ca6;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
}

.newsletter-cover {
  margin: 46px 0 42px;
}

.newsletter-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.newsletter-cover figcaption {
  margin-top: 12px;
  color: #979ca5;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 12px;
  text-align: center;
}

.newsletter-lead {
  margin: 0 0 54px;
  color: #222d3d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: -0.02em;
}

.newsletter-article > section {
  margin-top: 54px;
}

.newsletter-article > section h3 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.newsletter-article > section h3::before {
  position: absolute;
  top: 0.24em;
  bottom: 0.18em;
  left: 0;
  width: 5px;
  border-radius: 6px;
  background: var(--cyan);
  content: "";
}

.newsletter-article > section p {
  margin: 0;
  color: #525a67;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 16px;
  line-height: 2;
}

.newsletter-highlight {
  margin: 54px 0 0;
  padding: 38px 42px;
  color: var(--white);
  border-radius: 18px;
  background: var(--navy);
}

.newsletter-highlight span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.newsletter-highlight p {
  margin: 13px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
}

.newsletter-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: newsletter-check;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-checklist li {
  position: relative;
  min-height: 132px;
  padding: 28px 24px 24px 68px;
  border: 1px solid #e5e8ed;
  border-radius: 16px;
  background: #f8fafc;
  counter-increment: newsletter-check;
}

.newsletter-checklist li::before {
  position: absolute;
  top: 25px;
  left: 22px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  content: counter(newsletter-check, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
}

.newsletter-checklist strong,
.newsletter-checklist span {
  display: block;
}

.newsletter-checklist strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.newsletter-checklist span {
  color: #69717d;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.newsletter-byline {
  margin: 34px 0 0;
  color: #5b6b82;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
}

.newsletter-byline b {
  color: var(--navy);
  font-weight: 700;
}

.newsletter-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid #e7e9ed;
}

.newsletter-article-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.newsletter-article-footer span {
  padding: 7px 10px;
  color: #68717f;
  border-radius: 5px;
  background: #f0f2f5;
  font-size: 12px;
}

.newsletter-article-footer > a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.newsletter-sidebar {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 18px;
}

.newsletter-side-card {
  padding: 30px;
  border: 1px solid #e2e5ea;
  border-radius: 22px;
  background: var(--white);
}

.newsletter-side-card > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.newsletter-side-card h2 {
  margin: 13px 0 20px;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.newsletter-side-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: #626a77;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  list-style: none;
}

.newsletter-side-card li {
  position: relative;
  padding-left: 16px;
}

.newsletter-side-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.newsletter-consult-card {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.newsletter-consult-card p,
.newsletter-office-card p {
  margin: 0 0 22px;
  color: #6a727f;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.newsletter-consult-card p {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-consult-card a {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  border-radius: 25px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.newsletter-consult-card a:last-child {
  color: #222;
  background: var(--yellow);
}

.newsletter-office-card h2 {
  margin-bottom: 9px;
}

.newsletter-office-card p {
  margin-bottom: 0;
}

.newsletter-floating-consult,
.home-floating-actions {
  display: none;
}

/* Process */
.process-section {
  min-height: 920px;
  padding: 105px 0 100px;
  overflow: hidden;
}

.process-section .down-mark {
  margin-bottom: 52px;
}

.process-scroll {
  margin-top: 74px;
  overflow-x: auto;
  scrollbar-width: none;
}

.process-scroll::-webkit-scrollbar {
  display: none;
}

.process-list {
  display: flex;
  gap: 30px;
  min-width: max-content;
  padding-bottom: 24px;
}

.process-list article {
  position: relative;
  width: 244px;
  height: 320px;
  flex: 0 0 244px;
  padding: 34px 58px 28px;
  border-radius: 38px 38px 0 0;
  background: var(--white);
}

.process-list article:not(:last-child)::after {
  position: absolute;
  top: 119px;
  right: -38px;
  color: var(--text);
  content: "····›";
  font-size: 28px;
  letter-spacing: -4px;
}

.process-list article > span {
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
}

.process-list b {
  position: absolute;
  top: 31px;
  right: 38px;
  display: block;
  width: 46px;
  height: 46px;
}

.process-list b img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-list h3 {
  margin: 32px 0 18px;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: #666;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

/* Consult */
.consult-section {
  min-height: 1067px;
  padding: 75px 0 100px;
  background: var(--white);
}

.consult-grid {
  display: grid;
  gap: 95px;
  margin-top: 62px;
  grid-template-columns: 397px 1fr;
}

.consult-section > .section-title {
  width: 647px;
  margin-right: max(63px, calc((100% - var(--content)) / 2));
  margin-left: auto;
}

.map-panel {
  position: relative;
  height: 575px;
  min-height: 575px;
  align-self: start;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 22px;
  background: #e9e2d8;
}

.naver-map-card {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 16%, rgba(118, 201, 155, 0.34) 0 17%, transparent 18%),
    radial-gradient(circle at 86% 78%, rgba(129, 196, 230, 0.32) 0 20%, transparent 21%),
    #e8ece8;
}

.naver-map-card:focus-visible {
  outline: 3px solid #03c75a;
  outline-offset: -3px;
}

.naver-map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(10, 29, 55, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.naver-map-badge b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: #03c75a;
  color: #fff;
  font-size: 17px;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: linear-gradient(rgba(144, 132, 115, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 132, 115, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotate(-12deg) scale(1.2);
}

.map-road {
  position: absolute;
  height: 22px;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.road-one {
  top: 210px;
  left: -90px;
  width: 580px;
  transform: rotate(18deg);
}

.road-two {
  top: 370px;
  left: -120px;
  width: 640px;
  transform: rotate(-34deg);
}

.map-pin {
  position: absolute;
  top: 47%;
  left: 52%;
  width: 34px;
  height: 34px;
  z-index: 2;
  border: 9px solid #03c75a;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 7px 15px rgba(0, 126, 58, 0.24);
}

.map-address {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(10, 29, 55, 0.16);
}

.map-address strong {
  font-size: 16px;
}

.map-address-text {
  display: block;
  margin-top: 4px;
  color: #666;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
}

.naver-map-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  background: #03c75a;
  color: #fff;
  font-family: Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.naver-map-card:hover .naver-map-link,
.naver-map-card:focus-visible .naver-map-link {
  background: #00ad4e;
}

.consult-form {
  display: grid;
  gap: 20px;
}

:is(.consult-form, .consult-step) > label:not(.agreement) {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

.consult-form em {
  color: #e74444;
  font-style: normal;
}

.consult-form input,
.consult-form select {
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid #24427c;
  border-radius: 2px;
  background: var(--white);
  outline: 0;
}

:is(.consult-form, .consult-step) > label:not(.agreement) > input,
:is(.consult-form, .consult-step) > label:not(.agreement) > select {
  display: block;
  margin-top: 7px;
}

/* 선택 항목은 접어두되 존재는 보이게 한다. */
.consult-optional {
  padding: 0 18px;
  border: 1px solid #d7dfea;
  border-radius: 8px;
  background: #f6f8fb;
}

.consult-optional > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  color: var(--navy);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.consult-optional > summary::-webkit-details-marker {
  display: none;
}

.consult-optional > summary::after {
  margin-left: auto;
  color: #67748a;
  content: "＋";
  font-size: 17px;
}

.consult-optional[open] > summary::after {
  content: "－";
}

.consult-optional > summary b {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e3ecf7;
  color: #3d68a8;
  font-size: 12px;
  font-weight: 600;
}

.consult-optional > *:not(summary) {
  margin-bottom: 18px;
}

.consult-optional > label {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

.consult-optional > label > input,
.consult-optional > label > select {
  display: block;
  margin-top: 7px;
}

.consult-optional.is-standalone {
  border-color: #1ba4dc;
  background: #f2f9fe;
}

/* 2단계 접수: 진행 표시와 단계 블록 */
.consult-step {
  display: grid;
  gap: 20px;
}

.consult-step[hidden] {
  display: none;
}

.consult-progress {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consult-progress li {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 3px solid #dfe5ee;
  color: #8a97a8;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.consult-progress li b {
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dfe5ee;
  color: #67748a;
  font-size: 12px;
}

.consult-progress li.is-current {
  border-top-color: #1ba4dc;
  color: var(--navy);
}

.consult-progress li.is-current b,
.consult-progress li.is-done b {
  background: #1ba4dc;
  color: var(--white);
}

.consult-progress li.is-done {
  border-top-color: #1ba4dc;
  color: #5b6b82;
}

.consult-step-lead {
  margin: 0;
  color: #4d5b70;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.consult-step-lead b {
  color: var(--navy);
}

.consult-step-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.consult-step-actions button[data-details-submit] {
  flex: 1;
}

.consult-form button.text-link {
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: #67748a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.consult-form input:focus,
.consult-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 34, 97, 0.12);
}

.tax-arrears-field small {
  display: block;
  margin-top: 7px;
  color: #67748a;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.agreement {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
}

.agreement input {
  width: 18px;
  height: 18px;
}

.consult-form button {
  height: 54px;
  color: var(--white);
  border: 0;
  border-radius: 3px;
  background: var(--navy);
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: #777;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--navy);
  font-weight: 600;
}

.form-status.is-error {
  color: #be3434;
}

.form-status.is-success {
  color: #148552;
}

.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consult-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.consult-form button.is-ineligible:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

/* Contact + closing + footer */
.contact-us-section {
  height: 420px;
  padding: 76px 0 55px;
  font-family: Pretendard, sans-serif;
  background: var(--white);
}

.contact-us-section h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.contact-us-grid {
  display: grid;
  gap: 24px;
  margin-top: 52px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-us-grid article,
.contact-us-grid .contact-phone {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-us-grid article > span,
.contact-us-grid .contact-phone > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #dbeff9;
  border-radius: 50%;
  background: #f4fbff;
}

.contact-us-grid article > span img,
.contact-us-grid .contact-phone > span img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.contact-phone > span {
  border-color: rgba(255, 255, 255, 0.72) !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, #67f55f, #09c83a) !important;
  box-shadow: 0 6px 16px rgba(8, 201, 58, 0.24);
}

.contact-phone > span img {
  display: block;
  width: 28px;
  height: 28px;
}

.contact-phone > span::before {
  content: none;
}

.contact-us-grid .contact-phone {
  padding: 12px;
  border: 1px solid transparent;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-us-grid .contact-phone:hover {
  border-color: #bce8d2;
  background: #f5fcf8;
  transform: translateY(-2px);
}

.contact-us-grid .contact-phone strong {
  display: block;
  margin: 0;
  color: #159a62;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.contact-us-grid h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.contact-us-grid p,
.contact-us-grid a {
  margin: 0;
  color: #666;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.closing-section {
  position: relative;
  height: 783px;
  padding: 80px 0 0;
  color: var(--white);
  text-align: center;
  background: linear-gradient(rgba(7, 20, 38, 0.75), rgba(7, 20, 38, 0.82)),
    url("./assets/brand/photos/collaboration-bg.webp") center / cover;
}

.closing-message h2 {
  margin: 0;
  font-size: 38px;
  line-height: 57px;
}

.closing-message > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
}

.closing-actions a {
  display: flex;
  min-width: 165px;
  height: 53px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 25px;
  color: #333;
  border-radius: 30px;
  background: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.closing-actions .closing-kakao {
  background: var(--yellow);
}

.closing-actions a:last-child {
  color: var(--white);
  background: var(--navy);
}

.closing-actions img {
  width: 22px;
  height: 22px;
}

.partner-strip {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 0;
  display: grid;
  height: 96px;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.partner-strip a {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.partner-strip a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.partner-strip a img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.partner-strip a {
  height: 58px;
  border-color: transparent;
  background: transparent;
  opacity: 1;
  border-radius: 4px;
}

.partner-strip a img {
  /* 투명 배경에서는 공식 로고를 흰색 단색으로 통일해 가독성을 확보합니다. */
  filter: brightness(0) invert(1) contrast(2) !important;
  max-width: 92%;
  max-height: 38px;
  opacity: 1 !important;
  mix-blend-mode: normal;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

/* 화이트 테마 섹션에 partner-strip을 재사용해도 로고가 자동으로 어두워집니다. */
@media (prefers-color-scheme: light) {
  .partner-strip[data-theme="light"] a {
    background: rgba(15, 35, 70, 0.05);
    border-color: rgba(15, 35, 70, 0.12);
  }

  .partner-strip[data-theme="light"] a img {
    filter: grayscale(0.7) brightness(0.62) contrast(1.12);
  }

  .partner-strip[data-theme="light"] a:hover img,
  .partner-strip[data-theme="light"] a:focus-visible img,
  .partner-strip[data-theme="light"] a:active img {
    filter: none;
  }
}

.partner-strip a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(-2px);
}

.partner-strip a:hover img,
.partner-strip a:focus-visible img,
.partner-strip a:active img {
  filter: none !important;
}

.home-floating-phone {
  border-color: transparent !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

.home-floating-phone img {
  filter: none !important;
}

.closing-actions .closing-call-icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 9px;
  background: linear-gradient(145deg, #67f55f, #09c83a);
  filter: none;
}

.site-footer {
  height: 492px;
  padding: 80px 0 50px;
  color: rgba(255, 255, 255, 0.75);
  background: #343434;
}

.footer-inner > img {
  width: 230px;
  margin-bottom: 25px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-inner nav a {
  font-size: 14px;
}

.footer-inner p {
  margin: 18px 0 0;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 132px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 4px 0 0 4px;
  background: rgba(70, 70, 70, 0.55);
  font-family: Pretendard, sans-serif;
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Shared subpages */
.subpage {
  color: var(--text);
  background: var(--white);
}

.subpage-main,
.subpage-hero,
.subpage-section,
.subpage-process,
.subpage-cta {
  font-family: Pretendard, sans-serif;
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background-color: #10254a;
  background-image: var(--subpage-hero-image);
  background-position: center;
  background-size: cover;
}

.subpage-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 41, 0.91) 0%, rgba(6, 23, 50, 0.72) 52%, rgba(6, 23, 50, 0.35) 100%),
    linear-gradient(0deg, rgba(4, 17, 38, 0.34), transparent 55%);
  content: "";
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 182px;
}

.subpage-kicker {
  display: block;
  margin-bottom: 19px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.subpage-hero h1 {
  max-width: 820px;
  margin: 0 0 25px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.subpage-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.subpage-section {
  padding: 105px 0;
}

.subpage-section-soft {
  background: #f4f6f8;
}

.subpage-heading-grid {
  display: grid;
  align-items: start;
  gap: 75px;
  grid-template-columns: 310px minmax(0, 1fr);
}

.subpage-heading-grid h2,
.subpage-section-title {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.subpage-heading-grid > div > p,
.subpage-section-lead {
  margin: 0;
  color: #59616d;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 17px;
  line-height: 2;
}

.subpage-section-title {
  text-align: center;
}

.subpage-section-lead {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
}

.subpage-feature-grid {
  display: grid;
  gap: 22px;
  margin-top: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subpage-feature-card {
  min-height: 290px;
  padding: 38px 34px 34px;
  border: 1px solid #e1e5ea;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 36, 57, 0.05);
}

.subpage-feature-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #eaf7fe;
}

.subpage-feature-card > span img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.subpage-feature-card h3 {
  margin: 0 0 13px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.subpage-feature-card p {
  margin: 0;
  color: #69717c;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.subpage-split {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.subpage-split-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #dce4ea;
}

.subpage-split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.subpage-split-copy h2 {
  margin: 0 0 25px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.subpage-split-copy > p {
  margin: 0;
  color: #5f6773;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 16px;
  line-height: 2;
}

.subpage-bullet-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.subpage-bullet-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid #e5e8ec;
  border-radius: 14px;
  background: #f8fafb;
}

.subpage-bullet-list li::before {
  position: absolute;
  top: 22px;
  left: 21px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--cyan);
  border-left: 3px solid var(--cyan);
  content: "";
  transform: rotate(-45deg);
}

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

.subpage-bullet-list strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.subpage-bullet-list span {
  color: #707783;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.subpage-process {
  padding: 100px 0;
  color: var(--white);
  background: var(--navy);
}

.subpage-process .subpage-kicker {
  text-align: center;
}

.subpage-process h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.35;
  text-align: center;
  letter-spacing: -0.045em;
}

.subpage-process-grid {
  display: grid;
  gap: 1px;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subpage-process-grid article {
  min-height: 230px;
  padding: 34px 28px;
  background: #102a70;
}

.subpage-process-grid span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.subpage-process-grid h3 {
  margin: 38px 0 12px;
  font-size: 21px;
}

.subpage-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.subpage-case-grid {
  display: grid;
  gap: 25px;
  margin-top: 55px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subpage-case-card {
  overflow: hidden;
  border: 1px solid #e2e5e9;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 15px 42px rgba(26, 38, 58, 0.06);
}

.subpage-case-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.subpage-case-card > div {
  padding: 27px 27px 30px;
}

.subpage-case-card small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.subpage-case-card h3 {
  margin: 10px 0 13px;
  font-size: 21px;
  line-height: 1.45;
}

.subpage-case-card p {
  margin: 0;
  color: #69717c;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.8;
}

.subpage-disclaimer {
  margin-top: 34px;
  padding: 20px 24px;
  color: #68707c;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  background: #f8fafb;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 12px;
  line-height: 1.75;
}

.subpage-cta {
  padding: 95px 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(5, 19, 43, 0.82), rgba(5, 19, 43, 0.88)),
    url("./assets/brand/photos/collaboration-bg.webp") center 58% / cover no-repeat;
}

.subpage-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.subpage-cta p {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 16px;
}

.subpage-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.subpage-cta-actions a {
  display: flex;
  min-width: 180px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 28px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.subpage-cta-actions a:last-child {
  color: #222;
  background: var(--yellow);
}

.subpage-floating-consult {
  display: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 24px;
    margin-left: auto;
    transform: none;
  }

  .desktop-nav a {
    font-size: 18px;
  }

  .greeting-grid {
    gap: 65px;
    grid-template-columns: 400px 1fr;
  }

  .representative img {
    width: 360px;
    height: 360px;
  }

  .representative {
    transform: none;
  }

  .newsletter-page-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subpage-heading-grid {
    gap: 45px;
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .subpage-split {
    gap: 42px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .content-width,
  .header-inner {
    width: calc(100% - 40px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled:not(.menu-active) {
    background: rgba(25, 25, 25, 0.45);
  }

  .logo,
  .site-header.is-scrolled .logo {
    width: 218px;
    height: 52px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 6px;
    color: var(--white);
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 7px;
    width: 26px;
    height: 3px;
    border-radius: 4px;
    background: currentColor;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
  }

  .menu-toggle span:nth-child(1) { top: 10px; }
  .menu-toggle span:nth-child(2) { top: 19px; }
  .menu-toggle span:nth-child(3) { top: 28px; }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 35px;
    color: var(--white);
    background: rgba(8, 22, 55, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: grid;
    width: min(80%, 320px);
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 22px;
    text-align: center;
  }

  .mobile-consult {
    width: 220px;
    padding: 14px;
    color: #333;
    border-radius: 28px;
    background: var(--yellow);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
  }

  .hero {
    height: 100svh;
    min-height: 740px;
  }

  .hero-video {
    object-position: 72% center;
  }

  .hero-shade {
    background: rgba(12, 31, 52, 0.4);
  }

  .hero-content {
    width: 300px;
    padding-top: 130px;
  }

  .hero h1 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 30px;
    line-height: 39px;
  }

  .hero-content > p {
    font-size: 15px;
    line-height: 23.25px;
  }

  .hero-content > p br {
    display: initial;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-actions {
    position: static;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
    filter: none;
  }

  .hero-actions .quick-button {
    width: 168px;
    min-width: 168px;
  }

@keyframes mobile-quick-float {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-4px);
    }
  }

  .greeting,
  .service-section,
  .reason-section,
  .cases-section,
  .process-section,
  .consult-section {
    min-height: auto;
  }

  .consult-section > .section-title {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .section-title {
    font-size: 30px;
  }

  .greeting {
    padding: 80px 0;
  }

  .greeting-grid {
    gap: 50px;
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .representative img {
    width: min(310px, 82vw);
    height: min(310px, 82vw);
  }

  .representative p {
    margin-top: 35px;
    font-size: 22px;
  }

  .representative p span {
    font-size: 17px;
  }

  .greeting-copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .greeting-copy br {
    display: none;
  }

  .service-section {
    padding: 70px 0 80px;
  }

  .service-grid {
    gap: 22px;
    margin-top: 65px;
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 190px;
  }

  .reason-section {
    padding-top: 60px;
  }

  .reason-cards {
    gap: 18px;
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .reason-cards article {
    min-height: 210px;
    padding: 55px 30px 30px;
    border-radius: 14px;
  }

  .reason-cards h3 {
    font-size: 20px;
  }

  .stats {
    height: auto;
    padding: 45px 0;
    grid-template-columns: 1fr;
  }

  .stats > div {
    padding: 25px 0;
  }

  .cases-section {
    padding: 75px 0 85px;
  }

  .case-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .case-card img {
    height: auto;
    max-height: 420px;
  }

  .newsletter-inner {
    height: auto;
    min-height: 120px;
    gap: 14px;
    padding: 22px 0;
    grid-template-columns: 1fr 70px;
  }

  .newsletter-label {
    grid-column: 1 / -1;
  }

  .newsletter-inner > a {
    grid-column: 1;
  }

  .newsletter-arrows {
    display: none;
  }

  .newsletter-page-hero {
    min-height: 500px;
    background-position: 62% center;
  }

  .newsletter-page-hero-content {
    padding-top: 148px;
  }

  .newsletter-page-hero-content > p {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .newsletter-page-hero-content h1 {
    margin-bottom: 19px;
    font-size: 39px;
  }

  .newsletter-page-hero-content > span {
    font-size: 14px;
    line-height: 1.7;
  }

  .newsletter-page-hero-content > span br {
    display: none;
  }

  .newsletter-content {
    padding: 26px 0 90px;
  }

  .newsletter-breadcrumb {
    margin-bottom: 24px;
  }

  .newsletter-page-layout {
    gap: 24px;
  }

  .newsletter-article {
    padding: 38px 24px 34px;
    border-radius: 22px;
  }

  .newsletter-article-header {
    padding-bottom: 30px;
  }

  .newsletter-category {
    font-size: 10px;
  }

  .newsletter-article-header h2 {
    margin: 19px 0 17px;
    font-size: 27px;
    line-height: 1.45;
  }

  .newsletter-article-header h2 br {
    display: none;
  }

  .newsletter-cover {
    margin: 30px 0;
  }

  .newsletter-cover img {
    min-height: 230px;
  }

  .newsletter-lead {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.8;
  }

  .newsletter-article > section {
    margin-top: 42px;
  }

  .newsletter-article > section h3 {
    font-size: 22px;
  }

  .newsletter-article > section p {
    font-size: 14px;
    line-height: 1.95;
  }

  .newsletter-highlight {
    margin-top: 42px;
    padding: 30px 25px;
  }

  .newsletter-highlight p {
    font-size: 18px;
  }

  .newsletter-checklist {
    grid-template-columns: 1fr;
  }

  .newsletter-checklist li {
    min-height: 112px;
  }

  .newsletter-article-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

  .newsletter-sidebar {
    grid-template-columns: 1fr;
  }

  .newsletter-floating-consult,
  .subpage-floating-consult {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 20px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    background: var(--navy);
    box-shadow: 0 8px 16px rgba(4, 16, 35, 0.24);
    font-size: 10px;
    font-weight: 800;
    animation: mobile-quick-float 3.6s ease-in-out infinite;
  }

  .newsletter-floating-consult img,
  .subpage-floating-consult img {
    width: 26px;
    height: 26px;
    padding: 3px;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
  }

  .home-floating-actions {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    filter: drop-shadow(0 8px 14px rgba(4, 16, 35, 0.22));
  }

  .home-floating-button {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    animation: mobile-quick-float 3.6s ease-in-out infinite;
  }

  .home-floating-button img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .home-floating-phone {
    width: 58px;
    height: 58px;
    padding: 6px 5px 5px;
    color: #fff;
    background: linear-gradient(145deg, #67f55f, #09c83a) !important;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none !important;
    animation: none;
  }

  .home-floating-kakao {
    color: #222;
    background: var(--yellow);
  }

  .home-floating-consult {
    color: var(--white);
    background: var(--navy);
  }

  .home-floating-phone img {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
  }

  .home-floating-phone span { display: block; color: #fff; }
  .home-floating-kakao { padding: 6px 5px 5px; overflow: hidden; }
  .home-floating-kakao img { width: 25px; height: 25px; margin-bottom: 1px; object-fit: contain; }
  .home-floating-consult img { padding: 3px; border-radius: 50%; background: var(--white); }

  .home-floating-actions ~ .back-to-top {
    bottom: 222px;
  }

  .home-floating-phone:active {
    transform: scale(0.92);
  }

  .subpage-hero {
    min-height: 500px;
    background-position: 64% center;
  }

  .subpage-hero-inner {
    padding-top: 148px;
  }

  .subpage-hero h1 {
    max-width: 92%;
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.27;
  }

  .subpage-hero p {
    max-width: 94%;
    font-size: 14px;
    line-height: 1.8;
  }

  .subpage-section {
    padding: 75px 0;
  }

  .subpage-heading-grid {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .subpage-heading-grid h2,
  .subpage-section-title {
    font-size: 31px;
  }

  .subpage-heading-grid > div > p,
  .subpage-section-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .subpage-section-lead {
    margin-top: 15px;
  }

  .subpage-feature-grid {
    gap: 15px;
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .subpage-feature-card {
    min-height: auto;
    padding: 29px 26px;
    border-radius: 19px;
  }

  .subpage-feature-card > span {
    margin-bottom: 22px;
  }

  .subpage-split {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .subpage-split-media,
  .subpage-split-media img {
    min-height: 330px;
  }

  .subpage-split-copy h2 {
    font-size: 31px;
  }

  .subpage-split-copy > p {
    font-size: 14px;
    line-height: 1.9;
  }

  .subpage-process {
    padding: 75px 0;
  }

  .subpage-process h2 {
    font-size: 31px;
  }

  .subpage-process-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .subpage-process-grid article {
    min-height: 195px;
  }

  .subpage-case-grid {
    gap: 18px;
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .subpage-case-card > img {
    height: 240px;
  }

  .subpage-cta {
    padding: 75px 0 100px;
  }

  .subpage-cta h2 {
    font-size: 31px;
  }

  .subpage-cta p {
    font-size: 14px;
  }

  .subpage-cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .subpage-cta-actions a {
    width: 100%;
  }

  .process-section {
    padding: 80px 0;
  }

  .process-scroll {
    margin-top: 55px;
  }

  .process-list {
    width: max-content;
    margin-left: 20px;
  }

  .consult-section {
    padding: 85px 0;
  }

  .consult-grid {
    gap: 45px;
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 390px;
  }

  .closing-section > div > a {
    font-size: 18px;
  }

  .contact-us-section,
  .closing-section,
  .site-footer {
    height: auto;
  }

  .contact-us-section {
    padding: 75px 0;
  }

  .contact-us-section h2 {
    font-size: 48px;
  }

  .contact-us-grid {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .closing-section {
    padding: 80px 0 260px;
  }

  .closing-message h2 {
    font-size: 30px;
    line-height: 1.5;
  }

  .closing-message > p br {
    display: none;
  }

  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .closing-actions a {
    width: 100%;
  }

  .partner-strip {
    bottom: 70px;
    height: auto;
    padding: 18px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-strip span {
    padding: 8px;
  }

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .back-to-top {
    bottom: 92px;
  }
}

@keyframes phone-cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 7px 18px rgba(8, 201, 58, 0.30);
  }
  50% {
    transform: scale(1.055);
    box-shadow: 0 9px 24px rgba(8, 201, 58, 0.48);
  }
}

.geo-faq-section { padding: 110px 0; background: #f4f5f5; }
.geo-faq-section h2 { margin: 12px 0 42px; color: var(--text); font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.045em; }
.geo-faq-list { border-top: 1px solid #cfd6dc; }
.geo-editorial-note { margin-top: 42px; margin-bottom: 42px; padding: 28px 30px; border-left: 4px solid var(--cyan); background: #fff; box-shadow: 0 10px 28px rgba(16, 33, 61, 0.06); }
.geo-editorial-note p { margin: 0; color: #42505e; font-size: 16px; line-height: 1.85; }
.geo-editorial-note p strong { display: block; margin-bottom: 8px; color: #10213d; font-size: 19px; }
.geo-editorial-note > div { display: flex; gap: 18px; margin-top: 18px; color: #6c7883; font-size: 13px; }
.geo-editorial-note nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.geo-editorial-note nav a { padding: 9px 13px; border: 1px solid #b9dceb; color: #0f6f9b; background: #f5fbfe; font-size: 13px; font-weight: 700; }
.geo-faq-list details { border-bottom: 1px solid #cfd6dc; }
.geo-faq-list summary { position: relative; padding: 26px 56px 26px 4px; cursor: pointer; list-style: none; color: #10213d; font-size: 20px; font-weight: 700; }
.geo-faq-list summary::-webkit-details-marker { display: none; }
.geo-faq-list summary::after { position: absolute; top: 24px; right: 8px; content: "+"; color: var(--cyan); font-size: 26px; }
.geo-faq-list details[open] summary::after { content: "−"; }
.geo-faq-list details p { max-width: 900px; margin: 0; padding: 0 56px 28px 4px; color: #52606d; font-size: 16px; line-height: 1.8; }

@media (max-width: 820px) {
  .geo-faq-section { padding: 74px 0; }
  .geo-faq-section h2 { margin-bottom: 28px; font-size: 34px; }
  .geo-editorial-note { margin-top: 28px; margin-bottom: 28px; padding: 22px 20px; }
  .geo-editorial-note > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .geo-faq-list summary { padding: 22px 44px 22px 2px; font-size: 18px; line-height: 1.45; }
  .geo-faq-list summary::after { top: 20px; right: 4px; }
  .geo-faq-list details p { padding: 0 36px 24px 2px; font-size: 15px; }
}

/* Header brand scale: the source logo has generous internal whitespace. */
@media (min-width: 1081px) {
  .logo {
    width: 238px;
    height: 58px;
  }

  .site-header.is-scrolled .logo {
    width: 210px;
    height: 51px;
  }

  .logo img {
    transform: scale(1.28);
    transform-origin: left center;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .logo,
  .site-header.is-scrolled .logo {
    width: 195px;
    height: 48px;
  }

  .logo img {
    transform: scale(1.25);
    transform-origin: left center;
  }
}

@media (max-width: 820px) {
  .logo,
  .site-header.is-scrolled .logo {
    width: 205px;
    height: 50px;
  }

  .logo img {
    transform: scale(1.3);
    transform-origin: left center;
  }

  .contact-us-grid {
    gap: 20px;
  }

  .contact-us-grid article,
  .contact-us-grid .contact-phone {
    min-height: 76px;
    align-items: center;
    gap: 20px;
    padding: 10px 12px;
  }

  .contact-us-grid article > span,
  .contact-us-grid .contact-phone > span {
    width: 56px;
    height: 56px;
  }

  .contact-us-grid article > span img,
  .contact-us-grid .contact-phone > span img {
    width: 34px;
    height: 34px;
  }

  .contact-us-grid h3 {
    margin-bottom: 7px;
    font-size: 20px;
  }

  .contact-us-grid p,
  .contact-us-grid a,
  .contact-us-grid .contact-phone strong {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* Subpage contact band */
.subpage-cta {
  padding: 82px 0;
  background: #0d203c;
}

.subpage-cta > .content-width {
  gap: 12px 70px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.8fr);
}

.subpage-cta h2 {
  position: relative;
  padding-top: 18px;
  font-size: clamp(34px, 3.2vw, 44px);
}

.subpage-cta h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: var(--cyan);
  content: "";
}

.subpage-cta p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.subpage-cta-actions {
  display: grid;
  width: 100%;
  gap: 10px;
  grid-template-columns: 1.15fr 0.85fr;
}

.subpage-cta-actions a {
  width: 100%;
  min-width: 0;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.subpage-cta-actions a:first-child {
  gap: 13px;
  color: #0d203c;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
}

.subpage-cta-actions a:first-child::before {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #1ed760 url("./assets/brand/icons/phone-ios.svg?v=5") center / 22px 22px no-repeat;
  content: "";
}

.subpage-cta-actions a:last-child {
  color: #fff;
  background: transparent;
}

.subpage-cta-actions a:last-child:hover,
.subpage-cta-actions a:last-child:focus-visible {
  color: #0d203c;
  background: #fff;
}

@media (max-width: 820px) {
  .subpage-cta { padding: 70px 0 84px; }
  .subpage-cta > .content-width { display: block; }
  .subpage-cta h2 { font-size: 34px; }
  .subpage-cta p { margin-top: 14px; font-size: 15px; }
  .subpage-cta-actions { display: grid; margin-top: 30px; grid-template-columns: 1fr; }
  .subpage-cta-actions a { height: 72px; }
  .subpage-cta-actions a:first-child { font-size: 24px; }
}

/* Editorial CTA: large contact typography instead of stacked template buttons. */
.subpage-cta {
  padding: 88px 0;
  background: #0b1d35;
}

.subpage-cta > .content-width {
  gap: 16px 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.subpage-cta h2 {
  padding-top: 14px;
  font-size: clamp(32px, 3vw, 42px);
}

.subpage-cta p {
  max-width: 520px;
  margin-top: 5px;
}

.subpage-cta-actions {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.subpage-cta-actions a {
  justify-content: flex-start;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.subpage-cta-actions a:first-child {
  position: relative;
  height: 94px;
  padding: 24px 56px 12px 58px;
  color: #fff;
  background: transparent;
  font-family: "IBM Plex Sans KR", Pretendard, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.subpage-cta-actions a:first-child::before {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #1ed760 url("./assets/brand/icons/phone-ios.svg?v=5") center / 20px 20px no-repeat;
}

.subpage-cta-actions a:first-child::after {
  position: absolute;
  top: 14px;
  left: 58px;
  color: rgba(255, 255, 255, 0.55);
  content: "대표번호";
  font-family: Pretendard, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.subpage-cta-actions a:last-child {
  height: 58px;
  padding: 0 0 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #7dd3f3;
  background: transparent;
  font-size: 16px;
}

.subpage-cta-actions a:last-child::after {
  margin-left: 10px;
  content: "→";
}

.subpage-cta-actions a:first-child:hover,
.subpage-cta-actions a:first-child:focus-visible,
.subpage-cta-actions a:last-child:hover,
.subpage-cta-actions a:last-child:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 820px) {
  .subpage-cta { padding: 68px 0 78px; }
  .subpage-cta h2 { font-size: 33px; }
  .subpage-cta-actions { margin-top: 32px; }
  .subpage-cta-actions a:first-child { height: 98px; padding-right: 14px; padding-left: 54px; font-size: clamp(32px, 10vw, 42px); }
  .subpage-cta-actions a:first-child::after { left: 54px; }
  .subpage-cta-actions a:last-child { padding-left: 54px; }
}

/* Editorial refinement */
:root {
  --navy: #10213d;
  --cyan: #169bd5;
  --yellow: #ffd84d;
  --text: #202b38;
  --gray: #e8e9e8;
  --warm: #f4f2ed;
  --line: #d7dce1;
  --header-height: 86px;
}

body {
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-weight: 400;
}

.site-header:not(.is-scrolled) .desktop-nav a {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
}

.subpage .site-header:not(.is-scrolled),
.newsletter-page .site-header:not(.is-scrolled) {
  background: rgba(11, 28, 54, 0.96);
}

.logo {
  width: 190px;
  height: 46px;
}

.desktop-nav {
  gap: 30px;
  margin-right: 0;
  margin-left: auto;
  transform: none;
}

.desktop-nav a {
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.down-mark {
  display: none;
}

.gray-section {
  background: var(--warm);
}

.section-title,
.consult-section > .section-title {
  width: min(calc(100% - 126px), var(--content));
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  border-left: 4px solid var(--cyan);
  font-size: 40px;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.035em;
}

.quick-button,
.closing-actions a,
.consult-form button {
  border-radius: 5px;
}

.greeting {
  min-height: auto;
  padding: 104px 0 110px;
}

.greeting-grid {
  align-items: start;
  gap: 88px;
  margin-top: 68px;
  grid-template-columns: 360px minmax(0, 1fr);
}

.representative {
  transform: none;
  text-align: left;
}

.representative img {
  width: 360px;
  height: 460px;
  margin: 0;
  border-radius: 2px;
  object-position: center top;
  filter: saturate(0.88) contrast(0.98);
}

.representative p {
  margin-top: 24px;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.representative p span {
  font-size: 14px;
  letter-spacing: 0;
}

.greeting-copy {
  max-width: 650px;
  padding-top: 6px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.greeting-copy p {
  margin: 0 0 24px;
}

.service-section {
  min-height: auto;
  padding: 94px 0 106px;
}

.service-grid {
  gap: 18px;
  margin-top: 58px;
}

.service-card {
  height: 360px;
  border: 1px solid #d4d8dc;
  border-radius: 0;
  box-shadow: none;
}

.service-card img {
  filter: saturate(0.82) contrast(0.96);
}

.service-card span {
  bottom: 0;
  height: 64px;
  justify-content: flex-start;
  padding: 0 24px;
  border-radius: 0;
  background: rgba(11, 31, 58, 0.92);
  font-size: 18px;
  font-weight: 700;
}

.reason-section {
  min-height: auto;
  padding: 72px 0 76px;
  background: var(--navy);
}

.reason-shade {
  display: none;
}

.reason-cards {
  gap: 16px;
  margin-top: 38px;
  border-top: 0;
  border-bottom: 0;
}

/* 어두운 배경 위 텍스트만 얹으면 영역 구분이 흐려져 반투명 카드로 감싼다. */
.reason-cards article,
.reason-cards .reason-card-navy {
  min-height: 0;
  padding: 26px 26px 28px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: none;
}

.reason-cards article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(27, 164, 220, 0.18);
}

.reason-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* 픽토그램 원본이 어두운 네이비라 다크 배경에서는 흰색으로 반전한다. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.reason-step {
  display: block;
  margin-bottom: 4px;
  color: #1ba4dc;
  font-family: "IBM Plex Sans KR", Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-cards h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.reason-cards p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Pretendard, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.stats {
  display: none;
}

.cases-section {
  min-height: auto;
  padding: 96px 0 105px;
}

.case-grid {
  gap: 26px;
  margin-top: 52px;
}

.case-card {
  padding: 0 0 24px;
  border-bottom: 1px solid #cfd4d8;
  background: transparent;
}

.case-card:hover {
  box-shadow: none;
  transform: none;
}

.case-card img {
  height: 250px;
  filter: saturate(0.88);
}

.case-card h3 {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
}

.case-card p {
  font-family: Pretendard, sans-serif;
  line-height: 1.8;
}

.newsletter-arrows {
  display: none;
}

.process-section {
  min-height: auto;
  padding: 94px 0 100px;
}

.process-scroll {
  margin-top: 54px;
}

.process-list {
  gap: 0;
  border-top: 1px solid #cfd4d8;
}

.process-list article {
  width: 230px;
  height: 275px;
  flex-basis: 230px;
  padding: 30px 26px;
  border-right: 1px solid #cfd4d8;
  border-radius: 0;
  background: transparent;
}

.process-list article:first-child {
  border-left: 1px solid #cfd4d8;
}

.process-list article:not(:last-child)::after {
  display: none;
}

.process-list b {
  top: 25px;
  right: 24px;
  width: 40px;
  height: 40px;
}

.process-list h3 {
  margin-top: 38px;
}

.process-list p {
  font-family: Pretendard, sans-serif;
}

.consult-section {
  min-height: auto;
  padding: 96px 0 108px;
}

.consult-grid {
  gap: 70px;
  margin-top: 58px;
  grid-template-columns: 420px 1fr;
}

.map-panel,
.consult-form input,
.consult-form select {
  border-radius: 0;
}

.contact-us-section {
  height: auto;
  padding: 90px 0;
}

.contact-us-section h2 {
  font-size: 54px;
  letter-spacing: -0.04em;
}

.closing-section {
  height: auto;
  min-height: 640px;
}

.partner-strip {
  min-height: 116px;
  height: auto;
  padding: 22px 0 18px;
  row-gap: 8px;
}

.partner-strip small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  height: auto;
  padding: 38px 0;
}

.footer-inner {
  display: grid;
  align-items: start;
  gap: 4px 38px;
  grid-template-columns: 175px minmax(0, 1fr);
}

.footer-inner > img {
  width: 175px;
  margin: 0;
  grid-row: 1 / span 4;
}

.footer-inner nav {
  gap: 16px;
  padding-bottom: 13px;
}

.footer-inner p {
  margin: 5px 0 0;
  font-family: Pretendard, sans-serif;
  line-height: 1.55;
}

/* Subpages */
.subpage-main,
.subpage-main p,
.subpage-main li,
.newsletter-page main,
.newsletter-page main p,
.newsletter-page main li {
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.subpage-hero {
  min-height: 405px;
  background-color: var(--navy);
  background-image: var(--subpage-hero-image) !important;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 55% 100%;
}

.subpage-hero::before {
  background: linear-gradient(90deg, #10213d 0%, #10213d 43%, rgba(16, 33, 61, 0.96) 52%, rgba(16, 33, 61, 0.34) 100%);
}

.subpage-hero-inner {
  padding-top: 150px;
  padding-bottom: 76px;
}

.subpage-kicker {
  display: inline-block;
  margin-bottom: 21px;
  padding-left: 11px;
  color: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.subpage-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.5vw, 56px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.subpage-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.subpage-section {
  padding: 88px 0;
}

.subpage-section-soft {
  background: var(--warm);
}

.subpage-heading-grid {
  gap: 88px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 300px minmax(0, 1fr);
}

.subpage-heading-grid h2,
.subpage-section-title,
.subpage-split-copy h2,
.subpage-process h2 {
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.subpage-heading-grid > div > p,
.subpage-section-lead,
.subpage-split-copy > p {
  color: #59626d;
  font-size: 15px;
  line-height: 1.95;
}

.subpage-section-title {
  padding-left: 16px;
  border-left: 4px solid var(--cyan);
  text-align: left;
}

.subpage-section-lead {
  max-width: 760px;
  margin: 17px 0 0;
  text-align: left;
}

.subpage-section > .content-width > .subpage-kicker,
.subpage-section-soft > .content-width > .subpage-kicker {
  color: #647180;
}

.subpage-feature-grid {
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.subpage-feature-card {
  min-height: 245px;
  padding: 31px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.subpage-feature-card:first-child {
  border-left: 1px solid var(--line);
}

.subpage-feature-card > span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  border-radius: 0;
  background: transparent;
}

.subpage-feature-card > span img {
  width: 36px;
  height: 36px;
}

.subpage-feature-card h3 {
  font-size: 20px;
}

.subpage-feature-card p {
  color: #616b76;
  font-size: 14px;
  line-height: 1.8;
}

.support-page .subpage-feature-grid {
  grid-template-columns: 1fr;
}

.support-page .subpage-feature-card {
  display: grid;
  min-height: 0;
  align-items: center;
  padding: 24px 0;
  border-right: 0;
  border-left: 0;
  grid-template-columns: 60px 240px minmax(0, 1fr);
}

.support-page .subpage-feature-card > span,
.support-page .subpage-feature-card h3,
.support-page .subpage-feature-card p {
  margin: 0;
}

.subpage-split {
  align-items: stretch;
  gap: 72px;
}

.subpage-split-media,
.subpage-split-media img {
  min-height: 480px;
  border-radius: 0;
}

.subpage-split-copy {
  align-self: center;
}

.subpage-split-copy .subpage-kicker {
  color: #647180;
}

.subpage-data-panel {
  align-self: stretch;
  padding: 0 0 36px;
  color: var(--white);
  background: var(--navy);
}

.subpage-data-panel-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.95);
}

.subpage-data-panel > strong {
  display: block;
  margin: 30px 38px 24px;
  font-size: 24px;
}

.subpage-data-panel dl {
  margin: 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.subpage-data-panel dl > div {
  display: grid;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: 80px 1fr;
}

.subpage-data-panel dt {
  color: #62c9f5;
  font-weight: 700;
}

.subpage-data-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.subpage-bullet-list {
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.subpage-bullet-list li {
  padding: 17px 0 17px 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.subpage-bullet-list li::before {
  top: 22px;
  left: 2px;
}

.subpage-process {
  padding: 88px 0;
  color: var(--text);
  background: #eef0f1;
}

.subpage-process .subpage-kicker {
  color: #647180;
  text-align: left;
}

.subpage-process h2 {
  padding-left: 16px;
  border-left: 4px solid var(--cyan);
  text-align: left;
}

.subpage-process-grid {
  gap: 0;
  margin-top: 42px;
  overflow: visible;
  border: 0;
  border-top: 1px solid #cbd1d6;
  border-radius: 0;
  background: transparent;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subpage-process-grid article {
  display: grid;
  min-height: 0;
  align-items: start;
  padding: 25px 22px 25px 0;
  border-right: 1px solid #cbd1d6;
  border-bottom: 1px solid #cbd1d6;
  background: transparent;
  grid-template-columns: 52px 145px minmax(0, 1fr);
}

.subpage-process-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-right: 0;
}

.subpage-process-grid span {
  color: #188ec0;
  font-size: 12px;
}

.subpage-process-grid h3 {
  margin: 0;
  font-size: 18px;
}

.subpage-process-grid p {
  margin: 0;
  color: #606a75;
  font-size: 13px;
  line-height: 1.7;
}

.subpage-disclaimer {
  margin-top: 28px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.65);
}

.cases-page .subpage-case-grid {
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
}

.cases-page .subpage-case-card {
  display: grid;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: 320px minmax(0, 1fr);
}

.cases-page .subpage-case-card > img {
  height: 240px;
}

.cases-page .subpage-case-card > div {
  padding: 32px 38px;
}

.subpage-case-card small {
  color: #188ec0;
  font-size: 12px;
  letter-spacing: 0;
}

.case-focus {
  margin-top: 20px !important;
  padding-top: 15px;
  color: #65707a !important;
  border-top: 1px solid var(--line);
}

.case-focus b {
  margin-right: 12px;
  color: var(--navy);
}

.subpage-cta {
  padding: 72px 0;
  text-align: left;
  background: var(--navy);
}

.subpage-cta > .content-width {
  display: grid;
  align-items: center;
  gap: 10px 50px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.subpage-cta h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  letter-spacing: -0.03em;
}

.subpage-cta p {
  margin-top: 0;
  font-size: 14px;
}

.subpage-cta-actions {
  margin-top: 0;
  grid-row: 1 / span 2;
  grid-column: 2;
}

.subpage-cta-actions a,
.newsletter-consult-card a {
  border-radius: 4px;
}

/* Newsletter */
.newsletter-page-hero {
  min-height: 430px;
  background: var(--navy) url("./assets/brand/photos/collaboration-bg.webp") center 44% / cover no-repeat;
}

.newsletter-page-hero-shade {
  background: linear-gradient(90deg, rgba(8, 24, 48, 0.92), rgba(8, 24, 48, 0.62));
}

.newsletter-page-hero-content {
  padding-top: 150px;
}

.newsletter-page-hero-content > p {
  padding-left: 11px;
  border-left: 3px solid var(--cyan);
  font-size: 13px;
  letter-spacing: 0;
}

.newsletter-page-hero-content h1 {
  font-size: clamp(42px, 4.5vw, 56px);
}

.newsletter-article,
.newsletter-side-card,
.newsletter-cover img,
.newsletter-highlight,
.newsletter-checklist li {
  border-radius: 0;
  box-shadow: none;
}

.newsletter-article {
  padding: 58px 62px 50px;
}

.newsletter-category {
  padding: 0 0 8px;
  border-bottom: 2px solid var(--cyan);
  border-radius: 0;
  background: transparent;
}

.newsletter-side-card > span,
.newsletter-highlight span {
  letter-spacing: 0;
}

.newsletter-checklist li {
  background: #f4f5f5;
}

@media (max-width: 1080px) and (min-width: 821px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .logo {
    width: 170px;
  }
}

@media (max-width: 820px) {
  .content-width,
  .section-title,
  .consult-section > .section-title {
    width: calc(100% - 40px);
  }

  .site-header:not(.is-scrolled),
  .subpage .site-header:not(.is-scrolled),
  .newsletter-page .site-header:not(.is-scrolled) {
    height: 70px;
  }

  .logo,
  .site-header.is-scrolled .logo {
    width: 165px;
    height: 42px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-menu {
    overflow-y: auto;
    padding: max(88px, env(safe-area-inset-top)) 20px max(34px, env(safe-area-inset-bottom));
  }

  .section-title,
  .consult-section > .section-title {
    padding-left: 14px;
    font-size: 31px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.34;
  }

  .quick-button {
    border-radius: 5px;
  }

  .greeting,
  .service-section,
  .cases-section,
  .process-section,
  .consult-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .greeting-grid {
    gap: 46px;
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .representative img {
    width: 100%;
    height: min(112vw, 500px);
    max-width: none;
  }

  .representative p {
    font-size: 19px;
  }

  .service-grid {
    gap: 14px;
    margin-top: 46px;
  }

  .service-card {
    height: 230px;
  }

  .reason-section {
    padding: 76px 0;
  }

  .reason-cards {
    gap: 14px;
    margin-top: 40px;
  }

  .reason-cards article,
  .reason-cards .reason-card-navy {
    min-height: 0;
    padding: 26px 22px 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reason-cards article:last-child {
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reason-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .reason-cards h3 {
    font-size: 19px;
  }

  .case-card img {
    height: 240px;
  }

  .process-list {
    margin-left: 20px;
    scroll-snap-type: x mandatory;
  }

  .process-list article {
    scroll-snap-align: start;
  }

  .consult-grid {
    gap: 44px;
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 360px;
  }

  .partner-strip small {
    padding: 0 16px;
  }

  .site-footer {
    padding: 30px 0 88px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner > img {
    width: 155px;
    margin-bottom: 12px;
  }

  .footer-inner nav {
    gap: 0 12px;
    padding-bottom: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner nav a {
    padding: 5px 0;
    font-size: 12px;
  }

  .footer-inner p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.55;
  }

  .subpage-hero {
    min-height: 375px;
    background-position: 66% center;
    background-size: cover;
  }

  .subpage-hero::before {
    background: rgba(12, 29, 54, 0.7);
  }

  .subpage-hero-inner {
    padding-top: 126px;
    padding-bottom: 58px;
  }

  .subpage-kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .subpage-hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 33px;
    line-height: 1.3;
  }

  .subpage-hero p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
  }

  .subpage-section,
  .subpage-process {
    padding: 67px 0;
  }

  .subpage-heading-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .subpage-heading-grid h2,
  .subpage-section-title,
  .subpage-split-copy h2,
  .subpage-process h2 {
    font-size: 30px;
  }

  .subpage-feature-grid,
  .support-page .subpage-feature-grid {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .subpage-feature-card,
  .support-page .subpage-feature-card {
    display: block;
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-left: 0;
  }

  .subpage-feature-card > span,
  .support-page .subpage-feature-card > span {
    margin-bottom: 18px;
  }

  .support-page .subpage-feature-card h3 {
    margin-bottom: 10px;
  }

  .subpage-split {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .subpage-split-media,
  .subpage-split-media img {
    min-height: 360px;
  }

  .subpage-data-panel {
    padding-bottom: 30px;
  }

  .subpage-data-panel-image {
    height: 170px;
  }

  .subpage-data-panel > strong {
    margin: 26px 25px 20px;
  }

  .subpage-data-panel dl {
    margin: 0 25px;
  }

  .subpage-process-grid {
    grid-template-columns: 1fr;
  }

  .subpage-process-grid article,
  .subpage-process-grid article:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
    grid-template-columns: 44px 1fr;
  }

  .subpage-process-grid h3 {
    grid-column: 2;
  }

  .subpage-process-grid p {
    margin-top: 6px;
    grid-column: 2;
  }

  .cases-page .subpage-case-card {
    grid-template-columns: 1fr;
  }

  .cases-page .subpage-case-card > img {
    height: 230px;
  }

  .cases-page .subpage-case-card > div {
    padding: 25px 0 32px;
  }

  .subpage-cta {
    padding: 58px 0 82px;
  }

  .subpage-cta > .content-width {
    grid-template-columns: 1fr;
  }

  .subpage-cta-actions {
    margin-top: 20px;
    grid-row: auto;
    grid-column: 1;
  }

  .newsletter-page-hero {
    min-height: 370px;
  }

  .newsletter-page-hero-content {
    padding-top: 126px;
  }

  .newsletter-page-hero-content h1 {
    font-size: 34px;
  }

  .newsletter-article {
    padding: 36px 22px 32px;
  }
}

/* Motion system */
.scroll-progress {
  position: fixed;
  z-index: 180;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--cyan);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.08s linear;
}

.motion-ready .hero-content,
.motion-ready .subpage-hero-inner,
.motion-ready .newsletter-page-hero-content {
  animation: hero-copy-in 0.9s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-hero {
  animation: subpage-photo-drift 16s ease-in-out infinite alternate;
}

.newsletter-page-hero {
  animation: newsletter-photo-drift 18s ease-in-out infinite alternate;
}

@keyframes subpage-photo-drift {
  from { background-position: 100% 50%; }
  to { background-position: 96% 50%; }
}

@keyframes newsletter-photo-drift {
  from { background-position: 50% 44%; }
  to { background-position: 50% 50%; }
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 0.78s cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.case-card,
.subpage-feature-card,
.subpage-case-card,
.subpage-process-grid article,
.contact-us-grid article {
  transition:
    transform 0.32s ease,
    background-color 0.32s ease,
    border-color 0.32s ease;
}

.service-card img,
.case-card img,
.subpage-case-card > img,
.subpage-data-panel-image {
  transition: transform 0.65s cubic-bezier(0.2, 0.72, 0.22, 1), filter 0.35s ease;
}

.service-card:hover img,
.case-card:hover img,
.subpage-case-card:hover > img,
.subpage-data-panel:hover .subpage-data-panel-image {
  filter: saturate(0.96) contrast(1);
  transform: scale(1.035);
}

.motion-ready .subpage-feature-card.reveal-item.is-visible:hover,
.motion-ready .subpage-case-card.reveal-item.is-visible:hover,
.motion-ready .subpage-process-grid article.reveal-item.is-visible:hover,
.motion-ready .contact-us-grid article.reveal-item.is-visible:hover {
  transform: translateY(-5px);
}

.subpage-feature-card:hover,
.subpage-process-grid article:hover {
  border-color: #aeb8c2;
  background: rgba(255, 255, 255, 0.58);
}

.subpage-data-panel,
.service-card,
.case-card,
.subpage-case-card {
  overflow: hidden;
}

.quick-button,
.subpage-cta-actions a,
.closing-actions a,
.newsletter-consult-card a,
.consult-form button {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.quick-button:hover,
.subpage-cta-actions a:hover,
.closing-actions a:hover,
.newsletter-consult-card a:hover,
.consult-form button:hover {
  box-shadow: 0 10px 24px rgba(3, 16, 37, 0.18);
  filter: brightness(1.03);
  transform: translateY(-3px);
}

.home-floating-button:nth-child(1) { animation-delay: -0.35s; }
.home-floating-button:nth-child(2) { animation-delay: -0.7s; }
.home-floating-button:nth-child(3) { animation-delay: -1.05s; }

@media (max-width: 820px) {
  .subpage-hero {
    animation-name: subpage-photo-drift-mobile;
  }

  .process-section {
    min-height: auto;
    padding: 72px 0 78px;
  }

  .process-section .down-mark {
    margin-bottom: 36px;
  }

  .process-scroll {
    margin-top: 40px;
    padding: 0 20px;
    overflow: visible;
  }

  .process-list {
    display: grid;
    width: auto;
    min-width: 0;
    margin: 0;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1px;
    background: #cfd6dd;
    scroll-snap-type: none;
  }

  .process-list article {
    width: auto;
    height: auto;
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 0;
    background: #f7f5f0;
    scroll-snap-align: none;
  }

  .process-list article:not(:last-child)::after {
    display: none;
  }

  .process-list b {
    top: 22px;
    right: 18px;
    width: 38px;
    height: 38px;
  }

  .process-list h3 {
    margin: 46px 0 14px;
  }

  .closing-section {
    min-height: 760px;
  }

  .partner-strip {
    bottom: 54px;
    min-height: 208px;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 0;
  }

  .partner-strip a {
    height: 54px;
    margin: 0;
    padding: 9px 10px;
  }

  .partner-strip a:last-child {
    grid-column: 1 / -1;
  }

  @keyframes subpage-photo-drift-mobile {
    from { background-position: 68% 50%; }
    to { background-position: 62% 50%; }
  }

  .motion-ready .reveal-item {
    transform: translateY(22px);
  }

  .motion-ready .reveal-item.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .map-address {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .naver-map-link {
    width: 100%;
    min-height: 40px;
  }
}

/* Keep the original horizontal process rail on tablet and desktop-sized viewports. */
@media (min-width: 601px) and (max-width: 820px) {
  .process-section > .section-title {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .process-section {
    min-height: 920px;
    padding: 105px 0 100px;
  }

  .process-section .down-mark {
    margin-bottom: 52px;
  }

  .process-scroll {
    margin-top: 74px;
    padding: 0;
    overflow-x: auto;
  }

  .process-list {
    display: flex;
    width: max-content;
    min-width: max-content;
    margin-left: 20px;
    gap: 30px;
    padding-bottom: 24px;
    background: transparent;
  }

  .process-list article {
    width: 244px;
    height: 320px;
    min-height: 0;
    flex: 0 0 244px;
    padding: 34px 58px 28px;
    border-radius: 38px 38px 0 0;
    background: var(--white);
  }

  .process-list article:not(:last-child)::after {
    display: block;
  }

  .process-list b {
    top: 31px;
    right: 38px;
    width: 46px;
    height: 46px;
  }

  .process-list h3 {
    margin: 32px 0 18px;
  }
}

@media (min-width: 821px) {
  .process-section > .section-title {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    animation: none !important;
    transform: scale(1.035);
  }

  .subpage-hero,
  .newsletter-page-hero,
  .hero-content,
  .subpage-hero-inner,
  .newsletter-page-hero-content {
    animation: none !important;
  }

  .scroll-progress {
    transition: none;
  }
}

/* Privacy consent and policy */
.privacy-consent {
  padding: 18px;
  border: 1px solid #ccd5df;
  border-radius: 6px;
  background: #f7f9fb;
  color: #233247;
}

.privacy-consent > strong {
  display: block;
  margin-bottom: 12px;
  color: #0d2242;
  font-size: 15px;
}

.privacy-consent dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.privacy-consent dl > div {
  display: grid;
  gap: 8px;
  grid-template-columns: 78px minmax(0, 1fr);
}

.privacy-consent dt,
.privacy-consent dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-consent dt {
  color: #4c5f74;
  font-weight: 700;
}

.privacy-consent > p {
  margin: 12px 0 0;
  color: #647284;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-consent-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #d8e0e8;
}

.privacy-consent-action .agreement {
  margin: 0;
  color: #172a45;
  font-weight: 600;
}

.privacy-consent-action .agreement b {
  color: #c93232;
}

.privacy-consent-action > a {
  flex: 0 0 auto;
  color: #0b5d9b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-privacy-link {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-main {
  padding-top: 70px;
  color: #1d2a39;
  background: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.privacy-hero {
  padding: 78px 0 70px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(31, 170, 221, 0.16), transparent 44%),
    #0d2242;
}

.privacy-hero-inner > span {
  color: #51c5ec;
  font-size: 14px;
  font-weight: 700;
}

.privacy-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.055em;
}

.privacy-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.privacy-hero time {
  display: inline-block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.privacy-layout {
  display: grid;
  align-items: start;
  gap: 62px;
  grid-template-columns: 260px minmax(0, 1fr);
  padding-top: 72px;
  padding-bottom: 110px;
}

.privacy-summary {
  position: sticky;
  top: 98px;
  padding: 24px;
  border-top: 3px solid #20aee0;
  background: #f3f6f9;
}

.privacy-summary h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.privacy-summary dl,
.privacy-summary dd {
  margin: 0;
}

.privacy-summary dl > div {
  padding: 13px 0;
  border-top: 1px solid #d9e0e7;
}

.privacy-summary dt {
  margin-bottom: 5px;
  color: #5e6c7b;
  font-size: 12px;
  font-weight: 700;
}

.privacy-summary dd {
  color: #172a45;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-summary > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  background: #0d2242;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.privacy-document {
  max-width: 820px;
}

.privacy-intro {
  margin: 0 0 10px;
  padding: 24px 26px;
  border-left: 4px solid #20aee0;
  background: #f6f8fa;
  color: #29394c;
  font-size: 16px;
  line-height: 1.8;
}

.privacy-document section {
  padding: 42px 0;
  border-bottom: 1px solid #d9e0e6;
}

.privacy-document section:last-child {
  border-bottom: 0;
}

.privacy-document h2 {
  margin: 0 0 20px;
  color: #10294b;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.privacy-document p,
.privacy-document li {
  color: #3f4d5d;
  font-size: 15px;
  line-height: 1.85;
}

.privacy-document p {
  margin: 12px 0 0;
}

.privacy-document ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.privacy-document a {
  color: #075f9e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border-top: 2px solid #10294b;
}

.privacy-table-wrap table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  table-layout: fixed;
}

.privacy-table-wrap caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.privacy-table-wrap th,
.privacy-table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid #d8dfe6;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.privacy-table-wrap thead th {
  background: #f2f5f8;
  color: #132b4c;
  font-size: 13px;
}

.privacy-table-wrap tbody th {
  width: 180px;
  color: #213958;
  font-size: 13px;
}

.privacy-table-wrap tbody td {
  color: #405064;
  font-size: 14px;
}

.privacy-contact-card {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid #d5dee6;
  background: #f8fafc;
}

.privacy-contact-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.privacy-contact-card dl > div {
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr);
}

.privacy-contact-card dt,
.privacy-contact-card dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-contact-card dt {
  color: #5d6c7c;
  font-weight: 700;
}

.privacy-effective {
  color: #1d3553 !important;
  font-size: 14px !important;
}

@media (max-width: 820px) {
  .privacy-main {
    padding-top: 70px;
  }

  .privacy-hero {
    padding: 58px 0 52px;
  }

  .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-hero p {
    font-size: 15px;
  }

  .privacy-layout {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 36px;
    padding-bottom: 82px;
  }

  .privacy-summary,
  .privacy-document {
    min-width: 0;
  }

  .privacy-summary {
    position: static;
  }

  .privacy-document h2 {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .privacy-consent {
    padding: 15px;
  }

  .privacy-consent dl > div {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .privacy-consent-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-hero {
    padding-right: 0;
    padding-left: 0;
  }

  .privacy-intro {
    padding: 18px;
    font-size: 14px;
  }

  .privacy-document section {
    padding: 34px 0;
  }

  .privacy-document p,
  .privacy-document li {
    font-size: 14px;
  }

  .privacy-contact-card dl > div {
    gap: 4px;
    grid-template-columns: 1fr;
  }
}

/* Process: show all eight steps as two rows on tablet and desktop. */
@media (min-width: 601px) {
  .process-section {
    min-height: auto;
    padding: 94px 0 104px;
  }

  .process-section > .section-title {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .process-scroll {
    margin-top: 54px;
    padding: 0 20px;
    overflow: visible;
  }

  .process-list {
    display: grid;
    width: min(1170px, 100%);
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    border-top: 1px solid #cfd4d8;
    border-left: 1px solid #cfd4d8;
    background: transparent;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-list article {
    width: auto;
    height: 250px;
    min-height: 0;
    padding: 30px 26px;
    border: 0;
    border-right: 1px solid #cfd4d8;
    border-bottom: 1px solid #cfd4d8;
    border-radius: 0;
    background: transparent;
  }

  .process-list article:first-child {
    border-left: 0;
  }

  .process-list article:not(:last-child)::after {
    display: none;
  }

  .process-list b {
    top: 25px;
    right: 24px;
    width: 40px;
    height: 40px;
  }

  .process-list h3 {
    margin: 38px 0 16px;
  }
}
