@charset "UTF-8";

/* 최기선 세무회계사무소 공통 스타일 */

:root {
  --white: #ffffff;
  --paper: #f8fbfe;
  --sky-050: #f0f7fd;
  --sky-200: #cce2f3;
  --sky-300: #9fc5e4;
  --sky-500: #4d8bc9;
  --blue-700: #235d95;
  --blue-900: #153f6c;
  --blue-950: #0e3155;
  --ink: #18232f;
  --ink-soft: #344250;
  --muted: #687583;
  --line: #dce5ec;
  --line-dark: #bdccd8;
  --max: 1320px;
  --gutter: clamp(20px, 4.2vw, 58px);
  --header-height: 82px;
  --radius-lg: 24px;
  --shadow: 0 28px 72px rgba(21, 63, 108, .1);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --glass-line: rgba(255, 255, 255, .76);
  --glass-blue-line: rgba(159, 197, 228, .48);
  --glass-shadow-hover: 0 25px 60px rgba(21, 63, 108, .12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 76px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 5%, rgba(204, 226, 243, .24), transparent 29rem),
    var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -.018em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

:focus-visible {
  outline: 3px solid rgba(35, 93, 149, .48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-950);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 9vw, 144px);
}

.section-compact {
  padding-block: clamp(64px, 7vw, 100px);
}

.pc-only { display: block; }

@media (max-width: 768px) {
  .pc-only { display: none; }
}

/* 타이포그래피 */

.display-title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.page-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 640;
  line-height: 1.12;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 630;
  line-height: 1.2;
  letter-spacing: -.042em;
  text-wrap: balance;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.lead {
  max-width: 730px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.82;
  text-wrap: pretty;
}

.body-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.84;
  text-wrap: pretty;
}

.number-label {
  display: inline-block;
  color: var(--sky-500);
  font-size: 13px;
  font-weight: 760;
}

/* 버튼 */

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    color .25s var(--ease),
    background-color .25s var(--ease),
    border-color .25s var(--ease),
    transform .25s var(--ease);
}

.button::after {
  font-size: 16px;
  content: "↗";
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(21, 63, 108, .98), rgba(35, 93, 149, .94));
  box-shadow:
    0 12px 28px rgba(21, 63, 108, .14),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.button-primary:hover {
  background: linear-gradient(135deg, rgba(14, 49, 85, 1), rgba(31, 83, 132, .98));
  box-shadow:
    0 16px 34px rgba(21, 63, 108, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.button-secondary {
  color: var(--blue-900);
  border-color: var(--glass-blue-line);
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--blue-700);
  background: var(--sky-050);
}

/* 헤더 */

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 8px 28px rgba(21, 63, 108, .045),
    inset 0 -1px 0 rgba(159, 197, 228, .16);
  backdrop-filter: blur(20px) saturate(132%);
  -webkit-backdrop-filter: blur(20px) saturate(132%);
  transition:
    height .25s var(--ease),
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: rgba(189, 204, 216, .54);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(21, 63, 108, .065);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-footer .brand-logo {
  padding: 3px;
  border-radius: 8px;
  background: #fff;
}

.brand-name {
  font-size: 20px;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: -.028em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.header-contact) {
  position: relative;
  padding-block: 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav > a:not(.header-contact)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-700);
  transition: transform .25s var(--ease);
  content: "";
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--blue-900);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(21, 63, 108, .98), rgba(35, 93, 149, .94));
  box-shadow:
    0 12px 28px rgba(21, 63, 108, .14),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 700;
}

.header-contact:hover {
  background: linear-gradient(135deg, rgba(14, 49, 85, 1), rgba(31, 83, 132, .98));
  box-shadow:
    0 16px 34px rgba(21, 63, 108, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* 모바일 메뉴 */

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  background: rgba(248, 251, 254, .9);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
  transition: opacity .25s ease, visibility .25s ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  align-content: space-between;
  padding-block: 42px 34px;
}

.mobile-menu-nav {
  display: grid;
}

.mobile-menu-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(27px, 8vw, 38px);
  font-weight: 640;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.mobile-menu-nav a::after {
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 760;
  content: attr(data-index);
}

.mobile-menu-meta {
  display: grid;
  gap: 7px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
}

/* 홈 히어로 */

.home-hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--header-height) + clamp(36px, 3.4vw, 56px));
  padding-bottom: clamp(64px, 7vw, 100px);
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  width: min(51vw, 760px);
  aspect-ratio: 1;
  right: -14vw;
  top: -2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 226, 243, .82) 0%, rgba(227, 240, 250, .46) 48%, transparent 72%);
  content: "";
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("images/hero-pc.webp");
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .58;
  mask-image: linear-gradient(to right, transparent 0%, transparent 10%, rgba(0, 0, 0, .8) 34%, #000 54%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 10%, rgba(0, 0, 0, .8) 34%, #000 54%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
  grid-template-columns: minmax(0, 1.16fr) minmax(370px, .84fr);
}

