/* guavawork.ai 랜딩 v2 — 시안(황수현 2026-08-26) 감 유지 + 폴리시 상향 */
:root {
  --ink: #223449;
  /* 🔴 히어로 제목이 «어둡다»(대표 지적) — 거의 검정(#131c29)이라 밝은 파랑 판 위에서 무겁게 앉는다.
     같은 명도대의 «딥 네이비»로 바꾸면 배경과 같은 색 계열이라 가라앉지 않고 읽힌다. */
  --ink-deep: #143766;
  --body: #55677f;
  --muted: #8ba0b8;
  --blue: #1d7df7;
  --blue-deep: #1660d8;
  --blue-soft: #4a9bff;
  --bg: #ffffff;
  --bg-tint: #f3f7fb;
  --card-tint: #e9f1fb;
  --line: #e3ebf5;
  --navy: #0a1626;
  --footer: #131416;
  --header-h: 64px;
  --radius: 20px;
  --shadow-card: 0 6px 28px rgba(37, 78, 138, .07);
  --shadow-card-hover: 0 14px 44px rgba(37, 78, 138, .13);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.68;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
section { position: relative; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.gnb {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  display: flex; align-items: center; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
/* 🔴🔴 «불투명도를 올린다»로는 부족했다 — 스테이트먼트(딥블루) 위에서 헤더 전체가 1.22~2.18:1 로
   측정됐다(로고 1.78 · 메뉴 2.18 · 회신문구 1.22). 히어로에서 이미 두 번 배운 원칙을 여기서도 쓴다:
   🔑 «배경이 어떻게 변하든 대비가 유지되는 것은 불투명한 판뿐이다» → 완전 불투명. */
.gnb.solid { background: #ffffff; backdrop-filter: blur(18px) saturate(1.4); box-shadow: 0 1px 0 rgba(214,228,244,.9), 0 6px 20px rgba(20, 50, 100, .06); }
.gnb .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gnb .logo img { height: 22px; width: auto; }
.gnb .right { display: flex; align-items: center; gap: 22px; }
.gnb .tagline { font-size: 14.5px; color: var(--ink); letter-spacing: -.01em; }

/* 섹션 내비 — 페이지 목차. 스크롤 위치를 따라 현재 절이 표시된다. */
.gnb .links { display: flex; gap: 26px; font-size: 15px; font-weight: 600; color: #46586f; }
.gnb .links a { position: relative; padding: 6px 0; transition: color .2s ease; white-space: nowrap; }
.gnb .links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.gnb .links a:hover { color: var(--blue); }
.gnb .links a.on { color: var(--blue); }
.gnb .links a.on::after, .gnb .links a:hover::after { transform: scaleX(1); }
/* 히어로 위에서는 태그라인, 내려가면 목차 — 둘이 자리를 나눠 쓴다 */
.gnb:not(.scrolled) .links { visibility: hidden; opacity: 0; pointer-events: none; position: absolute; }
.gnb.scrolled .tagline { display: none; }

/* 버거 (모바일) */
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.msheet {
  position: absolute; top: 100%; left: 0; right: 0; width: 100%;
  display: none; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
  box-shadow: 0 18px 40px rgba(20, 50, 100, .12);
}
.msheet.open { display: flex; }
.msheet a { padding: 13px 4px; font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.msheet .btn { margin-top: 14px; width: 100%; padding: 14px; }

/* 상시 CTA 바 — 히어로를 지나면 하단에 붙어 계속 따라온다 */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(9, 26, 52, .93); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.stickycta.show { transform: none; }
.stickycta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.stickycta p { color: #dfe8f5; font-size: 15.5px; letter-spacing: -.01em; }
.stickycta .sticky-kicker { display: block; margin-bottom: 2px; color: #79b9ff; font-size: 9.5px; font-weight: 800; letter-spacing: .13em; }
.stickycta p b { color: #fff; font-weight: 700; }
.stickycta .acts { display: flex; align-items: center; gap: 10px; }
.stickycta .mailbtn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.34); color: #fff; font-weight: 600; font-size: 14.5px;
  border-radius: 10px; padding: 10px 18px; transition: background .2s ease;
}
.stickycta .mailbtn:hover { background: rgba(255,255,255,.12); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #2e8bff, #1d6ae0); color: #fff; font-weight: 600;
  border-radius: 11px; padding: 10px 20px; font-size: 15px;
  box-shadow: 0 6px 18px rgba(29, 110, 230, .28);
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(29, 110, 230, .36); }
.btn.big { font-size: 20px; font-weight: 700; padding: 21px 60px; border-radius: 15px; }
.cta-short { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: clip; background: #eaf3fe; }
.hero-media, .band-media, .dark-media {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-media video, .hero-media img, .dark-media video, .dark-media img, .band-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-fore { position: relative; z-index: 1; }
.hero-fore > .wrap:last-child { padding-bottom: 132px; }
.hero-top { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: calc(var(--header-h) + 16px); padding-bottom: 56px; }
.hero-copy { display: contents; }
.hero h1 { font-size: clamp(31px, 3.7vw, 50px); line-height: 1.3; font-weight: 800; color: var(--ink-deep); letter-spacing: -.022em; }
.hero h1 b { color: var(--blue); font-weight: 800; }
.hero-prelude, .hero-core { display: block; }
.hero-mobile-break { display: none; }
.hero .sub { margin-top: 30px; font-size: clamp(15px, 1.25vw, 18px); color: #43556f; line-height: 1.75; }
.hero-cta, .hero-cta-note { display: none; }
.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 26px; margin-top: 72px; }
.chip { text-align: center; }
/* 🔴 칩은 히어로가 «파랗게 가라앉는» 구간에 앉는다.
   반투명 파랑 칩을 파란 배경에 놓으면 내려갈수록 묻힌다(대표 지적) → 흰 알약 + 진한 글씨로 고정.
   배경이 어떻게 변하든 대비가 유지되는 것은 «불투명한 흰 판»뿐이다. */
.chip .from { font-size: 14px; font-weight: 600; color: #0f4fa8; position: relative; padding-bottom: 15px; letter-spacing: -.01em; text-shadow: 0 1px 8px rgba(255,255,255,.7); }
.chip .from::after { content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #1d6ae0; }
.chip .to {
  margin-top: 5px; background: #fff;
  color: #1152bd; font-size: 15px; font-weight: 700;
  border-radius: 999px; padding: 11px 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  box-shadow: 0 6px 20px rgba(12, 52, 118, .18), inset 0 0 0 1px rgba(29, 106, 224, .14);
}

/* 히어로 → 딥블루로 가라앉는 스테이트먼트 구간 (시안 s01)
   ⚠ 흰 글씨의 대비는 상위 그라디언트의 우연에 맡기지 않는다.
   각 구간이 자기 배경을 선언한다 — 실측 기준 4.5:1(시안 원본은 1.55:1이었다). */
.statement {
  /* 🔴🔴 position 이 없으면 아래 ::before 의 inset:0 이 «자기 절»이 아니라 .hero-fore(2016px)를
     덮는다 — 제목·부제·칩·패널이 전부 파란 베일 밑에 깔린다. 대표 지적 «글자가 흐리다»의 실체가 이것이었다.
     실측: 칩 글자 대비 2.12:1 → 7.14:1, 라벨 2.26:1 → 7.52:1.
     🔑 절이 «자기 배경을 선언한다»는 이 파일의 원칙은, 그 절이 positioned 일 때만 지켜진다. */
  position: relative;
  min-height: 92svh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 150px 0 92px;
}
.statement::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* 🔴 베일을 자기 절에 가두자 «아래 끝»이 드러났다 — 82% 불투명에서 뚝 끊겨 y=530 에
     47.0/px 짜리 가로선이 생겼다(전엔 히어로 끝까지 덮여 안 보이던 자리다).
     🔑 «가둔 것»과 «끝을 푼 것»은 따로 해야 한다 → 꼬리를 0 으로 빼서 다음 절로 넘긴다. 실측 47.0 → 1.0/px.
     글자 중심은 이 절의 54% 지점이라 최대 불투명(.90)을 62% 에 둔다. */
  background: linear-gradient(180deg,
    rgba(0, 108, 200, 0) 0%,
    rgba(0, 105, 196, .70) 10%,
    rgba(0, 100, 188, .90) 22%,
    rgba(0, 97, 182, .90) 78%,
    rgba(0, 92, 174, .55) 92%,
    rgba(0, 88, 166, 0) 100%);
}
.statement .big {
  position: relative; z-index: 1;
  font-size: clamp(28px, 3.3vw, 46px); font-weight: 800; color: #fff; line-height: 1.5;
  letter-spacing: -.015em; text-shadow: 0 4px 30px rgba(2, 38, 84, .5);
}
.hero .grad {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(234,243,254,0) 0%,
    rgba(234,243,254,0) 28%,
    rgba(140,196,252,.42) 48%,
    rgba(41,140,246,.72) 70%,
    rgba(10,110,215,.88) 100%);
}

/* 스테이트먼트 2 (시안 s02) — 딥블루에서 시작해 밝게 «올라온다».
   🔴 앞 절(히어로)이 딥블루로 끝나는데 여기가 밝게 시작하면 경계에서 색이 튄다(대표 지적).
   앞 절의 끝 색에서 이어받아 아래로 갈수록 밝아지며 다음 흰 절로 자연스럽게 넘긴다. */
.statement2 {
  background:
    linear-gradient(180deg, rgba(0,88,168,.96) 0%, rgba(0,105,196,.94) 30%, rgba(46,134,232,.9) 62%, rgba(150,199,250,.8) 100%),
    url(/assets/bg-hero.jpg) center/cover;
  min-height: 64svh; display: flex; align-items: center;
}
.statement2 .big b { color: #fff; font-weight: 800; }
.statement2 .big {
  font-size: clamp(24px, 2.7vw, 38px); font-weight: 800; color: #fff; text-align: center;
  line-height: 1.65; letter-spacing: -.012em; width: 100%;
  text-shadow: 0 3px 24px rgba(2, 38, 84, .45);
}


/* ───── 서비스를 «처음 소개하는 자리» — 빈 파랑 대신 실제로 도는 흐름을 놓는다 (대표 지적: 횡하다·추상적) ─── */
.st-inner { position: relative; z-index: 1; width: 100%; }
/* ───── 두 축 = 두 판. 이 절은 «제목 + 두 판 + 한 줄» 세 겹으로 끝낸다.
   앞선 판들은 패널·리드·그룹헤더·카드·마무리까지 여섯 겹이라 난잡했다(대표 지적). ───── */
.axes { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; text-align: left; }
.axis {
  background: #fff; border-radius: var(--radius); padding: 40px 40px 36px;
  box-shadow: 0 18px 48px rgba(3, 26, 68, .22);
  display: flex; flex-direction: column; align-items: flex-start;
}
.axbadge {
  background: #eaf2ff; color: #1152bd; font-weight: 800; font-size: 14.5px;
  border-radius: 8px; padding: 6px 14px; letter-spacing: -.01em;
}
.axbadge.alt { background: #e2f6f2; color: #0a7a6d; }
.axis h3 {
  margin-top: 20px; font-size: clamp(20px, 1.85vw, 27px); font-weight: 800;
  color: var(--ink); line-height: 1.4; letter-spacing: -.022em;
}
.axis > p { margin-top: 16px; font-size: clamp(14.5px, 1.15vw, 16.5px); line-height: 1.8; color: #55677f; flex: 1; }
.floop {
  max-width: 780px; margin: 38px auto 0; padding: 18px 24px;
  color: #fff; font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.6;
  border: 1px solid rgba(255,255,255,.24); border-radius: 16px;
  background: rgba(8, 58, 130, .28); box-shadow: 0 12px 30px rgba(2, 32, 76, .18);
  text-shadow: 0 2px 14px rgba(2, 32, 76, .4);
}
.floop b { color: #fff; font-weight: 800; }

/* ───── 고민별 상담 — 누른 고민이 신청서에 담긴다 ───── */
.worry {
  background:
    radial-gradient(80% 74% at 50% 0%, rgba(180, 218, 255, .55), transparent 64%),
    var(--bg-tint);
}
.worry .lead b { color: var(--blue); font-weight: 800; }
.brief-cue {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 7px 11px 7px 9px;
  border: 1px solid #dbe8f8; border-radius: 999px; background: rgba(255, 255, 255, .58);
  color: #61758e; font-size: 12.5px; font-weight: 600; line-height: 1.45;
}
.brief-cue span { color: #2a76d9; font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.worry .worries { margin-top: 28px; }
.worries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wcard {
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 26px; box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: #bcd6f5; }
.wcard .wt { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.5; color: #4e6078; letter-spacing: -.015em; }
.wcard .wt b { display: inline-block; color: var(--ink); font-weight: 800; }
.wcard .wgo {
  display: inline-flex; align-items: center; align-self: flex-start; border-radius: 999px;
  padding: 7px 11px; background: #eef5ff; border: 1px solid #d7e7fb;
  font-size: 13.5px; font-weight: 800; color: var(--blue); transition: background .2s ease, color .2s ease, transform .2s ease;
}
.wcard .wgo::after { content: " →"; margin-left: 5px; }
.wcard:hover .wgo { background: #e0efff; color: var(--blue-deep); transform: translateX(2px); }
.wcard:focus-visible { outline: 3px solid rgba(29, 125, 247, .38); outline-offset: 4px; }

/* 상담 모달 — 선택한 고민을 «상담 브리프»로 보여 준다 */
.contact-modal .consultation-head { padding-right: 34px; }
.contact-modal .modal-eyebrow {
  color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em;
}
.contact-modal h3 { margin-top: 8px; font-size: clamp(22px, 2.2vw, 27px); line-height: 1.38; }
.contact-modal .hint { margin-top: 10px; color: #5a6d85; line-height: 1.68; }
.consult-brief {
  margin-top: 20px; padding: 14px 16px 15px; border: 1px solid #cfe1fb; border-radius: 14px;
  background: linear-gradient(135deg, #f3f8ff 0%, #eef6ff 100%);
}
.brief-head { display: flex; align-items: center; gap: 8px; }
.brief-no {
  display: inline-flex; align-items: center; justify-content: center; width: 23px; height: 23px;
  border-radius: 50%; background: var(--blue); color: #fff; font-size: 10px; font-weight: 800;
}
.brief-label { color: #245eaf; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.contact-modal .picked { margin-top: 8px; color: #153f78; font-size: 14px; line-height: 1.58; font-weight: 700; }
.brief-note { margin-top: 6px; color: #58708d; font-size: 12.5px; line-height: 1.55; }
.consult-process {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 18px 0 4px; padding: 0;
}
.consult-process li {
  min-width: 0; min-height: 58px; padding: 10px 11px; border: 1px solid #e3ebf5; border-radius: 11px;
  background: #fafcff; display: flex; flex-direction: column; justify-content: center; gap: 2px;
}
.consult-process span { color: #7fa7da; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.consult-process b { color: #435a77; font-size: 12.5px; line-height: 1.35; }

/* ---------- generic sections ---------- */
.sec { padding: clamp(96px, 9vw, 128px) 0; }
.sec.tint { background: var(--bg-tint); }
.sec h2 { font-size: clamp(27px, 3vw, 42px); font-weight: 800; color: var(--ink); line-height: 1.42; letter-spacing: -.02em; }
.sec h2 b { color: var(--blue); font-weight: 800; }
.sec .lead { margin-top: 24px; font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.8; }
.sec .label { color: var(--blue); font-weight: 700; font-size: clamp(19px, 1.8vw, 25px); margin-bottom: 40px; letter-spacing: -.015em; }

/* 질문 예시 — 데스크톱은 읽기 쉽게 정지, 모바일만 천천히 움직인다. */
.qwall {
  margin: 56px 0 72px; display: grid; gap: 18px;
}
.qrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; width: auto; }
.qrow.rev span:nth-child(n+4), .qrow span:nth-child(n+4) { display: none; }
.qrow span {
  background: #fff; border: 1px solid var(--line); color: #4e6078;
  font-size: 16px; border-radius: 999px; padding: 13px 28px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37, 78, 138, .05);
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px) and (prefers-reduced-motion: no-preference) {
  .qwall {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }
  .qrow { flex-wrap: nowrap; justify-content: flex-start; width: max-content; animation: slide 50s linear infinite; }
  .qrow.rev { animation-direction: reverse; }
  .qrow.rev span:nth-child(n+4), .qrow span:nth-child(n+4) { display: inline-block; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* numbered big cards */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ncard { background: var(--card-tint); border-radius: var(--radius); padding: 44px 44px 48px; transition: transform .3s ease, box-shadow .3s ease; }
.ncard .no { font-size: 58px; font-weight: 800; color: #c3d9f4; line-height: 1; letter-spacing: -.02em; }
.ncard h3 { margin-top: 60px; font-size: clamp(20px, 1.85vw, 27px); color: var(--ink); line-height: 1.46; font-weight: 700; letter-spacing: -.015em; }
.ncard h3 b { color: var(--blue); }
.ncard p { margin-top: 20px; font-size: 15.5px; line-height: 1.78; }
.ncard.on-white { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.ncard.on-white:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.ncard.on-white .no { font-size: 17px; color: #9fb9d9; }
.ncard.on-white h3 { margin-top: 26px; }
.ncard.on-white h3 b { color: var(--blue); }

/* 정보 구조 점검 카드 */
.audit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.auditcard {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 38px 40px; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.auditcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, #12b5a5, var(--blue)); }
.auditcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.auditcard .no { font-size: 15px; font-weight: 800; color: #6d8bb0; letter-spacing: .09em; }
.auditcard h3 { margin-top: 18px; font-size: clamp(22px, 2vw, 30px); color: var(--blue); font-weight: 800; letter-spacing: -.018em; }
.auditcard p { margin-top: 16px; font-size: 15.5px; color: #4d6180; line-height: 1.75; }

/* 검색과 AI 답변의 차이를 설명하는 진단 예시 */
.case-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; margin-top: 0; box-shadow: var(--shadow-card);
}
.case .eyebrow { color: var(--blue); font-size: 14.5px; font-weight: 700; }
.case h3 { margin-top: 18px; font-size: clamp(19px, 1.6vw, 24px); color: var(--ink); line-height: 1.45; }
.case p { margin-top: 14px; font-size: 15.5px; color: #374962; line-height: 1.75; }

/* method 4 cards (white on tint) */
.mcard {
  background: #fff; border-radius: var(--radius); padding: 40px 32px 44px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.mcard .no { font-size: 66px; font-weight: 800; color: #e6eefa; line-height: 1; letter-spacing: -.02em; }
.mcard .en { font-size: 14.5px; font-weight: 700; color: #9fb1c6; letter-spacing: .05em; margin-top: 10px; }
.mcard h3 { margin-top: 20px; font-size: clamp(22px, 2vw, 31px); color: var(--blue); font-weight: 800; line-height: 1.35; letter-spacing: -.018em; }
.mcard h3.ink { color: var(--ink); }
.mcard p { margin-top: 22px; font-size: 15px; line-height: 1.78; }
.mcard .urls { margin-top: 28px; color: #9fb1c6; font-size: 13.5px; line-height: 1.75; }
.trust-note {
  margin-top: 28px; padding: 34px 38px 36px; border-radius: var(--radius);
  color: #eaf3ff; background: linear-gradient(135deg, #0d4fae, #12356e);
  box-shadow: 0 16px 38px rgba(13, 58, 132, .2);
}
.trust-note h3 { color: #fff; font-size: clamp(21px, 1.8vw, 27px); font-weight: 800; }
.trust-note > p { margin-top: 16px; font-size: 15.5px; line-height: 1.75; }
.trust-note b { color: #fff; font-weight: 800; }
.trust-note dl { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-note dl div { padding: 16px; border-radius: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.trust-note dt { color: #fff; font-weight: 800; }
.trust-note dd { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; color: #d9e8ff; }
.trust-note .ymyl { color: #cfe2ff; font-size: 14px; }

/* services band */
.band { color: #fff; overflow: clip; background: linear-gradient(180deg, #2f86e8 0%, #0a68c9 40%, #00518f 100%); }
.band .band-media { opacity: .24; mix-blend-mode: luminosity; }
.band .inner { position: relative; z-index: 1; padding: 136px 0; }
.band .statement-t {
  text-align: center; font-size: clamp(24px, 2.8vw, 39px); font-weight: 800; line-height: 1.6;
  letter-spacing: -.015em; text-shadow: 0 3px 26px rgba(13, 58, 132, .32);
}
/* 한 줄로 가르는 문장 — 「채널은 어디서, 콘텐츠는 무엇을」 */
.band .split {
  margin: 64px auto 0; max-width: 900px; text-align: center;
  font-size: clamp(17px, 1.6vw, 23px); font-weight: 600; color: #eaf3ff;
  text-shadow: 0 2px 14px rgba(13, 58, 132, .35);
}
.band .split b { color: #fff; font-weight: 800; }

/* 두 서비스 비교 카드 */
.svc2 { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.svccard {
  background: #fff; border-radius: 22px; padding: 40px 38px 36px; color: var(--body);
  box-shadow: 0 18px 50px rgba(6, 40, 100, .22);
  display: flex; flex-direction: column;
}
/* 무엇을 파는지 한 눈에 — 번호 + 분류 + 「블로그 마케팅 / 홈페이지 마케팅」 (대표 지시) */
.svccard .svchead { display: flex; align-items: center; gap: 16px; }
.svccard .no {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #12b5a5, #1d7df7); color: #fff;
  font-size: 17px; font-weight: 800; letter-spacing: -.01em;
  box-shadow: 0 8px 20px rgba(23, 110, 220, .3);
}
.svccard .tag { font-size: 13px; font-weight: 700; color: #7d93ae; letter-spacing: .04em; }
.svccard h3 { margin-top: 2px; font-size: clamp(23px, 2.1vw, 30px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.svccard .one { margin-top: 22px; font-size: 16.5px; color: #47596f; }
.svccard .one b { color: var(--blue); font-weight: 700; }
.svccard ul { margin-top: 24px; padding: 0; list-style: none; display: grid; gap: 11px; }
.svccard li { position: relative; padding-left: 24px; font-size: 15.5px; line-height: 1.65; }
.svccard li::before {
  content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px;
  border-radius: 3px; background: linear-gradient(135deg, #12b5a5, #1d7df7);
}
.svccard .res {
  margin-top: 26px; padding-top: 18px; border-top: 1px dashed var(--line);
  font-size: 15px; color: #6b7d94;
}
.svccard .res b { color: var(--ink); font-weight: 700; }
.svccard .one b { color: var(--blue); font-weight: 800; }
.svccard li b { color: var(--ink); font-weight: 700; }
.svcnote {
  margin-top: 38px; text-align: center; color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px); font-weight: 800; line-height: 1.55; letter-spacing: -.018em;
  text-shadow: 0 2px 14px rgba(13, 58, 132, .35);
}
.svcnote b { color: #fff; font-weight: 800; }
.svcnote .sub { display: block; margin-top: 14px; font-size: clamp(14.5px, 1.15vw, 16.5px); font-weight: 500; color: #d3e5fd; letter-spacing: -.01em; }

/* 실물 스트립 — 카드가 «말한 것»을 그대로 보여준다.
   🔑 파란 밴드 위에 놓이므로 판은 «불투명한 흰색». 반투명이면 스크롤 위치마다 대비가 달라진다. */
.shots { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shots figure { margin: 0; }
.shots img {
  display: block; width: 100%; height: auto; aspect-ratio: 1600 / 820; object-fit: cover; object-position: top center;
  border-radius: 12px; background: #eef4fb; border: 1px solid #dbe6f4;
  box-shadow: 0 8px 26px rgba(16, 56, 120, .14);
}
.shots figcaption {
  margin-top: 10px; font-size: 12.5px; line-height: 1.5; color: #6d8bb0; font-weight: 600; letter-spacing: -.005em;
}
.shotnote {
  margin-top: 16px; font-size: 12.5px; font-weight: 700; color: #7d93ae; letter-spacing: .02em;
}

.band .cta-row { margin-top: 56px; text-align: center; }

/* 다크밴드 결론 문장 (흐르는 띠 대체) */
.dark-band .t-sub {
  position: relative; z-index: 1; margin-top: -40px; padding: 0 24px 120px;
  font-size: clamp(17px, 1.7vw, 24px); font-weight: 600; line-height: 1.65;
  color: #c9dcf7; letter-spacing: -.01em; text-shadow: 0 2px 20px rgba(4, 22, 56, .5);
}
.dark-band .t-sub b { color: #fff; font-weight: 800; }
.dark-band .t { padding-bottom: 60px; }

/* timeline rows */
.tl { display: grid; gap: 18px; }
.tl .row {
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  padding: 21px 30px; display: flex; gap: 28px; align-items: baseline; font-size: 15.5px;
}
.tl .row .y { font-weight: 800; color: var(--ink); white-space: nowrap; min-width: 78px; }
.tl .row.now { border: 1.5px solid var(--blue); background: #f2f8ff; box-shadow: 0 8px 30px rgba(29, 125, 247, .14); }
.tl .row.now .y { color: var(--blue); }
.imps { margin-top: 64px; }
.icard { background: var(--card-tint); border-radius: var(--radius); padding: 38px 38px 42px; }
.icard .no { font-size: 16px; font-weight: 800; color: #b0cbec; letter-spacing: .06em; }
.icard h3 { margin-top: 26px; font-size: clamp(20px, 1.85vw, 28px); color: var(--blue); font-weight: 800; line-height: 1.42; letter-spacing: -.015em; }
.icard p { margin-top: 18px; font-size: 15px; line-height: 1.78; }

/* FAQ — 질문을 먼저 보이고, 필요한 답만 여는 가벼운 아코디언 */
.faq { margin-top: 44px; display: grid; gap: 12px; }
.fitem {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.fitem summary {
  position: relative; display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 24px 64px 24px 28px; color: var(--ink); cursor: pointer; list-style: none;
}
.fitem summary::-webkit-details-marker { display: none; }
.fitem summary::after {
  content: "+"; position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: #eaf3ff; color: var(--blue); font-size: 21px; font-weight: 500; line-height: 1;
}
.fitem[open] summary { background: #f7fbff; border-bottom: 1px solid var(--line); }
.fitem[open] summary::after { content: "−"; }
.fitem summary:focus-visible { outline: 3px solid rgba(29,125,247,.45); outline-offset: -3px; }
.fitem .qn {
  display: inline-flex; flex: none; align-items: center; justify-content: center;
  min-width: 34px; height: 24px; padding: 0 9px;
  border-radius: 7px; background: #e7f0fd; color: var(--blue);
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
}
.faq-question { font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; line-height: 1.5; letter-spacing: -.015em; }
.faq-answer { padding: 0 28px 26px; }
.fitem p { margin-top: 18px; font-size: 15.5px; line-height: 1.8; }
.fitem p b { color: var(--blue); font-weight: 700; }
.fitem a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.faq-price-list { margin-top: 18px; display: grid; gap: 8px; padding: 0; list-style: none; }
.faq-price-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 14px; border-radius: 10px; background: #f4f8fd; color: #50657d; font-size: 14.5px; line-height: 1.5; }
.faq-price-list b { flex: none; color: var(--blue); font-weight: 800; white-space: nowrap; }
.fitem .faq-note { margin-top: 14px; color: #657991; font-size: 13.5px; line-height: 1.65; }

/* dark bands */
.dark-band {
  color: #fff; min-height: 68svh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: clip; background: #1c4fa8;
}
.dark-band .dark-media::after { content: ""; position: absolute; inset: 0; background: rgba(12, 40, 104, .42); }
.dark-band .t {
  position: relative; z-index: 1; font-size: clamp(22px, 2.7vw, 37px); font-weight: 800; line-height: 1.62;
  letter-spacing: -.012em; text-shadow: 0 3px 26px rgba(4, 22, 56, .45); padding: 130px 24px;
}
.dark-band { flex-direction: column; }

/* ---------- final cta : 데스크 씬 재구성 ---------- */
.final { background: radial-gradient(120% 90% at 50% 0%, #12325e 0%, #0a1c38 44%, #060f1f 100%); color: #fff; overflow: clip; }
.final .dark-media { opacity: .3; }
.final .dark-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,16,34,.25), rgba(4,10,22,.9)); }
/* 🔑 세로 여백만 주려고 padding 을 통째로 쓰면 .wrap 의 좌우 24px 이 함께 지워진다 —
   데스크톱에선 max-width 가 가려 주지만 좁은 폭에선 내용이 화면 끝에 붙는다. 좌우를 명시한다. */
.final .inner { position: relative; z-index: 2; padding: 148px 24px 76px; text-align: center; }
.final .eyebrow { color: #4a9bff; font-weight: 800; font-size: clamp(17px, 1.5vw, 22px); letter-spacing: .01em; }
.final h2 { margin-top: 28px; font-size: clamp(26px, 2.9vw, 42px); font-weight: 800; line-height: 1.5; color: #fff; letter-spacing: -.018em; text-shadow: 0 4px 30px rgba(3, 14, 34, .6); }
.final .lead { margin-top: 24px; color: #b9c7da; font-size: clamp(14.5px, 1.2vw, 17px); }
/* CTA 가격 — 시작가 3장. 다크 판 위라 «흰 글씨 + 불투명 카드»로 대비를 고정한다. */
.pricing { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.pricing-label { margin-top: 48px; color: #78b9ff; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.pricing-label + .pricing { margin-top: 18px; }
.pcard {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(140, 186, 255, .28);
  border-radius: 16px; padding: 28px 26px 26px; position: relative; overflow: hidden;
}
.pcard.featured { background: linear-gradient(145deg, rgba(36, 128, 255, .28), rgba(255, 255, 255, .09)); border-color: rgba(135, 201, 255, .68); box-shadow: 0 18px 38px rgba(1, 20, 52, .28); }
.pcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, #12b5a5, #4a9bff); }
.pcard .pk { font-size: 13px; font-weight: 800; color: #8ec0ff; letter-spacing: .04em; }
.pcard .pv { margin-top: 14px; font-size: clamp(26px, 2.3vw, 34px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.02em; }
.pcard .pv span { margin-left: 6px; font-size: 15px; font-weight: 700; color: #b9c7da; letter-spacing: 0; }
.pcard .pd { margin-top: 14px; font-size: 13.5px; line-height: 1.72; color: #c6d4e6; }
.pcard .pd b { color: #fff; font-weight: 700; }
.price-ref { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(167, 204, 251, .22); display: grid; gap: 9px; }
.price-ref div { display: flex; justify-content: space-between; gap: 12px; color: #b8cae1; font-size: 12.5px; line-height: 1.45; }
.price-ref b { flex: none; color: #fff; font-weight: 700; white-space: nowrap; }
.pnote { margin-top: 20px; font-size: 13px; line-height: 1.7; color: #93a7c0; }
.pnote b { color: #d7e3f3; font-weight: 700; }

.consult-spotlight {
  position: relative; overflow: hidden; isolation: isolate; max-width: 940px; margin: 34px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 30px 32px 30px 34px;
  border: 1px solid rgba(142, 201, 255, .5); border-radius: 20px; text-align: left;
  background: linear-gradient(115deg, rgba(25, 108, 224, .48), rgba(31, 71, 133, .38) 56%, rgba(255, 255, 255, .09));
  box-shadow: 0 22px 54px rgba(1, 12, 34, .34), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.consult-spotlight::before {
  content: ""; position: absolute; z-index: -1; width: 280px; height: 280px; right: -120px; top: -160px;
  border-radius: 50%; background: rgba(101, 183, 255, .24); filter: blur(2px);
}
.consult-overline { color: #9ed0ff; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.consult-copy h3 { margin-top: 8px; color: #fff; font-size: clamp(21px, 2vw, 29px); font-weight: 800; line-height: 1.42; letter-spacing: -.02em; }
.consult-copy > p:last-child { margin-top: 10px; color: #d3e4f9; font-size: 14.5px; line-height: 1.65; }
.consult-spotlight .consult-action {
  flex: none; min-width: 224px; padding: 18px 26px; background: #fff; color: #1253aa;
  box-shadow: 0 14px 34px rgba(0, 15, 48, .28); white-space: nowrap;
}
.consult-spotlight .consult-action::after { content: "→"; margin-left: 12px; font-size: 1.15em; }
.consult-spotlight .consult-action:hover { background: #f4f9ff; box-shadow: 0 18px 40px rgba(0, 15, 48, .34); }

/* 모니터 목업 두 대 — 시안 데스크 씬의 재구성 (자체 미니 UI · 일반 라벨) */
.scene { position: relative; z-index: 1; height: 380px; margin-top: -30px; pointer-events: none; }
.scene::before {
  content: ""; position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  width: min(880px, 90%); height: 190px;
  background: radial-gradient(55% 100% at 50% 100%, rgba(46, 118, 230, .34), transparent 70%);
  filter: blur(6px);
}
.monitor {
  position: absolute; border-radius: 12px; background: #0d1420;
  box-shadow: 0 30px 80px rgba(2, 8, 20, .65), inset 0 0 0 1px rgba(120, 160, 220, .18);
  padding: 10px;
}
.monitor::after {
  content: ""; position: absolute; left: 50%; bottom: -46px; transform: translateX(-50%);
  width: 34%; height: 46px;
  background: linear-gradient(180deg, #131b29 0%, #0b111c 60%);
  clip-path: polygon(38% 0, 62% 0, 78% 100%, 22% 100%);
}
.monitor .scr { border-radius: 7px; overflow: hidden; width: 100%; height: 100%; display: flex; flex-direction: column; text-align: left; }
/* 시안 데스크 씬: 두 대가 중앙에 모여 겹친다(뒤=어두운 화면 높게 / 앞=밝은 화면 낮게) */
.monitor.m-dark { left: 50%; bottom: 104px; width: 400px; height: 262px; transform: translateX(-6%) rotate(-2deg); }
.monitor.m-light { left: 50%; bottom: 40px; width: 344px; height: 226px; transform: translateX(-100%) rotate(2.5deg); z-index: 2; }
.monitor .scr img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.scene .cap {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  font-size: 13px; font-weight: 600; color: #8098bb; white-space: nowrap; letter-spacing: .02em;
}

/* footer */
footer { background: var(--footer); color: #d9dde3; }
footer .inner { padding: 92px 0 76px; }
.f-claim { display: flex; align-items: center; gap: 40px; }
.f-claim .l { font-size: clamp(18px, 1.75vw, 25px); line-height: 1.55; color: #eef1f5; white-space: nowrap; }
.f-claim .rule { flex: 1; height: 1px; background: #43484f; }
.f-claim .r { font-size: clamp(18px, 1.75vw, 25px); white-space: nowrap; }
.f-claim .r b { font-weight: 800; }
.f-cols { margin-top: 100px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.f-cols .col { font-size: 14px; color: #a6aeb9; display: grid; gap: 9px; align-content: start; }
.f-cols .col a { transition: color .2s ease; }
.f-cols .col a:hover { color: #fff; }
.f-brand { text-align: right; display: grid; gap: 15px; justify-items: end; }
.f-brand .domain { font-size: 16px; color: #e6e9ee; letter-spacing: .02em; }
.f-brand img { height: 20px; width: auto; }

/* reveal + 스태거 — 아래로 갈수록 수직 리듬을 유지하되, 절의 성격에 따라 거리만 미세하게 변주한다. */
.rv {
  opacity: 0; transform: translate3d(0, var(--rv-y, 20px), 0) scale(var(--rv-scale, 1));
  will-change: opacity, transform;
  transition: opacity .62s cubic-bezier(.2,.68,.3,1), transform .68s cubic-bezier(.2,.68,.3,1);
}
.rv.in { opacity: 1; transform: translate3d(0, 0, 0) scale(1); will-change: auto; }
main > [data-scroll-scene="rise"] { --rv-y: 22px; --rv-scale: 1; }
main > [data-scroll-scene="settle"] { --rv-y: 12px; --rv-scale: .985; }
main > [data-scroll-scene="fade"] { --rv-y: 7px; --rv-scale: 1; }
main > [data-scroll-scene="arrive"] { --rv-y: 16px; --rv-scale: .99; }
.grid2 > .rv:nth-child(2), .grid3 > .rv:nth-child(2), .grid4 > .rv:nth-child(2), .stats > .rv:nth-child(2) { transition-delay: .1s; }
.grid3 > .rv:nth-child(3), .grid4 > .rv:nth-child(3), .stats > .rv:nth-child(3) { transition-delay: .2s; }
.grid4 > .rv:nth-child(4) { transition-delay: .3s; }
.grid2 > .rv:nth-child(3) { transition-delay: .1s; }
.grid2 > .rv:nth-child(4) { transition-delay: .2s; }
.chips > .rv:nth-child(2) { transition-delay: .12s; }
.chips > .rv:nth-child(3) { transition-delay: .24s; }
.chips > .rv:nth-child(4) { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* modal */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal .dim { position: absolute; inset: 0; background: rgba(8, 17, 32, .64); backdrop-filter: blur(3px); }
.modal .box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 32px)); max-height: calc(100dvh - 48px); overflow: auto;
  background: #fff; border-radius: 20px; padding: 38px 34px;
  box-shadow: 0 40px 120px rgba(4, 14, 32, .5);
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch; scrollbar-gutter: stable;
}
.modal h3 { color: var(--ink); font-size: 23px; letter-spacing: -.015em; }
.modal .hint { font-size: 14px; margin-top: 8px; }
.contact-modal .consultation-box { width: min(560px, calc(100vw - 32px)); padding: 30px 32px 28px; }
.contact-modal form { margin-top: 22px; display: grid; gap: 16px; }
.contact-fields { min-width: 0; border: 0; padding: 0; }
.contact-fields legend { padding: 0; color: #60738b; font-size: 12.5px; font-weight: 700; }
.field-grid { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-wide { grid-column: 1 / -1; }
.modal label { font-size: 13.5px; color: var(--ink); font-weight: 600; display: grid; gap: 6px; }
.modal input, .modal textarea {
  font: inherit; font-size: 15px; border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; color: var(--ink); width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.modal input:focus, .modal textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,125,247,.16); }
.field-guide { color: #70839a; font-size: 12px; font-weight: 400; line-height: 1.5; }
.form-bottom { display: grid; gap: 9px; }
.modal .consent { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--body); font-weight: 400; line-height: 1.55; }
.modal .consent input { width: auto; margin-top: 3px; }
.modal .consent a, .privacy-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.privacy-note { color: #728399; font-size: 12px; line-height: 1.5; }
.contact-modal .btn[type="submit"] { width: 100%; margin-top: 5px; padding: 13px 18px; font-size: 15.5px; }
.submit-note { color: #74869b; font-size: 12px; text-align: center; line-height: 1.5; }
.modal .x { position: absolute; right: 18px; top: 14px; font-size: 26px; color: var(--muted); }
.modal .msg { font-size: 14px; margin-top: 4px; }
.modal .msg.ok { color: #0d9668; }
.modal .msg.err { color: #d0455a; }
.modal .alt { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 2px; }
.modal .alt a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.modal .hint b { color: var(--ink); }
.contact-modal .x:focus-visible, .contact-modal .btn:focus-visible, .contact-modal a:focus-visible {
  outline: 3px solid rgba(29,125,247,.45); outline-offset: 3px;
}
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .gnb .links { gap: 18px; font-size: 14px; }
  .gnb .tagline { display: none; }
}
@media (max-width: 1180px) {
  .axes { grid-template-columns: 1fr; gap: 18px; }
  .worries { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .monitor.m-dark { transform: translateX(-14%) rotate(-2deg); }
  .monitor.m-light { transform: translateX(-92%) rotate(2.5deg); }
}
@media (max-width: 860px) {
  .sec { padding: 84px 0; }
  .chips { grid-template-columns: repeat(2, 1fr); margin-top: 52px; }
  .grid2, .grid3, .audit-grid, .case-grid { grid-template-columns: 1fr; }
  .audit-grid, .case-grid { gap: 18px; }
  .tl .row { flex-direction: column; gap: 8px; padding: 18px 22px; }
  .f-claim { flex-direction: column; align-items: flex-start; gap: 18px; }
  /* 🔴 `.f-claim .rule` 은 `flex: 1` 이다 — 세로 flex 로 바뀌면 그 1 이 «높이»를 늘려
     1px 선이 빈칸이 된다(폰에서 문구가 뚝 끊겨 보였다). flex 를 꺼야 선으로 남는다. */
  .f-claim .rule { flex: none; width: 100%; height: 1px; }
  .f-cols { margin-top: 60px; }
  .f-brand { text-align: left; justify-items: start; }
  .gnb .tagline { display: none; }
  .ncard h3 { margin-top: 34px; }
  .statement { min-height: 66svh; }
  .statement2 { min-height: 60svh; }
  .dark-band { min-height: 60svh; }
  /* 태블릿·모바일에서는 두 작업 예시를 겹치지 않게 함께 보여준다. */
  .scene { height: auto; margin-top: 8px; padding: 0 20px 34px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: flex-start; }
  .scene::before, .monitor::after { display: none; }
  .scene .monitor, .scene .monitor.m-dark, .scene .monitor.m-light {
    position: static; left: auto; bottom: auto; width: auto; height: auto; transform: none;
    flex: 1 1 0; min-width: 0; padding: 6px; border-radius: 10px;
  }
  .scene .monitor .scr { aspect-ratio: 16 / 10; height: auto; }
  .scene .cap { position: static; transform: none; width: 100%; text-align: center; margin-top: 12px; white-space: normal; font-size: 12.5px; }
  .band .inner { padding: 96px 0; }
  .trust-note dl { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc2 { grid-template-columns: 1fr; gap: 18px; }
  .pricing { grid-template-columns: 1fr; gap: 14px; }
  .axes { grid-template-columns: 1fr; gap: 16px; }
  .axis { padding: 28px 24px 8px; }
  .worries { grid-template-columns: 1fr; gap: 14px; }
  .svccard { padding: 32px 26px 30px; }
  .gnb .links { display: none !important; }
  .burger { display: flex; }
  .stickycta .wrap { padding: 8px 16px; }
  .stickycta p { display: none; }
  .stickycta .acts { width: 100%; }
  .stickycta .acts .btn, .stickycta .mailbtn { flex: 1; padding: 10px; font-size: 14px; }
}
@media (max-width: 560px) {
  .band .defs .row { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
  .f-cols { flex-direction: column; }
  /* 모바일은 본문 크기를 줄이지 않고, 카드와 절 사이의 반복 여백부터 덜어 낸다. */
  .sec { padding: 64px 0; }
  .band .inner { padding: 76px 0; }
  .audit-grid, .case-grid { margin-top: 32px; gap: 12px; }
  .ncard, .auditcard, .mcard, .case { padding: 26px 20px; }
  .ncard .no, .mcard .no { font-size: 44px; }
  .ncard h3 { margin-top: 24px; }
  .mcard h3, .mcard p { margin-top: 12px; }
  .mcard .urls { margin-top: 18px; }
  .svccard { padding: 28px 20px 24px; }
  .hero .sub br, .sec .lead br, .statement-t br, .svcnote br, .final h2 br { display: none; }
  /* 🔴 폰에서 칩이 «라벨 + 점 + 전면폭 알약» 4벌로 서서 405px 를 먹었다(실측).
     한 줄에 «어디서 → 어디로»를 담으면 같은 뜻을 절반 높이로 말한다.
     🔑 좁은 화면에서 필요한 건 «줄이는 것»이 아니라 «한 줄로 말하는 것»이다. */
  .chips { grid-template-columns: 1fr; gap: 10px; margin-top: 44px; }
  .chip {
    display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; text-align: left;
    background: #fff; border-radius: 14px; padding: 13px 16px;
    box-shadow: 0 6px 18px rgba(12, 52, 118, .16);
  }
  .chip .from {
    flex: none; font-size: 12.5px; font-weight: 600; color: #0f4fa8;
    padding-bottom: 0; text-shadow: none;
  }
  .chip .from::after {
    content: "→"; position: static; transform: none; display: inline;
    width: auto; height: auto; border-radius: 0; background: none;
    margin-left: 8px; color: #1d6ae0; font-weight: 700;
  }
  .chip .to {
    margin-top: 0; background: none; box-shadow: none; padding: 0;
    font-size: 14.5px; font-weight: 700; color: #1152bd; white-space: normal;
  }
  /* 🔴 «구아바가 만들어 운영 중인 채널»이라 복수로 말해 놓고 폰에서는 한 대만 보였다(대표 지적).
     3D 겹침을 버리고 두 장을 나란히 놓으면 둘 다 읽히고 문구와도 맞는다. */
  .scene {
    height: auto; margin-top: 8px; padding: 0 20px 30px;
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: flex-start;
  }
  .scene::before { display: none; }
  .monitor {
    position: static; width: auto; height: auto; flex: 1 1 0; min-width: 0;
    transform: none; padding: 6px; border-radius: 10px;
    box-shadow: 0 14px 34px rgba(2, 8, 20, .5), inset 0 0 0 1px rgba(120, 160, 220, .18);
  }
  .monitor::after { display: none; }
  .monitor .scr { aspect-ratio: 16 / 10; height: auto; }
  /* ⚠ `.monitor.m-dark`(클래스 2개)가 `.monitor`(1개)보다 명시도가 높다 —
     앞 브레이크포인트(≤1080·≤860)의 transform·width 가 여기까지 살아 있었다(실측: 좌표 -17px 로 겹침).
     🔑 «미디어쿼리는 명시도를 올리지 않는다» → 같은 명시도로 다시 적어야 이긴다. */
  .monitor.m-dark, .monitor.m-light {
    display: block; position: static; left: auto; bottom: auto;
    width: auto; height: auto; transform: none; flex: 1 1 0; min-width: 0;
  }
  .grid4 { grid-template-columns: 1fr; }
  .gnb .links { display: none !important; }
  .btn.big { width: 100%; padding: 18px 20px; }
  .qrow span { font-size: 14px; padding: 10px 18px; }
  .hero-top { padding-top: calc(var(--header-h) + 8px); }
  .shots { grid-template-columns: 1fr; gap: 16px; }
  .pcard { padding: 24px 22px 22px; }
  .trust-note { padding: 26px 20px 24px; }
  .trust-note dl { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 18px; }
  .trust-note dl div { padding: 12px; }
  .trust-note dd { margin-top: 6px; font-size: 12.5px; }
  .faq { margin-top: 32px; gap: 10px; }
  .fitem summary { gap: 9px; padding: 18px 48px 18px 18px; }
  .fitem summary::after { right: 16px; width: 24px; height: 24px; font-size: 19px; }
  .fitem .qn { min-width: 31px; height: 22px; padding: 0 7px; font-size: 11.5px; }
  .faq-question { font-size: 16px; line-height: 1.48; }
  .faq-answer { padding: 0 18px 20px; }
  .fitem p { margin-top: 15px; font-size: 15px; line-height: 1.7; }
  .faq-price-list { margin-top: 15px; gap: 7px; }
  .faq-price-list li { display: grid; gap: 3px; padding: 10px 12px; font-size: 13.5px; }
  .fitem .faq-note { margin-top: 12px; font-size: 12.5px; }
  .scene .cap { position: static; transform: none; width: 100%; text-align: center; margin-top: 12px; white-space: normal; font-size: 12.5px; }
  .final .inner { padding: 120px 24px 60px; }
  /* 모바일에서는 모달 자체가 안전 영역 안에 고정되고, 긴 신청서는 내부에서 자연스럽게 스크롤된다. */
  .contact-modal .consultation-box {
    top: 16px; transform: translateX(-50%); width: calc(100vw - 24px);
    max-height: calc(100dvh - 32px); padding: 26px 20px 24px; border-radius: 18px;
  }
  .contact-modal h3 { font-size: 22px; }
  .contact-modal .hint br { display: none; }
  .consult-brief { margin-top: 16px; padding: 13px 14px; }
  .consult-process { gap: 6px; margin-top: 15px; }
  .consult-process li { min-height: 56px; padding: 9px 8px; }
  .consult-process b { font-size: 11.5px; }
  .contact-modal form { margin-top: 18px; }
  .field-grid { grid-template-columns: 1fr; gap: 12px; }
  .field-wide { grid-column: auto; }
  .consult-spotlight { align-items: stretch; flex-direction: column; gap: 22px; padding: 26px 22px 22px; }
  .consult-copy h3 br { display: none; }
  .consult-spotlight .consult-action { width: 100%; min-width: 0; padding: 17px 20px; }

  /* 첫 화면은 목록보다 메시지와 행동이 먼저 읽혀야 한다.
     상세 전환 4개는 아래의 2×2 블록으로 이어져 내용을 버리지 않는다. */
  .hero-media img, .hero-media video { object-position: 78% 56%; }
  .hero .grad {
    background:
      linear-gradient(180deg,
        rgba(244, 249, 255, .86) 0%,
        rgba(233, 245, 255, .48) 43%,
        rgba(105, 179, 247, .58) 73%,
        rgba(18, 107, 214, .88) 100%);
  }
  .hero-top { min-height: 0; display: block; padding-top: 0; padding-bottom: 0; }
  .hero-copy {
    min-height: 100svh; padding: calc(var(--header-h) + 44px) 0 52px;
    display: flex; flex-direction: column; justify-content: flex-start;
  }
  .hero-prelude {
    color: #2d5f97; font-size: 13px; font-weight: 800; line-height: 1.5;
    letter-spacing: .02em;
  }
  .hero-prelude b { color: #1b67d0; }
  .hero-core {
    margin-top: 9px; color: var(--ink-deep); font-size: clamp(31px, 9vw, 36px);
    line-height: 1.22; letter-spacing: -.035em;
  }
  .hero-mobile-break { display: block; }
  .hero .sub {
    max-width: 300px; margin-top: 18px; color: #385674;
    font-size: 15px; line-height: 1.65;
  }
  .hero-cta {
    display: inline-flex; align-self: stretch; min-height: 54px; margin-top: 26px;
    border-radius: 14px; font-size: 16px; font-weight: 800;
    box-shadow: 0 14px 30px rgba(22, 101, 209, .28);
  }
  .hero-cta::after { content: "→"; margin-left: 10px; font-size: 1.15em; }
  .hero-cta-note {
    display: block; margin-top: 10px; color: #5a7594;
    font-size: 12.5px; font-weight: 600; line-height: 1.55;
  }
  .chips {
    grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 0;
    padding-bottom: 70px;
  }
  .chip {
    min-height: 136px; padding: 16px 14px; background: rgba(255, 255, 255, .92);
    border-radius: 16px; box-shadow: 0 10px 24px rgba(12, 52, 118, .16);
  }
  .chip .from { font-size: 11.5px; line-height: 1.48; }
  .chip .from::after {
    content: "↓"; display: block; margin: 5px 0 0; color: #1d6ae0;
    font-size: 14px; line-height: 1; font-weight: 800;
  }
  .chip .to { margin-top: 8px; font-size: 13.5px; line-height: 1.42; }
}

/* 가장 좁은 휴대폰에서는 내비게이션이 본문 CTA와 경쟁하지 않게 한 줄로 정리한다. */
@media (max-width: 369px) {
  .gnb .wrap { gap: 12px; padding-right: 16px; padding-left: 16px; }
  .gnb .logo, .gnb .right { flex: 0 0 auto; }
  .gnb .logo img { height: 20px; }
  .gnb .right { gap: 8px; }
  .gnb .header-contact {
    flex: 0 0 132px; min-width: 132px; height: 44px; padding: 9px 12px;
    border-radius: 10px; font-size: 13px; line-height: 1; white-space: nowrap;
  }
  .gnb .cta-full { display: none; }
  .gnb .cta-short { display: inline; }
  .burger { flex: 0 0 44px; width: 44px; height: 44px; }
}
@media (max-height: 720px) {
  .contact-modal .consultation-box {
    top: 14px; transform: translateX(-50%); max-height: calc(100dvh - 28px);
  }
}
