:root {
  --ink: #0b0b0d;
  --ink-soft: #171719;
  --paper: #f7f7f4;
  --paper-deep: #ebe7dd;
  --white: #ffffff;
  --muted: #6c6a64;
  --line: rgba(11, 11, 13, 0.14);
  --accent: #f05a28;
  --accent-deep: #c94718;
  --shadow: 0 28px 80px rgba(11, 11, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

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

body > header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 22px clamp(22px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 0;
  backdrop-filter: none;
}

body > header p,
body > footer p {
  margin: 0;
}

body > header p a {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.075em;
}

body > header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

body > header nav a,
article > header a,
#trial a,
#cta a,
body > footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body > header nav a:first-child {
  color: rgba(255, 255, 255, 0.76);
}

body > header nav a:last-child,
article > header a,
#trial a,
#cta a {
  color: var(--white);
  background: var(--accent);
}

body > header nav a:hover,
article > header a:hover,
#trial a:hover,
#cta a:hover,
body > footer a:hover {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  height: 92px;
  min-height: 92px;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.site-header .brand,
.site-header .dw-nav {
  transform-origin: center top;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.site-header .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.site-header .dw-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(84px, 1fr));
  gap: 2px;
  min-width: 0;
}

.site-header .dw-nav a {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: auto;
  justify-content: stretch;
  padding: 16px 10px;
  color: var(--white);
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  transition: background 0.25s ease, color 0.25s ease, transform 0.18s ease;
}

.site-header .dw-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .dw-nav a span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.site-header .dw-nav a strong {
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header .dw-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

.site-header .dw-nav a:hover span {
  color: rgba(255, 255, 255, 0.66);
}

.site-header .header-lines {
  position: absolute;
  left: 50%;
  top: calc(50% + 5px);
  display: block;
  width: min(148px, 34vw);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.site-header .header-lines span {
  display: block;
  width: 100%;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 1px 10px rgba(255, 255, 255, 0.24);
}

main {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

article > header {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-content: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(72px, 9vw, 118px);
  border-bottom: 1px solid var(--line);
}

article > header p {
  max-width: 980px;
  margin: 0;
  color: rgba(11, 11, 13, 0.74);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.7;
  letter-spacing: -0.035em;
}

article > header p:first-child {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

article > header h1 {
  max-width: 1180px;
  margin: 34px 0 34px;
  font-size: clamp(46px, 7.6vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.078em;
}

article > header p:last-child {
  margin-top: 30px;
}

section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 0.72fr);
  gap: clamp(38px, 7vw, 104px);
  padding: clamp(96px, 13vw, 172px) 0;
  border-bottom: 1px solid var(--line);
}

section::before {
  content: "";
  position: absolute;
  top: clamp(72px, 10vw, 126px);
  left: 0;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

section h2 {
  grid-column: 1 / 2;
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

section h3,
section p,
section ul,
section ol,
section details {
  grid-column: 2 / 3;
}

section h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

section p {
  max-width: 880px;
  margin: 0;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.62;
  letter-spacing: -0.025em;
}

section ul,
section ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

section li {
  min-height: 78px;
  padding: 0 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.14);
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 740;
  letter-spacing: -0.025em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

section li:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 106, 46, 0.5);
  box-shadow: none;
}

section strong {
  color: var(--accent-deep);
}

.type-section,
.compact-section,
.flow-section,
#reviews,
#faq {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.type-section > h2,
.compact-section > h2,
.flow-section > h2,
#reviews > h2,
#faq > h2 {
  grid-column: 1 / 2;
  align-self: start;
  position: sticky;
  top: 112px;
  margin: 0;
}

.type-section > p,
.compact-section > p,
.type-section > .type-points,
.type-section > .visual-card,
.type-section > .seo-illustration,
.type-section > .concept-board,
.type-section > .ppt-table-wrap,
.compact-section > .seo-illustration,
.compact-section > .concept-board,
.compact-section > .price-graphic,
.flow-section > .seo-illustration,
.compact-section > .ppt-table-wrap,
.flow-section > .route-graphic,
.flow-section > ol,
#reviews > ul,
#faq > details {
  grid-column: 2 / 3;
  width: 100%;
  max-width: 860px;
}

.type-section p {
  max-width: 820px;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(21px, 2.55vw, 38px);
  font-weight: 720;
  line-height: 1.32;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.type-points {
  align-items: stretch;
  margin-top: clamp(22px, 3vw, 40px);
}

.type-points li {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  color: rgba(11, 11, 13, 0.82);
  background: transparent;
}

#summary {
  min-height: 78svh;
}

#subject {
  overflow: visible;
}

#subject .type-points {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(22px, 3vw, 40px);
}

#subject .type-points li {
  min-width: 0;
  min-height: clamp(118px, 13vw, 176px);
  justify-content: flex-end;
  padding: clamp(16px, 2.2vw, 28px);
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: clamp(18px, 2.6vw, 34px);
  box-shadow: 0 22px 54px rgba(11, 11, 13, 0.14);
  font-size: clamp(18px, 2.4vw, 32px);
  letter-spacing: -0.055em;
}

#subject .type-points li:nth-child(even) {
  transform: none;
  background:
    radial-gradient(circle at 24% 16%, rgba(240, 90, 40, 0.28), transparent 40%),
    linear-gradient(145deg, #2a1811, #0b0b0d);
}

.subject-target-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.subject-target-card {
  position: relative;
  min-height: clamp(176px, 18vw, 252px) !important;
  justify-content: space-between !important;
  isolation: isolate;
  overflow: hidden;
}

.subject-target-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -28% 22%;
  z-index: -1;
  height: 62%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.subject-target-card span {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
}