.hero-description {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.8;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 0 5px rgba(77, 139, 201, .12);
  content: "";
}

.hero-board {
  position: relative;
  min-height: 520px;
}

.hero-board-main {
  position: absolute;
  inset: 0 0 48px 36px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 30px 30px 10px 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .67), rgba(227, 240, 250, .28)),
    linear-gradient(142deg, #f2f8fd 0 45%, #dcebf6 45% 72%, #cbdfee 72%);
  box-shadow:
    0 28px 68px rgba(21, 63, 108, .11),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.hero-board-photo {
  position: absolute;
  z-index: 1;
  inset: 9% 10% 15% 18%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50% 50% 12px 12px;
  box-shadow: 0 16px 36px rgba(21, 63, 108, .16);
}

.hero-board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-board-main::after {
  position: absolute;
  left: -9%;
  bottom: 10%;
  width: 78%;
  height: 29%;
  transform: rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(21, 63, 108, .09);
  content: "";
}

.hero-consultation {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: min(342px, 79%);
  padding: 24px 26px;
  border: 1px solid var(--glass-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  box-shadow:
    0 18px 46px rgba(21, 63, 108, .115),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px) saturate(136%);
  -webkit-backdrop-filter: blur(20px) saturate(136%);
}

.hero-consultation-label {
  display: flex;
  align-items: center;
  color: var(--blue-700);
  font-size: 20px;
  font-weight: 760;
}

.hero-role {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.hero-consultation p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* 대표 서비스 레이아웃은 아래 "대표 업무 카드" 규칙 참고 */

/* 믿고 상담할 수 있는 이유 */

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(204, 226, 243, .42), transparent 30rem),
    linear-gradient(145deg, #f8fbfe 0%, #f1f7fc 100%);
}

.why-section::before {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 139, 201, .12);
  border-radius: 50%;
  content: "";
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(22px, 2.5vw, 34px);
}


.why-heading .number-label {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.why-intro {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}

.why-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 28px;
  background: #dce9f3;
  box-shadow:
    0 26px 64px rgba(21, 63, 108, .13),
    inset 0 1px 0 rgba(255, 255, 255, .88);
}

.why-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(14, 49, 85, .74) 100%),
    linear-gradient(135deg, rgba(223, 239, 250, .18), transparent 52%);
  content: "";
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform .55s var(--ease);
}

.why-visual:hover img {
  transform: scale(1.025);
}

.why-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 38px);
  color: #fff;
}

.why-visual figcaption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
}

.why-visual figcaption strong {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(159, 197, 228, .42);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(248, 251, 254, .72));
  box-shadow:
    0 15px 38px rgba(21, 63, 108, .055),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform .35s var(--ease),
    border-color .35s ease,
    box-shadow .35s ease;
}

.why-card::before {
  position: absolute;
  right: -42px;
  top: -46px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 197, 228, .28), transparent 68%);
  content: "";
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 93, 149, .42);
  box-shadow: 0 24px 58px rgba(21, 63, 108, .11);
}

.why-number {
  position: absolute;
  left: 30px;
  top: 28px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
}

.why-card h3 {
  position: relative;
  margin: 0 0 13px;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 680;
  line-height: 1.38;
  letter-spacing: -.03em;
}

.why-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

/* 상담 문의 CTA */

.contact-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(77, 139, 201, .21), transparent 28%),
    linear-gradient(135deg, rgba(240, 247, 253, .98), rgba(227, 240, 250, .82));
}

.contact-panel {
  display: grid;
  align-items: end;
  gap: 52px;
  grid-template-columns: 1.18fr .82fr;
  padding: clamp(42px, 7vw, 88px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(240, 247, 253, .48));
  box-shadow:
    0 24px 62px rgba(21, 63, 108, .1),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.contact-panel-info {
  justify-self: end;
  width: min(100%, 400px);
  padding-left: 30px;
  border-left: 1px solid var(--sky-300);
}

.contact-phone {
  display: block;
  color: var(--blue-900);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 660;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.contact-panel-info p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* 서브페이지 히어로 */

.page-hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--header-height) + clamp(44px, 5vw, 70px));
  padding-bottom: clamp(72px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: -78%;
  width: min(47vw, 670px);
  aspect-ratio: 1;
  border: 1px solid rgba(77, 139, 201, .13);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1.14fr .86fr;
}

.page-hero-description {
  max-width: 630px;
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

/* 주요 업무 바로가기 */

.anchor-nav {
  position: sticky;
  z-index: 40;
  top: 72px;
  border-bottom: 1px solid rgba(189, 204, 216, .56);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(21, 63, 108, .035);
  backdrop-filter: blur(18px) saturate(128%);
  -webkit-backdrop-filter: blur(18px) saturate(128%);
}

.anchor-list {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scrollbar-width: none;
}

.anchor-list::-webkit-scrollbar {
  display: none;
}

.anchor-list a {
  position: relative;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.anchor-list a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-700);
  transition: transform .25s var(--ease);
  content: "";
}

