/* 공개 페이지 공통 스타일 — 실제 서비스와 같은 색·선·버튼 규격을 쓴다. */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root {
  --indigo: #6366F1;
  --indigo-d: #4F46E5;
  --indigo-bg: #EEF2FF;
  --indigo-line: #C7D2FE;
  --ink: #0F172A;
  --slate: #475569;
  --muted: #64748B;
  --faint: #94A3B8;
  --line: #DCE3EF;
  --base: #EDF1F8;
  --soft: #F8FAFC;
}

html { scroll-behavior: smooth; }
body.public-page {
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--base);
  font-family: 'Pretendard Variable', Pretendard, -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid rgba(99, 102, 241, .32); outline-offset: 3px; }

.public-wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.public-main { flex: 1; }

.landing-promo-banner { position: relative; display: flex; justify-content: center; padding: 11px 46px; background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-d) 100%); text-align: center; }
.landing-promo-banner[hidden] { display: none; }
.landing-promo-banner-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; column-gap: 14px; row-gap: 6px; }
.landing-promo-banner-inner p { color: #fff; font-size: 14px; font-weight: 600; }
.landing-promo-banner-inner strong { font-weight: 800; }
.landing-promo-banner-cta { display: inline-flex; align-items: center; gap: 6px; min-height: 26px; padding: 0 14px; border-radius: 999px; color: var(--indigo-d); background: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; transition: transform .15s; }
.landing-promo-banner-cta:hover { transform: translateY(-1px); }
.landing-promo-banner-close { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border: 0; border-radius: 50%; padding: 0; color: #fff; background: rgba(255,255,255,.18); cursor: pointer; transition: background .15s; }
.landing-promo-banner-close:hover { background: rgba(255,255,255,.32); }

/* 가격·보안 페이지 공통 헤더. 랜딩에는 이 구조를 두지 않는다. */
.public-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.public-nav {
  width: min(1200px, calc(100% - 40px));
  height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.public-brand { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.public-brand-logo { width: 26px; height: 26px; display: block; flex: 0 0 26px; object-fit: contain; }
.nav-logo { color: var(--ink); font-size: 16px; font-weight: 700; }
.public-nav-links { align-self: stretch; display: flex; align-items: center; justify-content: center; gap: 26px; }
.public-nav-links a { position: relative; align-self: stretch; display: inline-flex; align-items: center; padding: 0; color: #9AA1AC; font-size: 14px; font-weight: 700; white-space: nowrap; transition: color .15s; }
.public-nav-links a:hover { color: var(--ink); }
.public-nav-links a.is-current { color: var(--ink); }
.public-nav-links a.is-current::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--ink); }
.public-nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.public-nav-login,
.public-nav-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 9px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.public-nav-login { color: var(--slate); }
.public-nav-login:hover { color: var(--ink); background: #F1F5F9; }
.public-nav-start { padding-inline: 18px; color: #fff; background: var(--ink); }
.public-nav-start:hover { background: #1E293B; }

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s, border-color .15s, transform .15s;
}
.button-primary { color: #fff; background: var(--indigo); }
.button-primary:hover { background: var(--indigo-d); transform: translateY(-1px); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button-secondary:hover { background: var(--soft); border-color: var(--indigo-line); }

/* 랜딩 — 첫 화면은 7개의 제품 가치를 순환해 보여준다. */
body.landing-page { background: #fff; }
.landing-carousel { position: relative; overflow: hidden; color: var(--ink); background: #F8FAFF; }
.landing-carousel-viewport { overflow: hidden; }
.landing-carousel-track { display: flex; will-change: transform; transition: transform .6s cubic-bezier(.16, 1, .3, 1); }
.landing-slide { position: relative; min-width: 100%; height: 600px; overflow: hidden; background: var(--slide-bg); }
.landing-slide-inner { position: relative; width: min(1120px, calc(100% - 48px)); height: 100%; margin: 0 auto; display: flex; align-items: center; }
.landing-slide-copy { position: relative; z-index: 1; width: min(28%, 320px); }
.landing-slide-kicker { color: var(--slide-accent, var(--indigo-d)); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.landing-slide-copy h1 { margin-top: 12px; font-size: clamp(32px, 3.15vw, 42px); font-weight: 850; letter-spacing: -.06em; line-height: 1.18; word-break: keep-all; }
.landing-slide-copy > p:not(.landing-slide-kicker) { margin-top: 20px; max-width: 430px; color: var(--slate); font-size: 17px; line-height: 1.7; word-break: keep-all; }
.landing-slide-cta { min-height: 50px; margin-top: 30px; display: inline-flex; align-items: center; gap: 8px; padding: 0 21px; border-radius: 12px; color: #fff; background: var(--slide-accent, var(--indigo)); box-shadow: 0 10px 24px color-mix(in srgb, var(--slide-accent, var(--indigo)) 28%, transparent); font-size: 15px; font-weight: 750; transition: transform .15s, filter .15s; }
.landing-slide-cta:hover { transform: translateY(-2px); filter: brightness(.96); }
.landing-slide-media { position: absolute; top: 50%; right: 0; width: 800px; max-width: calc(100% - 320px); aspect-ratio: 4 / 3; transform: translateY(-50%); }
.landing-slide-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.landing-slide-media.is-empty { background: transparent; }
.tone-indigo { --slide-accent: #5759E9; --slide-bg: radial-gradient(circle at 80% 8%, #D8DCFF 0, transparent 28%), #F7F8FF; }
.tone-blue { --slide-accent: #1685F4; --slide-bg: radial-gradient(circle at 80% 12%, #CEE6FF 0, transparent 29%), #F7FBFF; }
.tone-violet { --slide-accent: #7C54D7; --slide-bg: radial-gradient(circle at 75% 8%, #E7DBFF 0, transparent 31%), #FAF8FF; }
.tone-periwinkle { --slide-accent: #6685E8; --slide-bg: radial-gradient(circle at 77% 12%, #DCE5FF 0, transparent 30%), #F7F9FF; }
.tone-green { --slide-accent: #10A66A; --slide-bg: radial-gradient(circle at 78% 8%, #D5F5D8 0, transparent 29%), #F8FFF8; }
.tone-teal { --slide-accent: #079E9A; --slide-bg: radial-gradient(circle at 78% 10%, #CDEFEF 0, transparent 31%), #F4FFFF; }
.tone-gift { --slide-accent: #FFB75E; --slide-bg: radial-gradient(circle at 78% 24%, #39358B 0, transparent 40%), #181640; color: #fff; }
.tone-gift .landing-slide-copy > p:not(.landing-slide-kicker) { color: #DDE0FF; }
.tone-gift .landing-slide-cta { color: #201E50; background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.2); }
.tone-gift .landing-slide-media img { transform: scale(.7); transform-origin: center; }
.landing-carousel-controls { position: absolute; z-index: 2; right: max(24px, calc((100% - 1120px) / 2)); bottom: 28px; display: flex; align-items: center; gap: 8px; }
.landing-carousel-pause { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 0; border-radius: 50%; padding: 0; background: rgba(255,255,255,.7); backdrop-filter: blur(10px); cursor: pointer; transition: background .15s; }
.landing-carousel-pause:hover { background: rgba(255,255,255,.92); }
.landing-carousel-pause-icon, .landing-carousel-play-icon { fill: #6C7590; }
.landing-carousel-play-icon { display: none; }
.landing-carousel-pause[aria-pressed="true"] .landing-carousel-pause-icon { display: none; }
.landing-carousel-pause[aria-pressed="true"] .landing-carousel-play-icon { display: block; }
.landing-carousel-dots { display: flex; gap: 7px; padding: 10px; border-radius: 999px; background: rgba(255,255,255,.7); backdrop-filter: blur(10px); }
.landing-carousel-dots button { width: 7px; height: 7px; border: 0; border-radius: 50%; padding: 0; background: #B7C0D4; cursor: pointer; transition: width .2s, background .2s; }
.landing-carousel-dots button[aria-selected="true"] { width: 26px; border-radius: 99px; background: var(--indigo); }
.landing-message { padding: 106px 0 98px; overflow: hidden; background: #F8FAFF; text-align: left; }
.landing-message .public-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); gap: clamp(26px, 6vw, 92px); align-items: center; }
.landing-message h1 { margin-top: 15px; font-size: clamp(39px, 5vw, 64px); font-weight: 850; letter-spacing: -.065em; line-height: 1.16; word-break: keep-all; }
.landing-message h1 em { color: var(--indigo-d); font-style: normal; }
.landing-message p { margin-top: 25px; color: var(--slate); font-size: clamp(16px, 1.7vw, 20px); line-height: 1.75; }
.landing-message-cta { margin-top: 32px; }
.landing-message-visual { position: relative; width: 100%; height: 360px; min-width: 0; animation: landing-message-visual-float 7s ease-in-out infinite; }
.landing-message-orb { position: absolute; top: 12px; left: 50%; width: min(36vw, 390px); height: min(36vw, 390px); transform: translateX(-45%); border-radius: 48% 52% 50% 50% / 51% 49% 51% 49%; background: linear-gradient(135deg, #287E9E 0%, #447A9B 18%, var(--indigo) 48%, #2E287E 100%); animation: landing-message-orb-soft 8s ease-in-out infinite; will-change: transform, border-radius; }
.landing-message-orb::before,
.landing-message-orb::after { content: ''; position: absolute; pointer-events: none; border: 1px solid rgba(67, 63, 166, .42); }
.landing-message-orb::before { inset: -13px; border-radius: 52% 48% 46% 54% / 49% 54% 46% 51%; animation: landing-message-orb-outline 6.8s ease-in-out infinite; }
.landing-message-orb::after { inset: -27px; border-color: rgba(88, 83, 191, .18); border-radius: 47% 53% 55% 45% / 54% 46% 54% 46%; animation: landing-message-orb-outline 8.4s ease-in-out -1.7s infinite reverse; }
.landing-message-card { position: absolute; min-width: 0; padding: 15px 17px; border: 1px solid rgba(255, 255, 255, .76); border-radius: 16px; color: #303052; background: rgba(255, 255, 255, .89); box-shadow: 0 20px 44px rgba(54, 48, 132, .16); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.landing-message-card-chrome { display: flex; gap: 4px; margin-bottom: 11px; }
.landing-message-card-chrome i { width: 5px; height: 5px; border-radius: 50%; background: #D6D9E7; }
.landing-message-card > span { display: block; color: #777C9B; font-size: 10px; font-weight: 750; letter-spacing: -.02em; }
.landing-message-card > strong { display: block; margin-top: 5px; color: #242345; font-size: 15px; font-weight: 850; letter-spacing: -.04em; }
.landing-message-card--score { z-index: 2; top: 28px; right: -12px; width: 208px; transform: rotate(4deg); animation: landing-message-card-float 5.5s ease-in-out -1.4s infinite; }
.landing-message-bars { height: 40px; display: flex; align-items: end; gap: 7px; margin-top: 13px; }
.landing-message-bars i { width: 100%; border-radius: 4px 4px 2px 2px; background: #AAB0FA; }
.landing-message-bars i:nth-child(1) { height: 39%; }.landing-message-bars i:nth-child(2) { height: 66%; background: #777BEF; }.landing-message-bars i:nth-child(3) { height: 50%; }.landing-message-bars i:nth-child(4) { height: 87%; background: #5F61D6; }.landing-message-bars i:nth-child(5) { height: 72%; }
.landing-message-card small { display: block; margin-top: 9px; color: #767A95; font-size: 9.5px; }.landing-message-card small b { color: #256C57; }
.landing-message-card--student { z-index: 3; top: 112px; left: -10px; width: 224px; transform: rotate(-5deg); animation: landing-message-card-float 6.2s ease-in-out -.4s infinite; }
.landing-message-student-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 9px; border-top: 1px solid #ECEEF5; font-size: 10px; }.landing-message-student-row b { color: #4D506D; font-weight: 750; }.landing-message-student-row em { padding: 3px 6px; border-radius: 99px; color: #4F46C8; background: #E9EAFF; font-size: 8.5px; font-style: normal; font-weight: 800; }.landing-message-student-row + .landing-message-student-row em { color: #9A5C18; background: #FFF1C7; }
.landing-message-card--notice { z-index: 1; right: 21px; bottom: 17px; width: 235px; transform: rotate(3deg); animation: landing-message-card-float 5.8s ease-in-out -2.3s infinite; }.landing-message-card--notice p { margin-top: 6px; color: #747896; font-size: 10px; line-height: 1.5; }.landing-message-notice-badge { display: inline-block; margin-top: 10px; padding: 4px 7px; border-radius: 99px; color: #176A4C; background: #DCF7E9; font-size: 9px; font-weight: 800; }
@keyframes landing-message-visual-float { 50% { transform: translateY(-5px); } }
@keyframes landing-message-card-float { 50% { translate: 0 -9px; } }
@keyframes landing-message-orb-soft {
  0%, 100% { transform: translateX(-45%) scale(1); border-radius: 48% 52% 50% 50% / 51% 49% 51% 49%; }
  50% { transform: translateX(-45%) scale(1.035, .972); border-radius: 54% 46% 55% 45% / 45% 54% 46% 55%; }
}
@keyframes landing-message-orb-outline {
  0%, 100% { transform: scale(1); border-radius: 52% 48% 46% 54% / 49% 54% 46% 51%; opacity: .7; }
  50% { transform: scale(1.045, .96) rotate(4deg); border-radius: 45% 55% 53% 47% / 55% 46% 54% 45%; opacity: 1; }
}
.landing-problem, .landing-solution { padding: 88px 0; overflow: hidden; background: #fff; }
.landing-story-row { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(44px, 9vw, 128px); align-items: center; }
.landing-story-row.is-reverse { grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr); }
.landing-problem .landing-story-copy { order: 2; text-align: right; }
.landing-problem .fragmented-tools { order: 1; }
.landing-solution .landing-story-row.is-reverse { grid-template-columns: minmax(280px, .58fr) minmax(660px, 1.42fr); gap: clamp(44px, 5vw, 76px); }
.landing-solution .landing-story-copy { order: 1; }
.landing-solution .landing-unified-screen { order: 2; }
.landing-story-copy h2 { margin-top: 0; font-size: clamp(27px, 2.7vw, 36px); font-weight: 850; letter-spacing: -.06em; line-height: 1.28; word-break: keep-all; }
.landing-story-copy h2 em { color: #8B98B0; font-style: normal; }
.landing-story-copy h2 span { color: var(--indigo-d); }
.landing-story-copy > p { margin-top: 22px; color: var(--slate); font-size: 17px; line-height: 1.8; word-break: keep-all; }
.fragmented-tools { position: relative; min-height: 440px; }
.tool-card { position: absolute; display: inline-flex; align-items: center; min-height: 64px; padding: 0 24px; border: 1px solid var(--line); border-radius: 16px; color: var(--slate); background: #fff; box-shadow: 0 16px 32px rgba(15,23,42,.08); font-size: 16px; font-weight: 750; rotate: var(--tool-rot, 0deg); animation: tool-float var(--float-dur, 6s) ease-in-out var(--float-delay, 0s) infinite; transition: rotate .35s ease, scale .35s ease, box-shadow .35s ease; }
.tool-card:hover { rotate: 0deg; scale: 1.07; box-shadow: 0 24px 44px rgba(15,23,42,.14); }
@keyframes tool-float {
  0%, 100% { translate: 0 0; }
  25% { translate: calc(13px * var(--drift-x, 1)) calc(-9px * var(--drift-y, 1)); }
  50% { translate: calc(4px * var(--drift-x, 1)) calc(-14px * var(--drift-y, 1)); }
  75% { translate: calc(-11px * var(--drift-x, 1)) calc(-5px * var(--drift-y, 1)); }
}
@media (prefers-reduced-motion: reduce) { .tool-card { animation: none; transition: none; } }
.tool-card::before { content: ''; width: 10px; height: 10px; margin-right: 10px; border-radius: 50%; background: var(--tool-color, var(--indigo)); }
.tool-card--one { top: 12px; left: 10%; --tool-color: #6366F1; --tool-rot: -5deg; }
.tool-card--two { top: 30%; right: 6%; --tool-color: #10A66A; --tool-rot: 4deg; }
.tool-card--three { bottom: 7%; left: 0; --tool-color: #F26A36; --tool-rot: 3deg; }
.tool-card--four { top: 56%; left: 29%; --tool-color: #1685F4; --tool-rot: -3deg; }
.tool-card--five { top: 5%; right: 2%; --tool-color: #7C54D7; --tool-rot: 6deg; }
.tool-card--six { top: 31%; left: 0; --tool-color: #079E9A; --tool-rot: -4deg; }
.tool-card--seven { top: 55%; right: 4%; --tool-color: #6685E8; --tool-rot: 5deg; }
.tool-card--eight { bottom: 0; right: 24%; --tool-color: #E0538B; --tool-rot: -6deg; }
.landing-unified-screen { width: min(100%, 920px); margin: 0; aspect-ratio: 2048 / 1178; justify-self: end; overflow: hidden; border: 1px solid rgba(99, 102, 241, .16); border-radius: 22px; background: #fff; box-shadow: 0 28px 70px rgba(51, 65, 140, .16), 0 6px 18px rgba(15, 23, 42, .07); }
.landing-unified-screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
.landing-partners { padding: 88px 0; background: #FFF; }
.landing-partners .section-head { margin-bottom: 36px; }
.landing-partner-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; padding: 24px 0 20px; }
.landing-partner-logo { display: block; width: min(100%, 300px); height: auto; }
.landing-consultation-invite { padding: 116px 0; color: #fff; background: #181640; }
.landing-consultation-invite-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 52px; align-items: center; }
.landing-consultation-invite p { color: #AEB3FF; font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.landing-consultation-invite h2 { margin-top: 10px; font-size: clamp(33px, 3.8vw, 50px); font-weight: 850; letter-spacing: -.055em; line-height: 1.2; word-break: keep-all; }
.landing-consultation-invite span { display: block; margin-top: 16px; color: #D7D9F5; font-size: 16px; line-height: 1.75; word-break: keep-all; }
.landing-consultation-invite .button-primary { min-width: 220px; min-height: 54px; color: #201E50; background: #fff; }
.landing-consultation-invite .button-primary:hover { background: #EEF0FF; }
.testimonials-section { padding: 100px 0; background: #F8FAFF; overflow: hidden; scroll-margin-top: 76px; }
.testimonial-stage { min-height: 662px; }
.testimonial-loading[hidden], .testimonial-list[hidden], .testimonial-error[hidden] { display: none; }
.testimonial-list, .testimonial-loading { display: grid; gap: 16px; }
.testimonial-row, .testimonial-loading-row { width: 100%; overflow: hidden; }
.testimonial-row { touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.testimonial-loading-row { display: flex; gap: 16px; }
.testimonial-loading-row i { flex: 0 0 calc(25vw - 12px); height: 210px; border-radius: 16px; background: #FFF; animation: testimonial-loading 1.4s ease-in-out infinite alternate; }
.testimonial-loading-row:nth-child(2) i { animation-delay: -.45s; }
.testimonial-loading-row:nth-child(3) i { animation-delay: -.9s; }
.testimonial-track { width: max-content; display: flex; gap: 16px; pointer-events: none; }
.testimonial-card { flex: 0 0 calc(25vw - 12px); min-width: 0; height: 210px; padding: 25px 26px 21px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(148, 163, 184, .16); border-radius: 16px; background: #FFF; box-shadow: 0 8px 24px rgba(15, 23, 42, .045); }
.testimonial-quote { flex: 1; min-width: 0; min-height: 0; display: -webkit-box; overflow: hidden; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.58; letter-spacing: -.025em; overflow-wrap: anywhere; word-break: break-word; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.testimonial-divider { width: 100%; height: 1px; margin: 8px 0 10px; border: 0; background: rgba(15, 23, 42, .08); }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; flex: 0 0 42px; display: block; border-radius: 50%; object-fit: cover; background: #EEF0F2; }
.testimonial-person-copy { min-width: 0; display: grid; gap: 3px; }
.testimonial-person-copy strong { color: var(--ink); font-size: 13px; font-weight: 800; }
.testimonial-person-copy small { color: var(--muted); font-size: 11px; }
.testimonial-error { padding: 48px 24px; color: var(--muted); text-align: center; }
@keyframes testimonial-loading { from { opacity: .58; } to { opacity: 1; } }

/* 공통 섹션 머리 */
.section-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-head h1,
.section-head h2 {
  font-size: clamp(30px, 3.7vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.25;
  word-break: keep-all;
}
.section-head p { margin-top: 13px; color: var(--muted); font-size: 15px; line-height: 1.75; word-break: keep-all; }

/* FAQ */
.faq-section { padding: 88px 0; background: var(--soft); }
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 23px 50px 23px 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  word-break: keep-all;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--indigo-d);
  background: var(--indigo-bg);
  font-size: 18px;
  font-weight: 500;
  transition: transform .15s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 50px 23px 4px; color: var(--slate); font-size: 14px; line-height: 1.8; word-break: keep-all; }
.faq-answer a { color: var(--indigo-d); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* 랜딩 FAQ — 분류 제목을 질문 목록 위에 바로 붙여 한 폭으로 읽는다. */
.landing-faq { padding: 96px 0 104px; background: #fff; }
.landing-faq .section-head { margin-bottom: 42px; }
.landing-faq-groups { max-width: 880px; margin: 0 auto; }
.landing-faq-group {
  display: block;
  padding: 42px 0;
  scroll-margin-top: 76px;
}
.landing-faq-group:last-child { padding-bottom: 0; }
.landing-faq-group-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 11px;
  margin-bottom: 17px;
  text-align: center;
}
.landing-faq-group-head > span {
  margin: 0;
  color: var(--indigo-d);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}
.landing-faq-group-head h3 {
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.3;
  word-break: keep-all;
}
.landing-faq-group-head p {
  flex-basis: 100%;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}
.landing-faq-group .faq-list { max-width: none; margin: 0; }
.landing-faq-group .faq-item summary { font-size: 15.5px; }
.landing-faq-group .faq-answer { padding-right: 34px; }

/* 플랜 카드 — 랜딩과 가격 페이지가 같은 렌더러를 쓴다. */
.plan-section { padding: 90px 0; background: #fff; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.plans.has-free { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plan-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 25px 21px;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.plan-card.is-featured { border-color: var(--indigo); box-shadow: 0 8px 26px rgba(99, 102, 241, .14); }
/* 이름과 배지가 한 줄을 나눠 쓴다 — 배지 유무와 상관없이 플랜 이름 줄이 카드 맨 위에서
   시작해야 Basic·Plus·Pro의 제목·요금이 나란히 읽힌다. */
.plan-card-head { display: flex; align-items: center; gap: 8px; }
.plan-card-tag {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--indigo);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.plan-name { color: var(--indigo-d); font-size: 20px; font-weight: 800; }
.plan-desc { min-height: 42px; margin-top: 5px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.plan-price { margin-top: 14px; font-size: 30px; font-weight: 800; letter-spacing: -1px; }
.plan-price span { margin-left: 4px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.plan-unit { margin: 5px 0 17px; color: var(--faint); font-size: 11px; }
.plan-divider { width: 100%; border: 0; border-top: 1px solid var(--line); margin-bottom: 15px; }
.plan-perks { display: grid; gap: 9px; }
.plan-perk { display: flex; align-items: flex-start; gap: 8px; color: var(--slate); font-size: 12.5px; line-height: 1.55; }
.plan-perk b { color: var(--ink); font-weight: 800; }
/* 값 뒤에 붙는 단위('/ 건') — 요금표(.rate-num span)와 같은 톤으로 한 급 물린다. */
.plan-perk .perk-unit { margin-left: 3px; color: var(--muted); }
.plan-check {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: #047857;
  background: #DCFCE7;
  font-size: 10px;
  font-weight: 900;
}
.plan-check--placeholder { visibility: hidden; }
.plan-more { margin-top: 26px; text-align: center; }
.plan-more a { min-height: 44px; font-size: 14px; }
.plan-common {
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}
.plan-common h3 { margin-bottom: 11px; font-size: 14px; font-weight: 800; }
.plan-common ul { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; }
.plan-common li { list-style: none; display: flex; align-items: center; gap: 7px; color: var(--slate); font-size: 12.5px; }

/* 가격·보안 페이지 — 랜딩과 같은 타이포·카드 체계를 공유한다. */
.pricing-page,
.security-page { background: #fff; }
.policy-hero,
.consultation-hero {
  height: 600px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.policy-hero {
  padding: 96px 0;
  overflow: hidden;
  background: radial-gradient(circle at 84% 15%, #E1E4FF 0, transparent 29%), #F8FAFF;
}
.policy-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(48px, 8vw, 110px); align-items: center; }
.security-hero .policy-hero-inner { grid-template-columns: minmax(0, 1fr); }
.security-hero .policy-hero-copy { max-width: 700px; }
.policy-hero-copy h1,
.consultation-hero-copy h1 { font-size: clamp(42px, 5vw, 60px); font-weight: 850; letter-spacing: -.065em; line-height: 1.15; word-break: keep-all; }
.policy-hero-copy > p { max-width: 650px; margin-top: 24px; color: var(--slate); font-size: 17px; line-height: 1.75; word-break: keep-all; }
.policy-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.policy-hero-panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 60px rgba(52, 48, 130, .11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.policy-hero-panel::after { content: ''; position: absolute; top: -70px; right: -58px; width: 170px; height: 170px; border-radius: 50%; background: rgba(99, 102, 241, .1); }
.policy-hero-panel > p { position: relative; z-index: 1; color: var(--indigo-d); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.policy-hero-panel > strong { position: relative; z-index: 1; display: block; margin-top: 7px; font-size: 32px; font-weight: 850; letter-spacing: -.045em; }
.policy-hero-panel ul { position: relative; z-index: 1; display: grid; gap: 12px; margin-top: 25px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.policy-hero-panel li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--slate); font-size: 14px; font-weight: 650; }
.policy-hero-panel li::before { content: '✓'; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 22px; border-radius: 50%; color: var(--indigo-d); background: var(--indigo-bg); font-size: 12px; font-weight: 900; }
.policy-section-head { max-width: 760px; margin-bottom: 38px; }
.policy-section-head.is-centered { margin-inline: auto; text-align: center; }
.policy-section-head h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 850; letter-spacing: -.055em; line-height: 1.25; word-break: keep-all; }
.policy-section-head p { margin-top: 13px; color: var(--muted); font-size: 15px; line-height: 1.75; word-break: keep-all; }

/* 가격 페이지 */
.pricing-page .band { padding: 94px 0; background: #fff; }
.pricing-page .band.tone { background: #F8FAFF; }
.pricing-page .plans { gap: 16px; }
.pricing-page .plan-card { border-color: #E2E7F0; border-radius: 22px; box-shadow: 0 14px 36px rgba(15, 23, 42, .055); }
.pricing-page .plan-card.featured { border-color: var(--indigo); box-shadow: 0 20px 45px rgba(79, 70, 229, .14); }
.pricing-page .plan-common { margin-top: 18px; border-radius: 18px; background: #F8FAFF; }
/* 넷이 한 줄이다(OMR·서술형·알림톡·수리논술). 1120px에서 카드 하나가 269px이라
   32px 숫자와 단위가 한 줄에 들어간다 — 더 좁아지면 아래 1020px 규칙이 둘로 접는다. */
.rates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rate {
  position: relative;
  padding: 28px 25px;
  overflow: hidden;
  border: 1px solid #E2E7F0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}
.rate::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: var(--indigo); }
.rate-name { margin-bottom: 15px; color: var(--indigo-d); font-size: 13px; font-weight: 800; }
.rate-num { font-size: 32px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.rate-num--text { font-size: 25px; letter-spacing: -.04em; }
.rate-num span { margin-left: 4px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.rate-krw { margin-top: 8px; color: var(--slate); font-size: 14px; font-weight: 700; }
.rate-desc { margin-top: 12px; color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.rate-foot { margin-top: 13px; color: var(--faint); font-size: 12px; line-height: 1.75; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.stat { padding: 22px; border: 1px solid #E2E7F0; border-radius: 18px; background: #F8FAFF; }
.stat-k { color: var(--muted); font-size: 12.5px; font-weight: 700; }
.stat-v { margin: 5px 0 4px; font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.stat-s { color: var(--slate); font-size: 12.5px; line-height: 1.6; }
.stat-s b { color: var(--indigo-d); }
.cmp-card { padding: 30px 32px 22px; overflow: hidden; border: 1px solid #E2E7F0; border-radius: 22px; background: #fff; box-shadow: 0 14px 36px rgba(15,23,42,.05); }
.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; color: var(--slate); font-size: 12.5px; font-weight: 600; }
.sw { width: 11px; height: 11px; border-radius: 3px; }
.sw-labor { background: #475569; }
.sw-rival { background: #8695AB; }
.sw-ours { background: var(--indigo); }
.chart { padding-right: 96px; }
.grp + .grp { margin-top: 28px; }
.grp-t { margin-bottom: 12px; font-size: 13px; font-weight: 800; }
.grp-t em { color: var(--muted); font-style: normal; font-weight: 600; }
.row { display: grid; grid-template-columns: 122px 1fr; align-items: center; gap: 14px; }
.row + .row { margin-top: 10px; }
.row-n { color: var(--slate); font-size: 12.5px; font-weight: 700; text-align: right; }
.row-n.ours { color: var(--indigo-d); }
.track { position: relative; height: 28px; background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 23.8095%); }
.bar { position: absolute; inset: 0 auto 0 0; height: 100%; display: flex; gap: 2px; }
.seg { height: 100%; display: flex; align-items: center; overflow: hidden; }
.seg:last-child { border-radius: 0 4px 4px 0; }
.seg.labor { background: #475569; }
.seg.rival { background: #8695AB; }
.seg.ours { background: var(--indigo); }
.seg b { padding: 0 10px; color: #fff; font-size: 11px; white-space: nowrap; }
.bar-l { position: absolute; top: 50%; left: 100%; transform: translateY(-50%); margin-left: 10px; font-size: 13.5px; font-weight: 800; white-space: nowrap; }
.bar-l.ours { color: var(--indigo-d); }
.tag { display: inline-block; margin-left: 8px; padding: 3px 9px; border: 1px solid var(--indigo-line); border-radius: 999px; color: var(--indigo-d); background: var(--indigo-bg); font-size: 11px; font-weight: 800; }
.row-note { grid-column: 2; margin-top: 7px; color: var(--muted); font-size: 12px; }
.axis { margin-top: 12px; }
.axis-t { position: relative; height: 18px; border-top: 1px solid var(--line); }
.axis-t span { position: absolute; top: 4px; transform: translateX(-50%); color: var(--faint); font-size: 11px; white-space: nowrap; }
.cmp-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--faint); font-size: 12px; line-height: 1.85; }
.cmp-kicker { margin-top: 20px; color: var(--slate); font-size: 15px; line-height: 1.8; text-align: center; }
.cmp-kicker b { color: var(--ink); }

.policy-groups { display: grid; gap: 12px; }
.policy-group { overflow: hidden; border: 1px solid #E2E7F0; border-radius: 18px; background: #fff; }
.policy-group > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  font-size: 15px;
  font-weight: 800;
}
.policy-group > summary::-webkit-details-marker { display: none; }
.policy-group > summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--indigo-d); font-size: 20px; font-weight: 500; }
.policy-group[open] > summary::after { content: '−'; }
.policy-list { display: grid; gap: 0; padding: 0 22px 18px; }
.policy-list li { list-style: none; display: grid; grid-template-columns: 128px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--slate); font-size: 13px; line-height: 1.75; }
.policy-list li b { color: var(--ink); }
.pricing-page .faq { padding: 0; }

/* 보안 페이지 */
.security-page .security-block { padding: 94px 0; background: #fff; }
.security-page .security-block.tone { background: #F8FAFF; }
.security-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.security-card { padding: 30px; border: 1px solid #E2E7F0; border-radius: 22px; background: #F8FAFF; }
.security-provider-head { margin-bottom: 20px; }
.security-card h3 { font-size: 19px; font-weight: 850; }
.security-card p { margin-bottom: 11px; color: var(--muted); font-size: 13.5px; line-height: 1.75; }
.security-card p:last-of-type { margin-bottom: 0; }
.source-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.source-links a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--slate); background: #fff; font-size: 12.5px; font-weight: 700; }
.source-links a:hover { color: var(--ink); border-color: #94A3B8; }
.security-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.security-row { min-height: 150px; padding: 25px; border: 1px solid #E2E7F0; border-radius: 19px; background: #F8FAFF; }
.security-block.tone .security-row { background: #fff; }
.security-row b { display: block; color: var(--ink); font-size: 15px; font-weight: 850; }
.security-row div { margin-top: 10px; color: var(--slate); font-size: 13.5px; line-height: 1.72; }

.policy-cta { padding: 96px 0; background: #fff; }
.policy-cta-card { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 46px 48px; border-radius: 24px; color: #fff; background: linear-gradient(120deg, #25205F, #4942B1); box-shadow: 0 18px 42px rgba(49,42,132,.2); }
.policy-cta-card p { color: #D8D8FF; font-size: 13px; font-weight: 700; }
.policy-cta-card h2 { margin-top: 6px; font-size: clamp(25px, 3vw, 35px); font-weight: 850; letter-spacing: -.045em; line-height: 1.3; }
.policy-cta-card .button-primary { flex: 0 0 auto; color: var(--indigo-d); background: #fff; white-space: nowrap; }
.policy-cta-card .button-primary:hover { background: #EEF0FF; }

/* 상담 신청 페이지 */
.consultation-page { background: #fff; }
.consultation-hero { padding: 96px 0; color: #fff; background: radial-gradient(circle at 82% 10%, #3B378B 0, transparent 34%), #181640; }
.consultation-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; }
.consultation-hero-copy > p { color: #AFB4FF; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.consultation-hero-copy h1 { margin-top: 16px; }
.consultation-hero-copy h1 { white-space: nowrap; }
.consultation-hero-copy > span { display: block; max-width: 680px; margin-top: 24px; color: #D8DAF3; font-size: 17px; line-height: 1.8; word-break: keep-all; }
.consultation-hero-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; margin-top: 34px; padding: 0 24px; border-radius: 11px; color: #211E54; background: #fff; font-size: 15px; font-weight: 800; transition: transform .15s, background .15s; }
.consultation-hero-button:hover { transform: translateY(-2px); background: #EEF0FF; }
.consultation-recommend { padding: 112px 0; background: #fff; }
.consultation-recommend-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.consultation-recommend-card { min-height: 270px; padding: 27px 25px; border-radius: 18px; background: #F7F8FC; }
.consultation-recommend-card > span { color: var(--indigo-d); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.consultation-recommend-card h3 { margin-top: 50px; font-size: 19px; font-weight: 850; letter-spacing: -.045em; line-height: 1.45; word-break: keep-all; }
.consultation-recommend-card p { margin-top: 14px; color: var(--slate); font-size: 13.5px; line-height: 1.75; word-break: keep-all; }

.consultation-process { padding: 108px 0; background: #F7F8FC; }
.consultation-process-list { max-width: 930px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; }
.consultation-process-list li { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; padding: 0 28px; }
.consultation-process-list li + li { border-left: 1px solid var(--line); }
.consultation-process-list b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--indigo); font-size: 14px; }
.consultation-process-list strong { display: block; margin-top: 2px; font-size: 17px; font-weight: 850; }
.consultation-process-list span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.7; word-break: keep-all; }

.consultation-form-section { padding: 112px 0 124px; background: #fff; scroll-margin-top: 76px; }
.consultation-form-wrap { max-width: 920px; }
.consultation-form-head { margin-bottom: 34px; text-align: center; }
.consultation-form-head > p { color: var(--indigo-d); font-size: 13px; font-weight: 850; letter-spacing: .06em; }
.consultation-form-head h2 { margin-top: 8px; font-size: clamp(32px, 4vw, 46px); font-weight: 850; letter-spacing: -.055em; }
.consultation-form-head > span { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; }
.consultation-form { padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 18px 50px rgba(15,23,42,.07); }
.consultation-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.consultation-field { display: grid; gap: 8px; min-width: 0; }
.consultation-field > span,
.consultation-fieldset legend { color: var(--ink); font-size: 13px; font-weight: 800; }
.consultation-field em,
.consultation-fieldset em,
.consultation-choice-field em,
.consultation-privacy em { color: var(--indigo-d); font-style: normal; font-size: 11px; }
.consultation-field input,
.consultation-field select,
.consultation-field textarea { width: 100%; min-height: 48px; border: 1px solid #D7DEEA; border-radius: 10px; padding: 0 13px; color: var(--ink); background: #fff; font: inherit; font-size: 14px; outline: none; transition: border-color .15s, box-shadow .15s; }
.consultation-field textarea { min-height: 126px; padding-top: 13px; resize: vertical; line-height: 1.65; }
.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,.12); }
.consultation-fieldset { margin-top: 28px; border: 0; padding: 0; }
.consultation-fieldset legend { margin-bottom: 10px; }
.consultation-choice-field { min-width: 0; border: 0; padding: 0; }
.consultation-choice-field legend { margin-bottom: 10px; color: var(--ink); font-size: 13px; font-weight: 800; }
.consultation-choice-row,
.consultation-check-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.consultation-choice-row label,
.consultation-check-grid label { position: relative; cursor: pointer; }
.consultation-choice-row input,
.consultation-check-grid input { position: absolute; opacity: 0; pointer-events: none; }
.consultation-choice-row span,
.consultation-check-grid span { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--slate); background: #fff; font-size: 13px; font-weight: 700; transition: color .15s, border-color .15s, background .15s; }
.consultation-choice-row input:checked + span,
.consultation-check-grid input:checked + span { color: var(--indigo-d); border-color: var(--indigo); background: var(--indigo-bg); }
.consultation-choice-row input:focus-visible + span,
.consultation-check-grid input:focus-visible + span { outline: 3px solid rgba(99,102,241,.25); outline-offset: 2px; }
.consultation-similar-name { max-width: 410px; margin-top: 14px; }
.consultation-similar-name[hidden] { display: none; }
.consultation-field-full { margin-top: 28px; }
.consultation-contact-field { margin-top: 28px; }
.consultation-privacy { margin-top: 30px; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 13px; background: #F5F6F9; }
.consultation-privacy strong { font-size: 13px; font-weight: 850; }
.consultation-privacy p { max-width: 610px; margin-top: 6px; color: var(--muted); font-size: 11.5px; line-height: 1.7; word-break: keep-all; }
.consultation-privacy label { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; color: var(--ink); font-size: 13px; font-weight: 750; cursor: pointer; }
.consultation-privacy input { width: 17px; height: 17px; accent-color: var(--indigo); }
.consultation-form-message { min-height: 24px; margin-top: 14px; color: var(--indigo-d); font-size: 13px; text-align: center; }
.consultation-form-message.is-error { color: #C2413B; }
.consultation-submit { width: 100%; min-height: 54px; margin-top: 4px; border: 0; border-radius: 11px; color: #fff; background: var(--indigo); font: inherit; font-size: 15px; font-weight: 800; cursor: pointer; transition: background .15s, transform .15s; }
.consultation-submit:hover { background: var(--indigo-d); transform: translateY(-1px); }
.consultation-submit:disabled { background: #A9AFBE; cursor: wait; transform: none; }
.consultation-success { padding: 86px 30px; border: 1px solid var(--line); border-radius: 24px; text-align: center; background: #F8FAFF; }
.consultation-success[hidden] { display: none; }
.consultation-success > span { width: 54px; height: 54px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--indigo); font-size: 24px; font-weight: 900; }
.consultation-success h3 { margin-top: 22px; font-size: 28px; font-weight: 850; letter-spacing: -.045em; }
.consultation-success p { margin-top: 9px; color: var(--muted); font-size: 14px; }
.consultation-success a { display: inline-flex; margin-top: 25px; color: var(--indigo-d); font-size: 14px; font-weight: 800; }

footer[data-site-footer] {
  margin-top: auto;
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  background: #fff;
  text-align: center;
  font-size: 11px;
  line-height: 1.9;
}
footer[data-site-footer] .brand { color: var(--slate); font-weight: 700; }

@media (max-width: 1020px) {
  .plans.has-free { grid-template-columns: repeat(2, 1fr); }
  .rates { grid-template-columns: repeat(2, 1fr); }
  .landing-solution .landing-story-row.is-reverse { grid-template-columns: 1fr; gap: 42px; }
  .landing-solution .landing-story-copy { order: 1; }
  .landing-solution .landing-unified-screen { order: 2; justify-self: center; }
}

@media (max-width: 820px) {
  .public-wrap { width: min(100% - 32px, 1120px); }
  .landing-promo-banner { padding: 10px 40px; }
  .landing-promo-banner-inner p { font-size: 13px; }
  .landing-promo-banner-close { right: 10px; }
  .public-nav {
    width: 100%;
    height: auto;
    min-height: 56px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
  }
  .public-brand { min-height: 56px; margin-right: auto; }
  .public-nav-actions { min-height: 56px; }
  .public-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 0 18px;
    gap: 25px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
  }
  .public-nav-links a { min-height: 44px; font-size: 13px; }
  .public-nav-start { min-height: 36px; padding-inline: 14px; font-size: 13px; }

  .landing-slide { height: auto; min-height: 610px; }
  .landing-slide-inner { width: min(100% - 32px, 560px); height: auto; min-height: 610px; flex-direction: column; align-items: stretch; justify-content: center; gap: 32px; padding: 34px 0 78px; }
  .landing-slide-copy { width: 100%; }
  .landing-slide-copy h1 { margin-top: 9px; font-size: clamp(29px, 8.5vw, 36px); }
  .landing-slide-copy > p:not(.landing-slide-kicker) { margin-top: 13px; font-size: 15px; }
  .landing-slide-cta { min-height: 46px; margin-top: 20px; }
  .landing-slide-media { position: static; width: min(100%, 520px); max-width: none; aspect-ratio: 4 / 3; align-self: center; transform: none; }
  .landing-slide-media.is-empty { display: none; }
  .landing-carousel-controls { right: 16px; bottom: 20px; gap: 6px; }
  .landing-carousel-pause { width: 26px; height: 26px; }
  .landing-carousel-dots { gap: 5px; padding: 9px; }
  .landing-carousel-dots button { width: 6px; height: 6px; }
  .landing-carousel-dots button[aria-selected="true"] { width: 20px; }

  .landing-message { padding: 85px 0 80px; }
  .landing-message .public-wrap { display: block; }
  .landing-message-visual { display: none; }
  .landing-message h1 { font-size: clamp(34px, 10vw, 49px); }
  .landing-message p { margin-top: 18px; font-size: 16px; }
  .landing-message-cta { margin-top: 26px; }

  .landing-problem, .landing-solution { padding: 62px 0; }
  .landing-story-row,
  .landing-story-row.is-reverse,
  .landing-solution .landing-story-row.is-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .landing-problem .fragmented-tools,
  .landing-solution .landing-story-copy { order: 1; }
  .landing-problem .landing-story-copy,
  .landing-solution .landing-unified-screen { order: 2; }
  .landing-story-copy h2 { font-size: clamp(26px, 7vw, 32px); }
  .landing-story-copy > p { font-size: 15px; }
  .landing-unified-screen { border-radius: 14px; box-shadow: 0 18px 42px rgba(51, 65, 140, .14), 0 4px 12px rgba(15, 23, 42, .06); }
  .landing-partners { padding: 72px 0; }
  .landing-partners .section-head { margin-bottom: 30px; }
  .landing-partner-list { padding: 18px 0 14px; }
  .landing-partner-logo { width: min(72vw, 240px); }
  .fragmented-tools { min-height: 380px; }
  .tool-card { min-height: 54px; padding: 0 16px; border-radius: 13px; font-size: 14px; }
  .tool-card--one { left: 2%; }
  .tool-card--three { left: 0; }
  .tool-card--two, .tool-card--five { right: 0; }
  .tool-card--four { left: 24%; }

  .landing-consultation-invite { padding: 84px 0; }
  .landing-consultation-invite-inner { width: min(100% - 32px, 560px); grid-template-columns: 1fr; gap: 28px; }
  .landing-consultation-invite h2 { font-size: 34px; }
  .landing-consultation-invite .button-primary { width: 100%; }

  .testimonials-section { padding: 74px 0; }
  .testimonial-stage { min-height: 654px; }
  .testimonial-list, .testimonial-loading { gap: 12px; }
  .testimonial-track, .testimonial-loading-row { gap: 12px; }
  .testimonial-card, .testimonial-loading-row i { flex-basis: min(82vw, 320px); height: 210px; }
  .testimonial-card { padding: 21px; }
  .testimonial-quote { font-size: 14px; }
  .testimonial-divider { margin: 8px 0 10px; }

  .faq-section, .plan-section { padding: 72px 0; }
  .landing-faq { padding: 72px 0 78px; }
  .landing-faq .section-head { margin-bottom: 32px; }
  .landing-faq-groups { margin: 0 auto; }
  .landing-faq-group {
    padding: 34px 0;
    scroll-margin-top: 112px;
  }
  .landing-faq-group-head { max-width: 520px; margin-bottom: 15px; }
  .landing-faq-group-head p { margin-top: 7px; }
  .plans, .plans.has-free { grid-template-columns: 1fr; }
  .plan-desc { min-height: 0; }

  .policy-hero, .consultation-hero { height: auto; display: block; padding: 64px 0; }
  .policy-hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .policy-hero-copy h1, .consultation-hero-copy h1 { font-size: clamp(29px, 7.5vw, 42px); }
  .policy-hero-copy > p { margin-top: 19px; font-size: 15px; }
  .policy-hero-panel { width: 100%; max-width: 560px; padding: 28px; }
  .policy-section-head { margin-bottom: 30px; }
  .policy-section-head h2 { font-size: clamp(27px, 7vw, 34px); }
  .pricing-page .band, .security-page .security-block { padding: 68px 0; }
  .rates, .stat-row, .security-cards { grid-template-columns: 1fr; }
  .cmp-card { padding: 24px 20px 18px; overflow-x: auto; }
  .chart { min-width: 690px; }
  .policy-list li { grid-template-columns: 1fr; gap: 4px; }
  .security-table { grid-template-columns: 1fr; }
  .security-row { min-height: 0; }
  .policy-cta { padding: 68px 0; }
  .policy-cta-card { grid-template-columns: 1fr; padding: 34px 28px; }
  .policy-cta-card .button-primary { width: 100%; margin-top: 8px; }

  .consultation-hero-inner { width: min(100% - 32px, 560px); grid-template-columns: 1fr; }
  .consultation-hero-copy > span { font-size: 15px; }
  .consultation-recommend, .consultation-process { padding: 78px 0; }
  .consultation-recommend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consultation-recommend-card { min-height: 240px; }
  .consultation-recommend-card h3 { margin-top: 34px; }
  .consultation-process-list { grid-template-columns: 1fr; gap: 0; max-width: 560px; }
  .consultation-process-list li { padding: 23px 0; }
  .consultation-process-list li + li { border-top: 1px solid var(--line); border-left: 0; }
  .consultation-form-section { padding: 80px 0 90px; scroll-margin-top: 112px; }
  .consultation-form-wrap { width: min(100% - 32px, 620px); }
  .consultation-form { padding: 30px 24px; }
  .consultation-field-grid { grid-template-columns: 1fr; }
  .consultation-field-grid > div:empty { display: none; }
  .consultation-privacy { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .nav-logo { font-size: 15px; }
  .public-brand-logo { width: 23px; height: 23px; flex-basis: 23px; }
  .public-nav-login { padding-inline: 8px; }
  .public-nav-start { padding-inline: 11px; }
  .landing-slide { min-height: 592px; }
  .landing-slide-inner { min-height: 592px; gap: 24px; padding-top: 28px; }
  .landing-slide-copy h1 { font-size: 30px; }
  .landing-slide-kicker { font-size: 10.5px; }
  .landing-faq-group .faq-item summary { padding-right: 45px; font-size: 14.5px; line-height: 1.55; }
  .landing-faq-group .faq-answer { padding-right: 12px; font-size: 13.5px; }
  .policy-hero, .consultation-hero { padding: 50px 0 54px; }
  .policy-hero-copy h1, .consultation-hero-copy h1 { font-size: 29px; }
  .policy-hero-copy p br { display: none; }
  .policy-hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 27px; }
  .policy-hero-actions a { width: 100%; }
  .policy-hero-panel { padding: 24px; border-radius: 20px; }
  .policy-hero-panel > strong { font-size: 28px; }
  .rate, .security-card, .security-row { padding: 22px; }
  .policy-cta-card { padding: 30px 23px; border-radius: 20px; }
  .consultation-recommend-grid { grid-template-columns: 1fr; }
  .consultation-recommend-card { min-height: 0; }
  .consultation-choice-row,
  .consultation-check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consultation-choice-row span,
  .consultation-check-grid span { width: 100%; padding: 0 10px; }
  .consultation-form { padding: 26px 18px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .testimonial-loading-row i, .landing-message-visual, .landing-message-card, .landing-message-orb, .landing-message-orb::before, .landing-message-orb::after { animation: none; }
}