.subject-target-card strong {
  position: relative;
  z-index: 3;
  max-width: 4em;
  color: var(--white);
  font-size: clamp(26px, 2.9vw, 46px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.08em;
  word-break: keep-all;
}

.subject-target-card em {
  display: none;
}

.subject-target-card i {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 1;
  display: block;
  width: clamp(92px, 9vw, 146px);
  height: clamp(92px, 9vw, 146px);
  opacity: 0.16;
  filter: blur(0.2px);
}

.subject-target-card--elementary i {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: 0;
  transform: rotate(-6deg);
}

.subject-target-card--elementary i::before,
.subject-target-card--elementary i::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    calc(100% + 8px) 0 0 #fff,
    0 calc(100% + 8px) 0 rgba(240, 90, 40, 0.95),
    calc(100% + 8px) calc(100% + 8px) 0 #fff;
}

.subject-target-card--elementary i::before {
  top: 0;
  left: 0;
}

.subject-target-card--elementary i::after {
  display: none;
}

.subject-target-card--middle i {
  height: clamp(70px, 7vw, 104px);
  border-bottom: 8px solid rgba(255, 255, 255, 0.92);
  border-left: 8px solid rgba(255, 255, 255, 0.92);
}

.subject-target-card--middle i::before,
.subject-target-card--middle i::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 12px;
  background: var(--accent);
  border-radius: 999px 999px 0 0;
}

.subject-target-card--middle i::before {
  left: 20%;
  height: 46%;
}

.subject-target-card--middle i::after {
  left: 58%;
  height: 78%;
}

.subject-target-card--high i {
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.subject-target-card--high i::before,
.subject-target-card--high i::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 999px;
}

.subject-target-card--high i::before {
  top: 50%;
  left: 12px;
  right: 12px;
  height: 8px;
  transform: translateY(-50%);
}

.subject-target-card--high i::after {
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
}

.subject-target-card--exam i {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9) 0 0) 50% 20px / 68% 8px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.9) 0 0) 50% 42px / 54% 8px no-repeat,
    linear-gradient(var(--accent) 0 0) 50% 68px / 42% 8px no-repeat;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
}

.subject-target-card--repeat i {
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.subject-target-card--repeat i::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-top: 9px solid var(--accent);
  border-right: 9px solid var(--accent);
  border-radius: 50%;
  transform: rotate(34deg);
}

.subject-target-card--repeat i::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 8px;
  border: 10px solid transparent;
  border-left-color: var(--accent);
  transform: rotate(34deg);
}

.type-points li span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.visual-card {
  grid-column: 2 / 3;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: clamp(180px, 20vw, 280px);
  margin: clamp(22px, 3vw, 40px) 0 0;
  padding: clamp(20px, 3vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 90, 40, 0.34), transparent 34%),
    var(--ink);
  border-radius: clamp(22px, 3vw, 38px);
  overflow: hidden;
}

.visual-card strong {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--white);
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.visual-card span {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.visual-card figcaption {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 760;
}

.visual-card--team {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.28), transparent 30%),
    #09090b;
}

.visual-card--trial strong {
  color: var(--accent);
}

.seo-illustration {
  grid-column: 2 / 3;
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  margin: clamp(22px, 3vw, 42px) 0 0;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 90, 40, 0.28), transparent 30%),
    linear-gradient(145deg, #111113, #232329);
  border-radius: clamp(24px, 3.4vw, 44px);
  box-shadow: 0 26px 70px rgba(11, 11, 13, 0.14);
}

.seo-illustration::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% 38%;
  height: 64%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.seo-illustration figcaption {
  position: absolute;
  right: clamp(18px, 2.4vw, 30px);
  bottom: clamp(18px, 2.4vw, 30px);
  left: clamp(18px, 2.4vw, 30px);
  z-index: 4;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.5;
  word-break: keep-all;
}