.anchor-list a:hover,
.anchor-list a.is-active {
  color: var(--blue-900);
}

.anchor-list a.is-active::after {
  transform: scaleX(1);
}

/* 업무 상세 (양도·상속·증여세) */

.detail-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(56px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  gap: clamp(56px, 9vw, 138px);
  grid-template-columns: .76fr 1.24fr;
}

.detail-heading {
  position: sticky;
  top: 154px;
  align-self: start;
}

.detail-heading .number-label {
  margin-bottom: 18px;
}

.detail-copy > .lead {
  margin-top: 0;
}

.detail-list {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid var(--ink);
}

.detail-item {
  display: grid;
  gap: 18px;
  grid-template-columns: 46px 1fr;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item span {
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 760;
}

.detail-item strong {
  font-size: 17px;
  font-weight: 650;
}

.note-panel {
  margin-top: 48px;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(159, 197, 228, .42);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  box-shadow:
    0 14px 34px rgba(21, 63, 108, .05),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.note-panel h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 680;
}

.note-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.note-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.note-panel li::before {
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-500);
  content: "";
}

/* 기장 대행·세금 신고 */

.business-service {
  padding-block: clamp(56px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 12%, rgba(204, 226, 243, .28), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--sky-050));
}

.business-grid {
  display: grid;
  gap: clamp(55px, 8vw, 118px);
  grid-template-columns: 1fr 1fr;
}

.ledger {
  border-top: 1px solid var(--ink);
}

.ledger-row {
  display: grid;
  gap: 22px;
  grid-template-columns: 50px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-row span {
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 760;
}

.ledger-row strong {
  font-size: 18px;
  font-weight: 640;
}

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

.tax-return-card {
  padding: 28px;
  border: 1px solid rgba(159, 197, 228, .42);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  box-shadow:
    0 14px 34px rgba(21, 63, 108, .05),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tax-return-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 680;
}

.tax-return-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* 경정청구 */

.appeal-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 92px);
}

.appeal-number {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 4%;
  color: rgba(77, 139, 201, .07);
  font-size: clamp(220px, 32vw, 520px);
  font-weight: 280;
  line-height: 1;
  letter-spacing: -.1em;
}

.appeal-grid {
  display: grid;
  gap: clamp(58px, 9vw, 148px);
  grid-template-columns: 1.15fr .85fr;
}

.appeal-list {
  border-top: 1px solid var(--ink);
}

.appeal-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.appeal-list strong {
  font-size: 16px;
  font-weight: 640;
}

.appeal-list span {
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 760;
}

/* 상담 안내 페이지 (세무사 소개) */

.process-section {
  padding-block: clamp(56px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 12%, rgba(204, 226, 243, .28), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--sky-050));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-card {
  margin: 0;
  min-height: 240px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.process-card:not(:first-child) {
  padding-left: 28px;
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  display: block;
  margin-bottom: 44px;
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 760;
}

.process-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 680;
}

.process-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-profile-section {
  padding-top: calc(var(--header-height) + clamp(20px, 2.4vw, 36px));
  padding-bottom: clamp(40px, 5vw, 64px);
}

.about-profile-grid {
  display: grid;
  align-items: center;
  gap: clamp(58px, 9vw, 138px);
  grid-template-columns: .82fr 1.18fr;
}

.about-profile-visual {
  min-height: 480px;
}

.about-name {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.048em;
}

.about-role {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 720;
}

.profile-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 18px;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, .28), transparent 54%),
    linear-gradient(140deg, #eaf4fb 0 48%, #d6e8f5 48% 72%, #c4dcef 72%);
  box-shadow:
    0 24px 60px rgba(21, 63, 108, .095),
    inset 0 1px 0 rgba(255, 255, 255, .86);
}

.profile-photo {
  position: absolute;
  z-index: 1;
  left: 15%;
  top: 10%;
  width: 70%;
  height: 79%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50% 50% 10px 10px;
  box-shadow: 0 16px 36px rgba(21, 63, 108, .14);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-visual::after {
  position: absolute;
  right: -16%;
  bottom: 10%;
  width: 72%;
  height: 28%;
  transform: rotate(-10deg);
  border: 1px solid rgba(21, 63, 108, .13);
  background: rgba(21, 63, 108, .08);
  content: "";
}

.profile-visual-caption {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 8%;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 720;
}

/* 상담 방법 안내 */

.consult-section {
  padding-block: clamp(56px, 6vw, 92px);
  background: var(--white);
}

.consult-grid {
  display: grid;
  gap: clamp(56px, 8vw, 118px);
  grid-template-columns: .86fr 1.14fr;
}

.consult-table {
  border-top: 1px solid var(--blue-900);
}

.consult-row {
  display: grid;
  gap: 28px;
  grid-template-columns: 135px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(35, 93, 149, .2);
}

.consult-row dt {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

.consult-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.consult-row a {
  color: var(--blue-900);
  font-weight: 680;
}

.faq-list {
  margin-top: 54px;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 660;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  right: 5px;
  font-size: 21px;
  font-weight: 300;
  content: "+";
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 840px;
  padding: 0 44px 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* 오시는 길 */

.location-section {
  padding-block: clamp(40px, 4vw, 60px);
  background:
    radial-gradient(circle at 88% 12%, rgba(204, 226, 243, .28), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--sky-050));
}

.location-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: .72fr 1.28fr;
}

.location-copy {
  align-self: center;
}

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

.map-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #edf4f9;
  background-image:
    linear-gradient(rgba(35, 93, 149, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 93, 149, .08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(21, 63, 108, .07);
  content: "";
}

.map-visual::before {
  left: -5%;
  top: 21%;
  width: 110%;
  height: 62px;
  transform: rotate(-8deg);
}

.map-visual::after {
  left: 33%;
  top: -8%;
  width: 68px;
  height: 120%;
  transform: rotate(14deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 57%;
  top: 48%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50% 50% 50% 4px;
  background: var(--blue-900);
  box-shadow: 0 0 0 11px rgba(21, 63, 108, .12);
}

.map-card {
  position: absolute;
  z-index: 3;
  left: calc(57% + 26px);
  top: calc(48% - 34px);
  width: min(260px, 56%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 16px 40px rgba(21, 63, 108, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 14px;
  line-height: 1.6;
}

.map-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-900);
  font-size: 14px;
}

.location-info-list {
  display: grid;
  margin: 22px 0 0;
  border-top: 1px solid var(--ink);
}

.location-info-list > div {
  display: grid;
  gap: 22px;
  grid-template-columns: 110px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.location-info-list dt {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

.location-info-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.location-info-list a {
  color: var(--blue-900);
  font-weight: 700;
}

/* 푸터 */

.site-footer {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #18232f;
  color: #fff;
}

.footer-top {
  display: grid;
  align-items: center;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 28px;
}

.footer-info {
  display: grid;
  gap: 10px;
  justify-self: end;
  min-width: min(100%, 490px);
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.footer-info a:hover {
  color: #fff;
}

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

/* 모바일 상담 바 */

.mobile-dock {
  position: fixed;
  z-index: 100;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 14px;
  background: rgba(240, 247, 253, .64);
  box-shadow:
    0 13px 34px rgba(21, 63, 108, .14),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(19px) saturate(136%);
  -webkit-backdrop-filter: blur(19px) saturate(136%);
  transition:
    opacity .25s ease,
    transform .25s var(--ease);
}

.mobile-dock.is-hidden,
.menu-open .mobile-dock {
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
}

.mobile-dock a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 720;
  transition:
    background-color .2s ease,
    color .2s ease;
}

.mobile-dock a:first-child {
  flex: 1;
  color: var(--blue-900);
  border-right: 1px solid rgba(159, 197, 228, .42);
  background: rgba(255, 255, 255, .48);
}

.mobile-dock a:last-child {
  flex: 1;
  color: #fff;
  background: linear-gradient(135deg, rgba(21, 63, 108, .97), rgba(35, 93, 149, .92));
}

.mobile-dock a:first-child:active {
  background: rgba(255, 255, 255, .76);
}

.mobile-dock a:last-child:active {
  background: rgba(14, 49, 85, .98);
}

/* 스크롤 리빌 애니메이션 */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============ 반응형 ============ */

@media (max-width: 1100px) {
  :root { --header-height: 76px; }

  .desktop-nav { gap: 20px; }

  .hero-grid {
    grid-template-columns: 1fr .88fr;
    gap: 48px;
  }

  .hero-board { min-height: 460px; }

  .page-hero-grid,
  .detail-grid,
  .consult-grid {
    gap: 72px;
  }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu { display: block; }

  .hero-grid,
  .contact-panel,
  .page-hero-grid,
  .detail-grid,
  .business-grid,
  .appeal-grid,
  .about-profile-grid,
  .consult-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-board { min-height: 500px; }

  .home-hero::after {
    background-image: url("images/hero-mobile.webp");
    background-position: top center;
    opacity: .2;
    mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 78%);
  }

  .why-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .why-heading .number-label {
    margin-bottom: 0;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-visual {
    min-height: 320px;
  }

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

  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(3),
  .process-card:nth-child(4) { border-top: 1px solid var(--line); }

  .detail-heading {
    position: static;
    max-width: 660px;
  }

  .profile-visual,
  .about-profile-visual {
    min-height: 560px;
  }

  .page-hero-description {
    max-width: 720px;
    justify-self: start;
  }

  .footer-top { grid-template-columns: 1fr; }
  .footer-info { justify-self: start; }
}

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

  body { font-size: 16px; }

  .section { padding-block: 76px; }
  .section-compact { padding-block: 60px; }

  .detail-section {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .business-service,
  .appeal-section,
  .consult-section,
  .process-section,
  .location-section {
    padding-block: 56px;
  }

  .about-profile-section {
    padding-bottom: 56px;
  }

  .brand { gap: 11px; }
  .brand-logo { width: 28px; height: 28px; }
  .brand-name { font-size: 19px; letter-spacing: -.035em; }

  .display-title {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.2;
  }

  .page-title {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.14;
  }

  .section-title {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.2;
  }

  .about-name {
    font-size: clamp(34px, 9vw, 42px);
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .button { min-height: 54px; }

  .home-hero {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 76px;
  }

  .home-hero::before {
    width: 92vw;
    right: -42vw;
  }

  .hero-board { min-height: 480px; }

  .hero-board-main {
    inset: 0;
    border-radius: 22px 22px 8px 22px;
  }

  .hero-consultation {
    left: 14px;
    right: 14px;
    bottom: -30px;
    width: auto;
    padding: 20px;
  }

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

  .why-intro br {
    display: none;
  }

  .why-layout {
    gap: 18px;
  }

  .why-visual {
    min-height: 210px;
    border-radius: 18px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .why-card h3 {
    padding-right: 40px;
  }

  .why-number {
    left: auto;
    right: 20px;
    top: 20px;
  }

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

  .process-card,
  .process-card:not(:first-child) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-top: 0;
  }

  .process-number { margin-bottom: 18px; }

  .profile-visual,
  .about-profile-visual {
    min-height: 470px;
  }

  .consult-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-panel {
    gap: 36px;
    padding: 34px 22px;
    border-radius: 16px;
  }

  .contact-panel-info {
    justify-self: start;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--sky-300);
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 64px;
  }

  .page-hero-grid { gap: 28px; }

  .anchor-nav { top: 69px; }
  .anchor-list { gap: 24px; }

  .anchor-list a {
    min-height: 56px;
    font-size: 12px;
  }

  .detail-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .tax-return-grid { grid-template-columns: 1fr; }

  .ledger-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .faq-item summary {
    padding-right: 40px;
    font-size: 16px;
  }

  .map-visual { min-height: 410px; }

  .map-card {
    left: 12%;
    right: 12%;
    top: 61%;
    width: auto;
  }

  .location-info-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-dock { display: flex; }

  .site-footer { padding-bottom: 112px; }
}

/* ========================================
   LOCATION MAP IMAGE
======================================== */

.map-image-link {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(122, 157, 188, 0.22);
  border-radius: 2px;
  background: #eef5fa;
  box-shadow: 0 20px 50px rgba(33, 72, 105, 0.06);
  isolation: isolate;
  text-decoration: none;
}

.map-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.map-image-link:hover .map-image {
  transform: scale(1.015);
}

.map-image-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    135deg,
    rgba(237, 246, 252, 0.12),
    transparent 44%
  );
}

.map-image-overlay {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  width: min(300px, calc(100% - 56px));
  padding: 22px 24px;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(26, 64, 98, 0.16);
  color: #536474;
  font-size: 14px;
  line-height: 1.55;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.map-image-overlay strong {
  color: #174f82;
  font-size: 17px;
  font-weight: 750;
}

.map-image-overlay span:last-child {
  margin-top: 7px;
  color: #245e8f;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .map-image-link,
  .map-image {
    min-height: 540px;
  }

  .map-image-link {
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .map-image-link,
  .map-image {
    min-height: 470px;
  }

  .map-image-overlay {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 18px 19px;
    font-size: 13px;
  }

  .map-image-overlay strong {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .map-image-link,
  .map-image {
    min-height: 420px;
  }

  .map-image-overlay {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px 17px;
    border-radius: 15px;
  }
}
/* 믿고 상담할 수 있는 이유 — 하단 이동 버튼 */

.why-actions {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(34px, 4vw, 52px) auto 0;
}

.why-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding-inline: 22px;
}

/* 혹시 why-actions 안에 button-row가 남아 있어도 정상 작동 */
.why-actions .button-row {
  display: contents;
  margin: 0;
}

@media (max-width: 680px) {
  .why-section {
    padding-bottom: 48px;
  }

  .why-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .why-actions .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    border-radius: 12px;
    font-size: 15px;
  }
}
/* ========================================
   SERVICES — NEXT PHOTO CARDS
======================================== */

.service-next {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(204, 226, 243, .32),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f3f8fc 100%
    );
}

.service-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.service-next-card {
  position: relative;
  display: flex;
  min-height: 440px;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 26px;
  background-position: center;
  background-size: cover;
  box-shadow:
    0 24px 60px rgba(21, 63, 108, .14),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  isolation: isolate;
  transition:
    transform .4s var(--ease),
    box-shadow .4s var(--ease);
}

.service-next-card--consult {
  background-image: url("images/service-consult.webp");
  background-position: center 48%;
}

.service-next-card--location {
  background-image: url("images/map.webp");
  background-position: center;
}

.service-next-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: inherit;
  background-position: inherit;
  background-size: cover;
  transition: transform .6s var(--ease);
  content: "";
}

.service-next-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 32px 72px rgba(21, 63, 108, .2),
    inset 0 1px 0 rgba(255, 255, 255, .34);
}

.service-next-card:hover::before {
  transform: scale(1.035);
}

.service-next-overlay {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 30, 50, .04) 10%,
      rgba(10, 38, 64, .2) 45%,
      rgba(10, 38, 64, .9) 100%
    );
}