.scene-person {
  position: absolute;
  z-index: 2;
  bottom: clamp(62px, 6vw, 94px);
  width: clamp(82px, 9vw, 128px);
  height: clamp(112px, 12vw, 166px);
  border-radius: 999px 999px 32px 32px;
  background: linear-gradient(180deg, #fff, #d9d9d9);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.scene-person::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 58px;
  height: 58px;
  background: #f2c7aa;
  border: 8px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.scene-person span {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
  height: 8px;
  background: rgba(240, 90, 40, 0.56);
  border-radius: 999px;
  box-shadow: 0 18px 0 rgba(240, 90, 40, 0.24);
}

.scene-person--left {
  left: clamp(24px, 4vw, 58px);
  transform: rotate(-5deg);
}

.scene-person--right {
  right: clamp(24px, 4vw, 58px);
  transform: rotate(5deg);
}

.scene-panel {
  position: absolute;
  top: clamp(34px, 4vw, 58px);
  left: 50%;
  z-index: 3;
  width: min(46%, 360px);
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 30px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) rotate(-1deg);
}

.scene-panel strong,
.notebook-page strong,
.lesson-screen strong,
.price-board strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.scene-panel i,
.lesson-screen i {
  display: block;
  width: var(--w);
  height: 12px;
  margin-top: 18px;
  background: rgba(240, 90, 40, 0.2);
  border-radius: 999px;
}

.notebook-page {
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  left: clamp(28px, 4vw, 64px);
  z-index: 2;
  width: min(62%, 460px);
  min-height: clamp(210px, 21vw, 300px);
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background:
    repeating-linear-gradient(180deg, transparent 0 38px, rgba(11, 11, 13, 0.08) 39px 40px),
    #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.notebook-page span {
  display: inline-grid;
  place-items: center;
  min-width: 84px;
  min-height: 42px;
  margin: 28px 8px 0 0;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.pencil-shape {
  position: absolute;
  right: clamp(48px, 7vw, 110px);
  bottom: clamp(82px, 8vw, 128px);
  z-index: 3;
  width: 210px;
  height: 24px;
  background: linear-gradient(90deg, var(--accent) 0 78%, #f5d08c 78% 90%, #1d1d21 90%);
  border-radius: 999px;
  transform: rotate(-28deg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.check-bubble {
  position: absolute;
  right: clamp(36px, 5vw, 80px);
  top: clamp(40px, 5vw, 78px);
  z-index: 4;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--accent);
  background: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
  transform: rotate(9deg);
}

.seo-illustration--targets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  padding-bottom: clamp(68px, 7vw, 96px);
}

.level-card {
  position: relative;
  z-index: 2;
  min-height: var(--h, 160px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.level-card strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.level-card span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 940;
}

.level-card--one { --h: 132px; }
.level-card--two { --h: 168px; }
.level-card--three { --h: 204px; }
.level-card--four { --h: 238px; }

.certificate-stack {
  position: absolute;
  inset: clamp(36px, 5vw, 72px) auto auto clamp(42px, 6vw, 84px);
  z-index: 2;
  width: min(62%, 430px);
  min-height: 260px;
}

.certificate-card {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 3.4vw, 46px);
  color: var(--ink);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.certificate-card--back {
  z-index: 0;
  transform: translate(34px, 28px) rotate(5deg);
  opacity: 0.36;
}

.certificate-card--front {
  z-index: 2;
}

.certificate-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.certificate-card strong {
  display: block;
  margin: 34px 0 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.certificate-card i {
  color: rgba(11, 11, 13, 0.58);
  font-style: normal;
  font-weight: 860;
}

.stamp-mark {
  position: absolute;
  right: clamp(44px, 7vw, 112px);
  bottom: clamp(86px, 8vw, 130px);
  z-index: 3;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--accent);
  background: #fff;
  border: 10px solid rgba(240, 90, 40, 0.22);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 950;
  transform: rotate(-12deg);
}

.process-board {
  position: absolute;
  inset: clamp(38px, 5vw, 66px) clamp(28px, 4vw, 58px) auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.process-connector {
  content: "";
  position: absolute;
  top: clamp(112px, 10vw, 142px);
  right: clamp(70px, 8vw, 120px);
  left: clamp(70px, 8vw, 120px);
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 40, 0.62), transparent);
}

.process-ticket {
  position: relative;
  z-index: 2;
  min-height: clamp(150px, 15vw, 210px);
  padding: clamp(18px, 2vw, 26px);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(240, 90, 40, 0.22);
  border-radius: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(var(--ticket-y, 0)) rotate(var(--ticket-r, 0deg));
  overflow: hidden;
}

.process-ticket--one {
  --ticket-y: 12px;
  --ticket-r: -2deg;
}

.process-ticket--two {
  --ticket-y: 42px;
  --ticket-r: 1.5deg;
}

.process-ticket--three {
  --ticket-y: 18px;
  --ticket-r: -1deg;
}

.process-ticket--four {
  --ticket-y: 54px;
  --ticket-r: 2deg;
}

.process-ticket span {
  position: relative;
  z-index: 3;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.process-ticket strong {
  position: absolute;
  top: clamp(78px, 7.4vw, 104px);
  left: 50%;
  z-index: 3;
  display: inline-block;
  width: max-content;
  max-width: calc(100% - 18px);
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.process-ticket em {
  display: block;
  margin-top: 12px;
  color: rgba(11, 11, 13, 0.58);
  font-size: clamp(12px, 1.1vw, 15px);
  font-style: normal;
  font-weight: 820;
  line-height: 1.45;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.process-ticket::before,
.process-ticket::after {
  content: "";
  position: absolute;
  z-index: 1;
  opacity: 0.16;
  pointer-events: none;
}

.process-ticket::before {
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  width: clamp(70px, 7vw, 108px);
  height: clamp(70px, 7vw, 108px);
}

.process-ticket::after {
  right: clamp(30px, 3vw, 48px);
  bottom: clamp(34px, 3vw, 52px);
}

.process-ticket--one::before {
  background:
    linear-gradient(var(--ink) 0 0) 24% 28% / 48% 7px no-repeat,
    linear-gradient(var(--ink) 0 0) 24% 48% / 62% 7px no-repeat,
    linear-gradient(var(--accent) 0 0) 24% 68% / 38% 7px no-repeat,
    #f5f3ef;
  border: 7px solid var(--ink);
  border-radius: 20px;
  transform: rotate(-6deg);
}

.process-ticket--one::after {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border: 6px solid #fff;
  border-radius: 50%;
}

.process-ticket--two::before {
  background:
    linear-gradient(var(--accent) 0 0) 18% 72% / 16% 38% no-repeat,
    linear-gradient(var(--accent) 0 0) 50% 56% / 16% 54% no-repeat,
    linear-gradient(var(--accent) 0 0) 82% 36% / 16% 74% no-repeat;
  border-bottom: 8px solid var(--ink);
  border-left: 8px solid var(--ink);
  border-radius: 0 0 0 18px;
}

.process-ticket--two::after {
  width: 74px;
  height: 8px;
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-10px, -38px) rotate(-28deg);
  box-shadow: 54px -28px 0 -2px var(--accent);
}

.process-ticket--three::before {
  background:
    radial-gradient(circle at 50% 26%, #f2c7aa 0 18%, transparent 19%),
    linear-gradient(#fff 0 0) 50% 74% / 72% 38% no-repeat,
    var(--ink);
  border: 7px solid #fff;
  border-radius: 26px;
  box-shadow: inset 0 -26px 0 rgba(240, 90, 40, 0.82);
}

.process-ticket--three::after {
  width: 52px;
  height: 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.82);
}

.process-ticket--four::before {
  background:
    linear-gradient(var(--accent) 0 0) 18px 24px / 58% 8px no-repeat,
    linear-gradient(rgba(11, 11, 13, 0.3) 0 0) 18px 46px / 42% 8px no-repeat,
    linear-gradient(rgba(11, 11, 13, 0.3) 0 0) 18px 68px / 52% 8px no-repeat,
    #fff;
  border: 7px solid var(--ink);
  border-radius: 22px;
}

.process-ticket--four::after {
  width: 38px;
  height: 38px;
  background: var(--accent);
  clip-path: polygon(18% 12%, 88% 50%, 18% 88%);
}

.lesson-screen {
  position: absolute;
  top: clamp(30px, 4vw, 58px);
  left: clamp(34px, 5vw, 76px);
  z-index: 2;
  width: min(58%, 440px);
  min-height: 240px;
  padding: clamp(26px, 3vw, 38px);
  color: var(--ink);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.lesson-screen strong {
  color: var(--accent);
}

.lesson-chat {
  position: absolute;
  right: clamp(30px, 5vw, 76px);
  bottom: clamp(86px, 8vw, 128px);
  z-index: 3;
  display: grid;
  gap: 12px;
}

.lesson-chat span {
  display: block;
  min-width: 150px;
  padding: 16px 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px 999px 999px 12px;
  font-size: 14px;
  font-weight: 920;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.price-board {
  position: absolute;
  top: clamp(32px, 4vw, 62px);
  left: clamp(34px, 5vw, 74px);
  z-index: 2;
  display: grid;
  width: min(58%, 430px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.price-board strong {
  grid-column: 1 / -1;
}

.price-board span {
  display: grid;
  min-height: 50px;
  place-items: center;
  color: var(--ink);
  background: rgba(240, 90, 40, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 920;
}

.calculator-shape {
  position: absolute;
  right: clamp(42px, 7vw, 108px);
  bottom: clamp(74px, 7vw, 112px);
  z-index: 3;
  width: clamp(118px, 14vw, 176px);
  height: clamp(148px, 17vw, 220px);
  background: linear-gradient(180deg, #fff, #e4e4e4);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.calculator-shape::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 18px;
  left: 18px;
  height: 42px;
  background: var(--ink);
  border-radius: 14px;
}

.calculator-shape::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  height: 86px;
  background:
    radial-gradient(circle, var(--accent) 0 8px, transparent 9px) 0 0 / 34px 34px,
    radial-gradient(circle, rgba(11, 11, 13, 0.32) 0 8px, transparent 9px) 17px 17px / 34px 34px;
}

.concept-board {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  margin: clamp(22px, 3vw, 40px) 0 0;
  padding: clamp(14px, 2vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 82% 18%, rgba(240, 90, 40, 0.18), transparent 34%);
  border: 1px solid rgba(11, 11, 13, 0.1);
  border-radius: clamp(24px, 3vw, 40px);
}

.concept-tile {
  position: relative;
  min-height: clamp(112px, 13vw, 168px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 2.3vw, 28px);
  color: var(--ink);
  background: rgba(247, 247, 244, 0.78);
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: clamp(18px, 2.3vw, 30px);
  overflow: hidden;
}

.concept-tile::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: clamp(84px, 10vw, 132px);
  aspect-ratio: 1;
  border: 18px solid rgba(240, 90, 40, 0.14);
  border-radius: 50%;
}

.concept-tile strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.concept-tile span {
  position: relative;
  z-index: 1;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 880;
  letter-spacing: -0.04em;
}

.concept-tile--wide {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 90, 40, 0.32), transparent 32%),
    var(--ink);
  border-color: rgba(11, 11, 13, 0.02);
}

.concept-tile--wide strong,
.concept-tile--wide span {
  color: var(--white);
}

.concept-board figcaption {
  grid-column: 1 / -1;
  color: rgba(11, 11, 13, 0.54);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.5;
  word-break: keep-all;
}

.route-graphic {
  grid-column: 2 / 3;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(22px, 3vw, 40px) 0;
  padding: clamp(26px, 3vw, 38px) clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(11, 11, 13, 0.1);
  border-radius: clamp(22px, 3vw, 38px);
}

.route-graphic::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(38px, 5vw, 70px);
  left: clamp(38px, 5vw, 70px);
  height: 2px;
  background: rgba(240, 90, 40, 0.32);
  transform: translateY(-50%);
}

.route-graphic span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(58px, 7vw, 86px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(240, 90, 40, 0.34);
  border-radius: 999px;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 920;
  letter-spacing: -0.04em;
  text-align: center;
}

.price-graphic {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(22px, 3vw, 40px) 0;
  padding: clamp(20px, 2.8vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 90, 40, 0.28), transparent 32%),
    var(--ink);
  border-radius: clamp(22px, 3vw, 38px);
}

.price-graphic strong {
  grid-column: 1 / -1;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 70px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.price-graphic span {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.ppt-table-wrap {
  grid-column: 2 / 3;
  margin-top: clamp(22px, 3vw, 40px);
}

.ppt-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border-top: 2px solid var(--ink);
  font-size: clamp(14px, 1.24vw, 17px);
}

.ppt-table caption {
  padding: 0 0 12px;
  color: rgba(11, 11, 13, 0.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.ppt-table th,
.ppt-table td {
  padding: 18px 14px;
  border-bottom: 1px solid rgba(11, 11, 13, 0.12);
  vertical-align: top;
  text-align: left;
}

.ppt-table th {
  width: 28%;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.ppt-table td {
  color: rgba(11, 11, 13, 0.68);
  font-weight: 720;
  line-height: 1.55;
}

.ppt-table--large th,
.ppt-table--large td {
  padding-block: 20px;
}

.ppt-table--dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.5);
}

.ppt-table--dark caption,
.ppt-table--dark td {
  color: rgba(255, 255, 255, 0.68);
}

.ppt-table--dark th,
.ppt-table--dark td {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.ppt-table--dark th {
  color: var(--white);
}

.seo-illustration--management,
.seo-illustration--strategy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-bottom: clamp(76px, 7vw, 104px);
}

.management-mini-board,
.management-mini-chart,
.strategy-split-card {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: clamp(18px, 2.2vw, 26px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
}

.management-mini-board {
  display: grid;
  align-content: center;
  gap: 12px;
}

.management-mini-board span {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.management-mini-board span::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 17px;
  height: 17px;
  background: var(--accent);
  border: 5px solid #fff;
  border-radius: 50%;
}

.management-mini-chart {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
}

.management-mini-chart i {
  display: block;
  width: clamp(34px, 4vw, 54px);
  height: var(--h);
  min-height: 58px;
  background: linear-gradient(180deg, #fff, var(--accent));
  border-radius: 999px 999px 18px 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.strategy-split-card {
  display: grid;
  align-content: center;
  gap: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.strategy-split-card--accent {
  color: var(--white);
  background: var(--accent);
}

.strategy-split-card strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.strategy-split-card span {
  display: flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: inherit;
  background: rgba(11, 11, 13, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.strategy-split-card--accent span {
  background: rgba(255, 255, 255, 0.16);
}

.strategy-route {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-section p {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 720;
  line-height: 1.42;
  word-break: keep-all;
}

#targets h3,
#targets p {
  grid-column: 2 / 3;
}

#targets h3 {
  margin: 0;
  padding-top: clamp(20px, 3vw, 36px);
  border-top: 1px solid rgba(11, 11, 13, 0.16);
  color: var(--accent);
  font-size: clamp(22px, 2.4vw, 34px);
}

#targets p {
  margin: 8px 0 clamp(26px, 4vw, 48px);
  color: rgba(11, 11, 13, 0.66);
}

.dark-type-section {
  margin-inline: calc(clamp(18px, 4vw, 52px) * -1);
  padding-inline: clamp(22px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.22), transparent 34%),
    linear-gradient(145deg, #14110f 0%, #070707 100%);
  border-bottom: 0;
  border-radius: 0;
}

.dark-type-section h2,
.dark-type-section p {
  color: var(--white);
}

.local-management-section > h2,
.local-map-section.local-context-section h2 {
  padding-top: clamp(58px, 6vw, 86px);
}

.dark-type-section p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-type-section .type-points li {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.flow-section ol {
  grid-column: 2 / 3;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(11, 11, 13, 0.18);
}

.flow-section li {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.12);
  border-right: 0;
  color: rgba(11, 11, 13, 0.84);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.05em;
}

.flow-section li:last-child {
  border-bottom: 0;
}

.flow-section li::before {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  opacity: 0.9;
}

.seo-support-section {
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(36px, 6vw, 72px);
}

.seo-support-section h2 {
  color: rgba(11, 11, 13, 0.34);
  font-size: clamp(22px, 3vw, 42px);
}

.seo-support-section details {
  color: rgba(11, 11, 13, 0.58);
}

.seo-support-section summary {
  font-size: clamp(16px, 1.6vw, 20px);
}

.seo-support-section--quiet {
  min-height: auto;
  padding-top: 18px;
  padding-bottom: 28px;
  border-bottom: 0;
  opacity: 0.42;
}

.seo-support-section--quiet::before,
.seo-support-section--quiet::after {
  display: none;
}

.seo-support-section--quiet h2 {
  margin: 0 0 8px;
  color: rgba(11, 11, 13, 0.34);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.seo-support-section--quiet details {
  padding: 0;
  border-top: 0;
}

.seo-support-section--quiet details:last-child {
  border-bottom: 0;
}

.seo-support-section--quiet summary {
  color: rgba(11, 11, 13, 0.42);
  font-size: 12px;
  font-weight: 760;
}

.seo-support-section--quiet ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.seo-support-section--quiet li {
  min-height: auto;
  padding: 0;
  color: rgba(11, 11, 13, 0.36);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 11px;
  font-weight: 650;
}

#trial {
  min-height: 78svh;
}

#trial p:last-child {
  margin-top: clamp(28px, 4vw, 48px);
}

#price {
  min-height: 58svh;
  padding-block: clamp(54px, 8vw, 104px);
}

#price h2 {
  padding-top: clamp(58px, 6vw, 86px);
  color: rgba(11, 11, 13, 0.78);
}

#reviews {
  padding-block: clamp(86px, 11vw, 142px);
}

#reviews ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
  margin: 0;
}

#reviews li {
  min-height: auto;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 11, 13, 0.1);
  border-radius: clamp(22px, 3vw, 36px);
  box-shadow: 0 18px 60px rgba(11, 11, 13, 0.07);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 760;
  line-height: 1.55;
}

#reviews li::before {
  content: "REVIEW";
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.local-map-section h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.local-map-section.local-context-section h2 {
  grid-column: 1 / 2;
  align-self: start;
  position: sticky;
  top: 112px;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.068em;
  word-break: keep-all;
}

.local-map-section .map-section-title {
  position: relative;
  grid-column: 1 / -1;
  width: auto;
  height: auto;
  margin: 0 0 clamp(18px, 3vw, 34px);
  overflow: visible;
  clip: auto;
  white-space: normal;
  color: var(--ink);
  font-size: clamp(34px, 5.4vw, 82px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.075em;
  text-align: center;
  word-break: keep-all;
}

.local-map-section {
  position: relative;
  min-height: 100svh;
  align-items: center;
  padding: clamp(28px, 4vw, 62px) 0 clamp(84px, 10vw, 132px);
}

.local-map-section--titled {
  align-content: center;
  gap: 0;
}

.local-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.78fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
  width: 100%;
}

.local-picker__panel {
  position: relative;
  align-self: center;
  max-height: min(78svh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 34px);
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 90, 40, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 11, 13, 0.1);
  border-radius: clamp(22px, 3vw, 36px);
  box-shadow: 0 30px 90px rgba(11, 11, 13, 0.12);
  backdrop-filter: blur(18px);
}

.local-picker__trigger {
  width: 100%;
  min-height: clamp(82px, 8vw, 112px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(18px, 2.4vw, 28px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(240, 90, 40, 0.34), transparent 34%),
    var(--ink);
  border: 0;
  border-radius: clamp(20px, 2.6vw, 32px);
  cursor: default;
  text-align: left;
}

.local-picker__trigger span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.local-picker__trigger strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.local-picker__trigger.is-region-selected strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.local-picker__list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 9px;
  max-height: min(42svh, 390px);
  overflow: auto;
  padding: 4px 4px 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.local-picker__list[hidden] {
  display: grid;
}

.local-picker__list button {
  min-height: 44px;
  padding: 0 14px;
  color: rgba(11, 11, 13, 0.76);
  background: rgba(11, 11, 13, 0.055);
  border: 1px solid rgba(11, 11, 13, 0.055);
  border-radius: 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 880;
  letter-spacing: -0.035em;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.local-picker__list button {
  position: relative;
  text-align: left;
}

.local-picker__list button::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.42;
  transform: rotate(-45deg);
}

.local-picker__list button:hover,
.local-picker__list button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(240, 90, 40, 0.28);
  transform: translateX(4px);
}

.local-picker__action {
  padding: 18px;
  background: rgba(11, 11, 13, 0.045);
  border: 1px solid rgba(11, 11, 13, 0.07);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.local-picker__action {
  border-top: 1px solid rgba(11, 11, 13, 0.12);
}

.local-picker__action > span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.local-picker__action strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 920;
  letter-spacing: -0.045em;
}

.local-picker__detail-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: var(--white);
  background: var(--accent);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.035em;
  transition: transform 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.local-picker__detail-link:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.local-picker__detail-link.is-disabled {
  pointer-events: none;
  opacity: 0.42;
  background: rgba(11, 11, 13, 0.22);
}

.dong-map {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  gap: 0;
  width: 100%;
  margin-top: 0;
  min-height: calc(100svh - 120px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.local-map-section--titled .dong-map {
  min-height: calc(100svh - 220px);
  padding-top: clamp(86px, 11vh, 132px);
}

.local-picker .dong-map {
  grid-column: auto;
  min-height: min(78svh, 760px);
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 90, 40, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: clamp(24px, 3vw, 42px);
}

.local-picker .dong-map__canvas--pieces {
  width: min(100%, 980px);
}

.dong-map::before {
  content: "AREA MAP";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(240, 90, 40, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.dong-map__copy p {
  max-width: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.dong-map__source {
  margin-top: 4px;
  color: rgba(11, 11, 13, 0.48) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.dong-map__canvas {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: min(82svh, 860px);
  aspect-ratio: auto;
  overflow: visible;
  transform: translate(var(--map-shift-x, 0), var(--map-shift-y, 0)) scale(var(--map-scale, 1));
  transform-origin: var(--map-origin-x, 50%) var(--map-origin-y, 50%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dong-map__canvas--pieces {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.dong-map__reference {
  opacity: 0.96;
  filter: grayscale(1) contrast(1.04);
  pointer-events: none;
}

.dong-region {
  cursor: default;
  outline: none;
  pointer-events: none;
}

.dong-region polygon,
.dong-region path {
  fill: url("#dongPieceGradient");
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 3.5;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 4px 3px rgba(11, 11, 13, 0.14))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.22));
  transition: fill 0.2s ease, filter 0.2s ease, transform 0.2s ease, stroke 0.2s ease, opacity 0.2s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.dong-map.is-region-selected .dong-region:not(.is-selected) polygon,
.dong-map.is-region-selected .dong-region:not(.is-selected) path {
  opacity: 0.18;
  filter:
    grayscale(1)
    drop-shadow(0 2px 2px rgba(11, 11, 13, 0.08));
}

.dong-map.is-region-selected .dong-region.is-selected polygon,
.dong-map.is-region-selected .dong-region.is-selected path {
  opacity: 1;
  transform: scale(1.055);
}

.dong-label {
  pointer-events: none;
  fill: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: rgba(11, 11, 13, 0.62);
  stroke-width: 2.6px;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 3px rgba(11, 11, 13, 0.28));
}

.local-picker .dong-label {
  display: none;
}

.dong-label--tight {
  font-size: 13px;
  letter-spacing: -0.07em;
  stroke-width: 2.4px;
}

.dong-region:hover polygon,
.dong-region:focus-visible polygon,
.dong-region.is-active polygon,
.dong-region.is-selected polygon,
.dong-region:hover path,
.dong-region:focus-visible path,
.dong-region.is-active path,
.dong-region.is-selected path {
  fill: url("#dongPieceActiveGradient");
  stroke: rgba(255, 255, 255, 0.84);
  filter:
    drop-shadow(0 10px 12px rgba(240, 90, 40, 0.28))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.3));
  transform: scale(1.018);
}

.dong-map__hover-panel {
  display: none;
  position: absolute;
  top: var(--panel-y, 50%);
  left: var(--panel-x, 50%);
  z-index: 12;
  width: min(292px, 30vw);
  min-height: 0;
  padding: 14px 16px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(11, 11, 13, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  will-change: opacity, transform;
  transition: opacity 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
}

.dong-map__hover-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(11, 11, 13, 0.08);
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.dong-map[data-panel-anchor="region"] .dong-map__hover-panel {
  transform: translateY(6px) scale(0.98);
}

.dong-map[data-panel-anchor="region"] .dong-map__hover-panel::after {
  top: 100%;
  bottom: auto;
}

.dong-map.is-panel-visible .dong-map__hover-panel,
.dong-map:focus-within .dong-map__hover-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dong-map__hover-panel.is-changing {
  box-shadow: 0 18px 38px rgba(11, 11, 13, 0.2);
}

.dong-map__hover-panel strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.18;
  word-break: keep-all;
}

.dong-map__hover-panel p {
  margin: 8px 0 0;
  color: rgba(11, 11, 13, 0.64);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.5;
  word-break: keep-all;
}

.dong-map__river {
  fill: none;
  stroke: rgba(246, 244, 238, 0.96);
  stroke-width: 16;
  stroke-linecap: round;
  pointer-events: none;
}

.dong-map__links {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
}

.dong-map__links summary {
  width: fit-content;
  cursor: pointer;
  color: rgba(11, 11, 13, 0.62);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 999px;
  padding: 8px 13px;
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: color 0.16s ease;
}

.dong-map__links summary:hover {
  color: var(--accent-deep);
}

.dong-map__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dong-map__fallback li {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.dong-map__fallback li:hover {
  transform: none;
  box-shadow: none;
}

.dong-map__fallback a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: rgba(11, 11, 13, 0.72);
  background: rgba(11, 11, 13, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: color 0.16s ease, background 0.16s ease;
}

.dong-map__fallback a:hover {
  color: var(--white);
  background: var(--ink);
}

#process ol {
  counter-reset: process;
}

#process li {
  counter-increment: process;
}

#process li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

#faq {
  padding-block: clamp(86px, 12vw, 152px);
}

#faq h2 {
  max-width: none;
  margin: 0;
}

details {
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid rgba(11, 11, 13, 0.22);
}

details:last-child {
  border-bottom: 1px solid rgba(11, 11, 13, 0.22);
}

summary {
  cursor: pointer;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.048em;
}

details p {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(16px, 1.5vw, 20px);
}

#cta {
  display: block;
  margin: clamp(80px, 10vw, 128px) 0;
  padding: clamp(42px, 7vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 90, 40, 0.45), transparent 24rem),
    var(--ink);
  border: 0;
  border-radius: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

#cta::before {
  display: none;
}

#cta h2 {
  max-width: 920px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(46px, 7.6vw, 116px);
}

#cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

#cta p:last-child {
  margin-top: 30px;
}

#cta a {
  color: var(--ink);
  background: var(--white);
}