.service-next-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
}

.service-next-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: .08em;
}

.service-next-content h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 640;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.service-next-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 10px;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background-color .25s ease,
    border-color .25s ease;
}

.service-next-card:hover .service-next-link {
  border-color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .22);
}

@media (max-width: 900px) {
  .service-next-card {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .service-next {
    padding-block: 52px;
  }

  .service-next-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-next-card {
    min-height: 330px;
    border-radius: 20px;
  }

  .service-next-card--consult {
    background-position: center 42%;
  }

  .service-next-content {
    padding: 26px 22px;
  }

  .service-next-content h2 {
    font-size: 27px;
  }

  .service-next-link {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    margin-top: 22px;
  }
}

/* ========================================
   ABOUT — PHOTO CTA
======================================== */

.about-photo-cta-section {
  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(204, 226, 243, .3),
      transparent 26rem
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f7fb 100%
    );
}

.about-photo-cta {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 37, 63, .88) 0%,
      rgba(16, 57, 94, .68) 46%,
      rgba(16, 57, 94, .18) 100%
    ),
    url("images/about-contact.webp");
  background-position: center 48%;
  background-size: cover;
  box-shadow:
    0 26px 68px rgba(21, 63, 108, .16),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.about-photo-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: inherit;
  content: "";
}

.about-photo-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  width: min(100%, 650px);
  padding: clamp(36px, 5vw, 64px);
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.about-photo-cta-label {
  display: inline-flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: .08em;
}

.about-photo-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.about-photo-cta p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.78;
}

.about-photo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-photo-cta-actions .button {
  min-width: 190px;
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button-light:hover {
  border-color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .22);
}

@media (max-width: 680px) {
  .about-photo-cta-section {
    padding-block: 52px;
  }

  .about-photo-cta {
    min-height: 390px;
    border-radius: 20px;
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 37, 63, .06) 0%,
        rgba(10, 37, 63, .62) 54%,
        rgba(10, 37, 63, .94) 100%
      ),
      url("images/about-contact.webp");
    background-position: center 42%;
  }

  .about-photo-cta-content {
    min-height: 390px;
    width: 100%;
    padding: 26px 22px;
  }

  .about-photo-cta h2 {
    font-size: 29px;
  }

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

  .about-photo-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .about-photo-cta-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}


/* ========================================
   LOCATION — PHOTO CTA
======================================== */

.location-photo-cta-section {
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(204, 226, 243, .3),
      transparent 27rem
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f7fb 100%
    );
}

.location-photo-cta {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background-image:
    linear-gradient(
      90deg,
      rgba(9, 34, 58, .9) 0%,
      rgba(15, 54, 89, .7) 45%,
      rgba(15, 54, 89, .12) 100%
    ),
    url("images/location-contact.webp");
  background-position: center;
  background-size: cover;
  box-shadow:
    0 26px 68px rgba(21, 63, 108, .16),
    inset 0 1px 0 rgba(255, 255, 255, .2);
}

.location-photo-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: inherit;
  content: "";
}

.location-photo-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  width: min(100%, 670px);
  padding: clamp(36px, 5vw, 66px);
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.location-photo-cta-label {
  display: inline-flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: .08em;
}

.location-photo-cta h2 {
  margin: 0;
  font-size: clamp(31px, 3.7vw, 50px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.location-photo-cta p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.75;
}

.location-photo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.location-photo-cta-actions .button {
  min-width: 210px;
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .22);
}