.sticky-consult {
  position: fixed;
  left: 50%;
  bottom: max(clamp(18px, 3vw, 34px), env(safe-area-inset-bottom));
  z-index: 60;
  transform: translateX(-50%);
  pointer-events: none;
}

.sticky-consult a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(310px, calc(100vw - 40px));
  min-height: 62px;
  padding: 0 28px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(240, 90, 40, 0.34);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.sticky-consult a:hover {
  transform: translateY(-3px);
  background: var(--accent-deep);
  box-shadow: 0 22px 58px rgba(240, 90, 40, 0.42);
}

.sticky-consult span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sticky-consult strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 950;
  letter-spacing: -0.055em;
}

body > footer {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 22px;
  padding: clamp(42px, 7vw, 72px) clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

body > footer h2 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.03em;
}

body > footer a {
  margin: 10px 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  body > header {
    align-items: flex-start;
    min-height: auto;
    padding: 16px 20px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    height: 76px;
    min-height: 76px;
    align-items: center;
    padding: 0 20px;
  }

  .site-header .dw-nav {
    display: none;
  }

  body > header nav {
    gap: 6px;
  }

  body > header nav a,
  article > header a,
  #trial a,
  #cta a,
  body > footer a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  main {
    width: min(100% - 28px, 1180px);
  }

  article > header {
    min-height: 68vh;
  }

  section {
    display: block;
    padding: 64px 0;
  }

  section::before {
    top: 64px;
  }

  section h2 {
    margin-bottom: 28px;
    padding-top: 18px;
  }

  section h3 {
    margin-top: 30px;
  }

  section p + ul,
  section p + ol {
    margin-top: 24px;
  }

  section ul,
  section ol {
    grid-template-columns: 1fr;
  }

  section li {
    min-height: auto;
    border-radius: 20px;
  }

  .type-section,
  .compact-section,
  .flow-section,
  #reviews,
  #faq {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .type-section > h2,
  .compact-section > h2,
  .flow-section > h2,
  .local-map-section.local-context-section h2,
  #reviews > h2,
  #faq > h2 {
    grid-column: auto;
    position: static;
  }

  .type-section > p,
  .compact-section > p,
  .type-section > .type-points,
  .type-section > .visual-card,
  .type-section > .seo-illustration,
  .type-section > .concept-board,
  .type-section > .ppt-table-wrap,
  .compact-section > .seo-illustration,
  .compact-section > .concept-board,
  .compact-section > .price-graphic,
  .flow-section > .seo-illustration,
  .compact-section > .ppt-table-wrap,
  .flow-section > .route-graphic,
  .flow-section > ol,
  #reviews > ul,
  #faq > details {
    grid-column: auto;
    max-width: none;
  }

  .local-picker {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .local-picker__panel {
    max-height: none;
    grid-template-rows: auto;
  }

  .local-picker__list {
    position: static;
    max-height: 240px;
    margin-top: -6px;
  }

  .local-picker .dong-map {
    min-height: 68svh;
  }

  #subject .type-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #subject .subject-target-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #subject .type-points li,
  #subject .type-points li:nth-child(even) {
    min-height: 64px;
    padding: 12px 10px;
    border-radius: 16px;
    transform: none;
    font-size: clamp(18px, 5.2vw, 28px);
  }

  .subject-target-card span {
    font-size: 10px !important;
  }

  .subject-target-card strong {
    font-size: clamp(18px, 5vw, 24px);
    text-align: center;
  }

  .subject-target-card i {
    right: 50%;
    bottom: 12px;
    width: 58px;
    height: 58px;
    transform: translateX(50%);
  }

  .subject-target-card--elementary i {
    transform: translateX(50%) rotate(-6deg);
  }

  .subject-target-card i,
  .process-ticket::before,
  .process-ticket::after {
    opacity: 0.11;
  }

  #targets {
    display: block;
  }

  #targets h2 {
    position: static;
  }

  #targets h3,
  #targets p {
    grid-column: auto;
  }

  .flow-section ol,
  #reviews ul {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .ppt-table-wrap {
    grid-column: auto;
  }

  .visual-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visual-card strong {
    font-size: 56px;
  }

  .visual-card span {
    min-height: 54px;
  }

  .seo-illustration {
    min-height: 360px;
    padding: 20px;
  }

  .scene-person {
    bottom: 74px;
    width: 70px;
    height: 104px;
  }

  .scene-person::before {
    width: 48px;
    height: 48px;
  }

  .scene-panel,
  .notebook-page,
  .lesson-screen,
  .price-board {
    top: 28px;
    right: 20px;
    left: 20px;
    width: auto;
    min-height: 188px;
    transform: none;
  }

  .notebook-page span {
    min-width: 72px;
    min-height: 38px;
    margin-top: 18px;
  }

  .pencil-shape {
    right: 28px;
    bottom: 94px;
    width: 150px;
  }

  .check-bubble {
    top: auto;
    right: 28px;
    bottom: 96px;
    width: 74px;
    height: 74px;
    font-size: 11px;
  }

  .seo-illustration--targets {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding-bottom: 72px;
  }

  .seo-illustration--management,
  .seo-illustration--strategy {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 82px;
  }

  .management-mini-board,
  .management-mini-chart,
  .strategy-split-card {
    min-height: 170px;
    border-radius: 20px;
  }

  .strategy-route {
    grid-template-columns: 1fr;
  }

  .level-card {
    min-height: 126px;
  }

  .certificate-stack {
    inset: 30px 20px auto 20px;
    width: auto;
    min-height: 220px;
  }

  .stamp-mark {
    right: 28px;
    bottom: 86px;
    width: 82px;
    height: 82px;
    font-size: 16px;
  }

  .process-board {
    inset: 28px 12px auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .process-connector {
    top: 82px;
    right: 26px;
    bottom: auto;
    left: 26px;
    width: auto;
    height: 2px;
    transform: none;
  }

  .process-ticket {
    min-height: 112px;
    padding: 10px 6px;
    transform: none;
    border-radius: 16px;
  }

  .process-ticket span {
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
    font-size: 10px;
  }

  .process-ticket strong {
    top: 46px;
    font-size: clamp(15px, 4.2vw, 20px);
  }

  .process-ticket::before {
    width: 58px;
    height: 58px;
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }

  .process-ticket::after {
    right: 50%;
    bottom: 22px;
    transform: translateX(50%) scale(0.72);
    transform-origin: center;
  }

  .lesson-chat {
    right: 22px;
    bottom: 88px;
  }

  .lesson-chat span {
    min-width: 126px;
    padding: 12px 16px;
  }

  .calculator-shape {
    right: 28px;
    bottom: 86px;
    width: 104px;
    height: 132px;
  }

  .concept-board,
  .price-graphic {
    grid-template-columns: 1fr;
  }

  .concept-tile,
  .concept-tile--wide {
    grid-column: auto;
    min-height: 110px;
  }

  .route-graphic {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-graphic::before {
    top: 34px;
    bottom: 34px;
    left: 50%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .route-graphic span {
    min-height: 52px;
  }

  .ppt-table,
  .ppt-table tbody,
  .ppt-table tr,
  .ppt-table th,
  .ppt-table td {
    display: block;
    width: 100%;
  }

  .ppt-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .ppt-table td {
    padding-top: 0;
  }

  .flow-section li {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 13, 0.12);
  }

  .flow-section li::before {
    font-size: 42px;
  }

  #process li::before {
    font-size: 42px;
  }

  .dong-map {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: min(72svh, 680px);
    margin-top: 0;
    padding: 0;
    border-radius: 0;
  }

  .local-map-section--titled .dong-map {
    padding-top: 54px;
  }

  .dong-map__copy,
  .dong-map__canvas,
  .dong-map__hover-panel,
  .dong-map__fallback {
    grid-column: 1 / -1;
  }

  .dong-map__hover-panel {
    top: auto;
    right: 12px;
    bottom: 42px;
    left: 12px;
    width: auto;
    min-height: 0;
    padding: 14px 16px 16px;
    border-radius: 16px;
    transform: translateY(16px) scale(0.98);
  }

  .dong-map__hover-panel::after {
    display: none;
  }

  .dong-map.is-panel-visible .dong-map__hover-panel,
  .dong-map:focus-within .dong-map__hover-panel {
    transform: translateY(0) scale(1);
  }

  .dong-map__hover-panel.is-changing {
    transform: translateY(-3px) scale(1);
  }

  .dong-map__canvas {
    height: min(68svh, 620px);
  }

  .dong-label {
    font-size: 12px;
    stroke-width: 2.3px;
  }

  .dong-map__river {
    stroke-width: 11;
  }

  #cta {
    margin: 64px 0;
    padding: 36px 24px;
    border-radius: 28px;
  }

  .sticky-consult {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    transform: none;
  }

  .sticky-consult a {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
  }

  .sticky-consult span {
    font-size: 12px;
  }

  .sticky-consult strong {
    font-size: 19px;
  }

  body > footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
  }
}

@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main {
    width: min(100% - 22px, 1180px);
  }

  article > header {
    min-height: 58svh;
    padding-top: 82px;
  }

  article > header h1,
  .local-map-section .map-section-title,
  section h2,
  .type-section > h2,
  .compact-section > h2,
  .flow-section > h2,
  .local-map-section.local-context-section h2,
  #reviews > h2,
  #faq > h2 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    word-break: keep-all;
  }

  section::before {
    width: 42px;
  }

  section p,
  .type-section p,
  .compact-section p,
  .flow-section p {
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: -0.025em;
  }

  .local-management-section > h2,
  .local-map-section.local-context-section h2,
  #price h2 {
    padding-top: 62px;
  }

  .ppt-table-wrap,
  .visual-card,
  .seo-illustration,
  .concept-board,
  .price-graphic,
  .route-graphic,
  .local-picker,
  .dong-map {
    max-width: 100%;
    overflow: hidden;
  }

  .ppt-table-wrap {
    border-radius: 18px;
  }

  .ppt-table th,
  .ppt-table td {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  #subject .type-points,
  #subject .subject-target-cards {
    grid-template-columns: 1fr !important;
  }

  #subject .type-points li,
  #subject .type-points li:nth-child(even) {
    min-height: 82px;
    justify-content: center;
  }

  .subject-target-card {
    min-height: 136px !important;
  }

  .seo-illustration {
    min-height: 300px;
    border-radius: 22px;
  }

  .local-picker__trigger {
    min-height: 74px;
    padding: 14px 16px;
  }

  .local-picker__trigger strong {
    font-size: 19px;
  }

  .local-picker__list {
    max-height: 220px;
  }

  .local-picker__list button {
    min-height: 42px;
    font-size: 14px;
  }

  .local-picker .dong-map,
  .dong-map {
    min-height: 58svh;
  }

  .dong-map__canvas {
    height: min(58svh, 480px);
  }

  .dong-map__hover-panel {
    right: 10px;
    bottom: 32px;
    left: 10px;
    padding: 12px 14px 14px;
  }

  .dong-map__hover-panel strong {
    font-size: 16px;
  }

  .dong-map__hover-panel p {
    font-size: 12px;
  }

  .sticky-consult {
    right: 10px;
    left: 10px;
  }

  .sticky-consult a {
    min-height: 54px;
    padding: 0 16px;
  }

  .sticky-consult strong {
    font-size: 17px;
  }

  body > footer {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}