@media (max-width: 680px) {
  .location-photo-cta-section {
    padding-block: 52px;
  }

  .location-photo-cta {
    min-height: 410px;
    border-radius: 20px;
    background-image:
      linear-gradient(
        180deg,
        rgba(9, 34, 58, .04) 0%,
        rgba(9, 34, 58, .46) 46%,
        rgba(9, 34, 58, .94) 100%
      ),
      url("images/location-contact.webp");
    background-position: 64% center;
  }

  .location-photo-cta-content {
    min-height: 410px;
    width: 100%;
    padding: 28px 22px;
  }

  .location-photo-cta h2 {
    font-size: 29px;
  }

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

  .location-photo-cta p br {
    display: none;
  }

  .location-photo-cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .location-photo-cta-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}
/* ========================================
   이런 고민이 있으신가요? — 통합 목록형
======================================== */

.concern-panel {
  overflow: hidden;
  border: 1px solid rgba(159, 197, 228, 0.48);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 251, 254, 0.76)
    );
  box-shadow:
    0 22px 56px rgba(21, 63, 108, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.concern-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concern-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 180px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 30px 32px;
  border-bottom: 1px solid var(--line);
}


  .concern-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concern-item {
    border-right: 0;
    border-bottom: 0;
  }

  /* 1·2열 오른쪽에 세로선 */
  .concern-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
  }

  /* 첫째 줄 아래에만 가로선 */
  .concern-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

.concern-item-number {
  align-self: start;
  padding-top: 5px;
  color: var(--sky-500);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.concern-item-copy {
  min-width: 0;
}

.concern-item-copy h3 {
  margin: 0;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 680;
  line-height: 1.38;
  letter-spacing: -0.032em;
}

.concern-item-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.concern-item-arrow {
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.25s var(--ease);
}

/* 모바일 */

@media (max-width: 680px) {
  .concern-panel {
    border-radius: 20px;
  }

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

  .concern-item {
    min-height: 0;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 11px;
    padding: 22px 20px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .concern-item:last-child {
    border-bottom: 0 !important;
  }

  .concern-item-number {
    padding-top: 3px;
  }

  .concern-item-copy h3 {
    font-size: 19px;
  }

  .concern-item-copy p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.65;
  }

}

.concern-heading {
  margin-bottom: clamp(26px, 3vw, 40px);
}

@media (max-width: 680px) {
  .concern-heading {
    margin-bottom: 22px;
  }
}

/* ========================================
   INDEX — 하단 상담 CTA
======================================== */

.index-contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(204, 226, 243, 0.3),
      transparent 27rem
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f3f8fc 100%
    );
}

.index-contact-cta {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 30px;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 31, 54, 0.94) 0%,
      rgba(13, 49, 82, 0.82) 42%,
      rgba(13, 49, 82, 0.28) 72%,
      rgba(13, 49, 82, 0.08) 100%
    ),
    url("images/service-consult.webp");
  background-position: center 44%;
  background-size: cover;
  box-shadow:
    0 28px 72px rgba(21, 63, 108, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  isolation: isolate;
}

.index-contact-cta::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.index-contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 720px);
  min-height: 500px;
  padding: clamp(42px, 6vw, 76px);
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.index-contact-label {
  display: inline-flex;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.index-contact-content h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.index-contact-content p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.8;
}

.index-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.index-contact-actions .button {
  min-width: 190px;
  min-height: 54px;
}

/* 전화 상담 버튼 */

.index-contact-primary {
  color: var(--blue-950);
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 34px rgba(4, 24, 43, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.index-contact-primary:hover {
  color: var(--blue-950);
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(4, 24, 43, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* 상담 안내 버튼 */

.index-contact-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.index-contact-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.21);
}

.index-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.index-contact-meta span {
  position: relative;
}

.index-contact-meta span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 3px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  content: "";
}

/* 모바일 */

@media (max-width: 680px) {
  .index-contact-section {
    padding-block: 52px;
  }

  .index-contact-cta {
    min-height: 500px;
    border-radius: 21px;
    background-image:
      linear-gradient(
        180deg,
        rgba(8, 31, 54, 0.08) 0%,
        rgba(8, 31, 54, 0.5) 42%,
        rgba(8, 31, 54, 0.96) 100%
      ),
      url("images/service-consult.webp");
    background-position: center 38%;
  }

  .index-contact-content {
    width: 100%;
    min-height: 500px;
    padding: 28px 22px;
  }

  .index-contact-content h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .index-contact-content p {
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.72;
  }

  .index-contact-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .index-contact-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .index-contact-meta {
    display: grid;
    gap: 3px;
    margin-top: 18px;
    font-size: 12px;
  }

  .index-contact-meta span::after {
    display: none;
  }
}

/* 고민 섹션 → 대표 업무 연결 영역 */
.concern-section {
  padding-bottom: 0;
}

.concern-bridge {
  position: relative;
  max-width: 720px;
  margin: clamp(64px, 8vw, 112px) auto 0;
  padding: clamp(48px, 6vw, 76px) 20px clamp(30px, 4vw, 48px);
  text-align: center;
}

.concern-bridge-label {
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 5px;
  color: #47799f;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.concern-bridge h2 {
  margin: 0;
  color: #182733;
  font-size: clamp(5rem, 3.3vw, 10rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.concern-bridge p {
  margin: 18px 0 0;
  color: #687680;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.75;
  letter-spacing: -0.015em;
}

/* 대표 업무 카드를 연결 문구 바로 아래 배치 */
.focus-strip {
  padding-top: 0;
}

.focus-strip .focus-grid {
  margin-top: 0;
}

.mobile-only {
  display: none;
}

@media (max-width: 680px) {
  .concern-bridge {
    margin-top: 56px;
    padding: 42px 0 28px;
  }

  .concern-bridge-label {
    margin-bottom: 13px;
    font-size: 0.76rem;
  }

  .concern-bridge h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
    line-height: 1.28;
  }

  .concern-bridge p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .mobile-only {
    display: block;
  }
}

.focus-text p {
  margin: 10px 0 0;
  color: rgba(24, 39, 51, 0.68);
  font-size: 0.96rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

@media (max-width: 680px) {
  .focus-text p {
    margin-top: 8px;
    font-size: 0.91rem;
    line-height: 1.55;
  }
}

/* ========================================
   고민 → 대표 업무 여백 재정리
======================================== */

.concern-bridge {
  max-width: none;
  margin: clamp(56px, 7vw, 88px) 0 0;
  padding: clamp(42px, 5vw, 58px) 20px
           clamp(36px, 4vw, 48px);
  text-align: center;
}

.concern-bridge-label {
  display: block;
  margin-bottom: 12px;
  color: #47799f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.concern-bridge h2 {
  margin: 0;
  color: #182733;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.concern-bridge p {
  margin: 14px 0 0;
  color: #71808b;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}


/* ========================================
   대표 업무 카드
======================================== */

.focus-strip {
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(61, 101, 133, 0.15);
  border-bottom: 1px solid rgba(61, 101, 133, 0.15);
}

.focus-strip .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.focus-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 28px;

  min-height: 220px;
  padding: 42px clamp(30px, 3.5vw, 64px);

  color: inherit;
  text-decoration: none;
}

.focus-item + .focus-item {
  border-left: 1px solid rgba(61, 101, 133, 0.16);
}

.focus-icon {
  grid-column: 1;
  grid-row: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;
  border-radius: 20px;
  color: var(--blue-700);
  background: var(--sky-050);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}

.focus-item:hover .focus-icon {
  color: #fff;
  background: var(--blue-700);
}

.focus-icon svg {
  width: 30px;
  height: 30px;
}

.focus-text {
  grid-column: 2;
  min-width: 0;
}

.focus-text span {
  display: block;
  margin: 0 0 12px;
  color: #687787;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
}

.focus-text strong {
  display: block;
  color: #182733;
  font-size: clamp(1.35rem, 1.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.focus-text p {
  max-width: 30ch;
  margin: 16px 0 0;
  color: #6f7b85;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.focus-item::after {
  content: "↗";
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;

  color: #23639d;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}


/* ========================================
   모바일
======================================== */

@media (max-width: 900px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-item {
    grid-template-columns: 82px minmax(0, 1fr) 24px;
    min-height: 0;
    padding: 34px 32px;
    column-gap: 24px;
  }

  .focus-item + .focus-item {
    border-left: 0;
    border-top: 1px solid rgba(61, 101, 133, 0.16);
  }

  .focus-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .focus-text span {
    margin-bottom: 10px;
  }

  .focus-text p {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .concern-bridge {
    margin-top: 48px;
    padding: 38px 12px 32px;
  }

  .concern-bridge h2 {
    font-size: 2rem;
  }

  .concern-bridge p {
    margin-top: 12px;
    font-size: 0.96rem;
  }

  .focus-item {
    grid-template-columns: 72px minmax(0, 1fr) 20px;
    column-gap: 18px;
    padding: 30px 20px;
  }

  .focus-icon {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .focus-icon svg {
    width: 27px;
    height: 27px;
  }

  .focus-text span {
    margin-bottom: 9px;
    font-size: 0.8rem;
  }

  .focus-text strong {
    font-size: 1.4rem;
  }

  .focus-text p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .focus-item::after {
    font-size: 1.3rem;
  }
}

@media (min-width: 901px) {
  .focus-item {
    grid-template-columns: 72px minmax(0, 1fr) 24px;
    min-height: 190px;
    padding: 36px clamp(36px, 4vw, 64px);
    column-gap: 22px;
  }

  .focus-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    transform: none;
  }

  .focus-item:hover .focus-icon {
    transform: none;
  }

  .focus-text span {
    margin-bottom: 8px;
  }

  .focus-text p {
    margin-top: 12px;
    line-height: 1.6;
  }
}
