:root {
  --blue-deep: #0a1f5c;
  --blue-mid: #1a56db;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --accent: #00a6d6;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(59, 130, 246, 0.16);
  --soft: #f8fafc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(10, 31, 92, 0.14);
  --layout-max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--blue-deep);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - var(--layout-max)) / 2 + 20px));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.utility-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  height: 34px;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  height: 100%;
  padding: 0 max(20px, calc((100vw - var(--layout-max)) / 2 + 20px));
}

.utility-inner a,
.utility-inner span {
  color: inherit;
  font-weight: 700;
}

.utility-inner a:hover {
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  color: var(--blue-deep);
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-mid);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  background: var(--blue-mid);
  color: var(--white) !important;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(26, 86, 219, 0.28);
}

.btn-ghost {
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}

.btn-light {
  background: var(--white);
  color: var(--blue-mid);
}

.btn.block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-deep);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  padding: 154px max(20px, calc((100vw - var(--layout-max)) / 2 + 20px)) 52px;
  background:
    radial-gradient(circle at 85% 12%, rgba(26, 86, 219, 0.13), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  overflow: hidden;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-desc,
.hero-copy .hero-actions,
.hero-copy .stats,
.hero-panel,
.service-hero > div,
.service-panel,
.sub-hero {
  animation: fadeUp 0.75s ease both;
}

.hero-copy h1,
.service-panel {
  animation-delay: 0.1s;
}

.hero-copy .hero-desc {
  animation-delay: 0.2s;
}

.hero-copy .hero-actions {
  animation-delay: 0.3s;
}

.hero-copy .stats {
  animation-delay: 0.4s;
}

.hero-panel {
  animation-delay: 0.22s;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-mid);
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.cta h2,
.sub-hero h1 {
  margin: 0;
  color: var(--blue-deep);
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-weight: 900;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.hero h1 strong {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-mid), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  max-width: 560px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 42px;
}

.stats div {
  display: grid;
  gap: 5px;
}

.stats strong {
  color: var(--blue-deep);
  font-family: Montserrat, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-panel,
.pricing-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px;
}

.hero-pricing {
  width: 100%;
  max-width: 520px;
  margin: 0;
  text-align: left;
  animation: fadeUp 0.75s 0.22s ease both;
}

.hero-pricing .plan-label {
  margin-bottom: 16px;
}

.hero-pricing .amount,
.hero-pricing .period {
  text-align: center;
}

.hero-pricing .btn {
  margin-top: 4px;
}

.hero-panel:hover,
.service-panel:hover,
.pricing-card:hover,
.feature-grid article:hover,
.steps article:hover,
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(10, 31, 92, 0.16);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-mid), var(--accent));
}

.hero-panel,
.service-panel,
.pricing-card,
.feature-grid article,
.steps article,
.post-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.panel-top strong,
.panel-top span {
  display: block;
}

.panel-top span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.wp-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #21759b;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--muted);
}

.status-list strong {
  margin-left: auto;
  color: var(--blue-mid);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.green,
.blue,
.amber {
  animation: pulseDot 2.2s ease-in-out infinite;
}

.green {
  background: #10b981;
}

.blue {
  background: var(--blue-light);
}

.amber {
  background: #f59e0b;
}

.price-strip {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: var(--blue-pale);
  border: 1px solid var(--line);
}

.price-strip span,
.price-strip strong {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay-1.is-visible {
  transition-delay: 0.08s;
}

.reveal-delay-2.is-visible {
  transition-delay: 0.16s;
}

.reveal-delay-3.is-visible {
  transition-delay: 0.24s;
}

.price-strip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-strip strong {
  margin-top: 4px;
  color: var(--blue-deep);
  font-family: Montserrat, sans-serif;
  font-size: 1.32rem;
}

.section,
.band {
  padding: 92px max(20px, calc((100vw - var(--layout-max)) / 2 + 20px));
}

.hero + .section {
  padding-top: 52px;
}

.band {
  background: var(--blue-pale);
}

.section-head {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  word-break: keep-all;
}

.section-head h2,
.cta h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  word-break: keep-all;
}

.section-head p:not(.eyebrow),
.cta p:not(.eyebrow),
.sub-hero p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 22px;
  text-align: center;
}

.plan-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.pricing-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.amount {
  margin-top: 20px;
  color: var(--blue-mid);
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.7rem, 6vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.amount span {
  font-size: 1.4rem;
}

.period {
  margin: 10px 0 24px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #334155;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-mid);
}

.feature-grid,
.steps,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: calc(var(--layout-max) - 40px);
  margin-right: auto;
  margin-left: auto;
}

.feature-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
}

.feature-grid article {
  background: var(--soft);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
}

.feature-grid h3,
.steps h3,
.post-card h2 {
  margin: 0 0 10px;
  color: var(--blue-deep);
}

.feature-grid p,
.steps p,
.post-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.steps strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-mid);
  font-family: Montserrat, sans-serif;
}

.cta {
  padding: 100px max(20px, calc((100vw - var(--layout-max)) / 2 + 20px));
  text-align: center;
  background: linear-gradient(135deg, var(--blue-deep), #1a3a8a 58%, var(--blue-mid));
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 28px max(20px, calc((100vw - var(--layout-max)) / 2 + 20px));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-inner {
  max-width: calc(var(--layout-max) - 40px);
  margin: 0 auto;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-menu a,
.footer-company a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-menu a:hover,
.footer-company a:hover {
  color: var(--white);
}

.footer-company h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-company ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-company address {
  margin-top: 8px;
  font-style: normal;
}

.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal span {
  color: var(--white);
}

.sub-page {
  min-height: calc(100vh - 80px);
  padding: 166px max(20px, calc((100vw - var(--layout-max)) / 2 + 20px)) 80px;
}

.service-page {
  min-height: calc(100vh - 80px);
  padding: 0;
  padding-bottom: 0;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  width: min(calc(100% - 40px), calc(var(--layout-max) - 40px));
  max-width: calc(var(--layout-max) - 40px);
  margin: 0 auto 28px;
  padding: 166px 0 80px;
}

.service-hero h1 {
  margin: 0;
  color: var(--blue-deep);
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  font-weight: 900;
  line-height: 1.12;
  word-break: keep-all;
}

.service-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-panel span {
  color: var(--blue-mid);
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-panel strong {
  color: var(--blue-deep);
  font-size: 1.35rem;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: normal;
}

.sub-hero {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.sub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.post-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.post-card {
  min-height: 250px;
  border-radius: 16px;
  padding: 26px;
}

.post-card span,
.post-card time {
  display: inline-flex;
  margin: 0 8px 20px 0;
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 900;
}

.post-card time {
  color: var(--muted);
}

.post-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue-mid);
  font-weight: 900;
}

.policy {
  max-width: 860px;
  margin: 0 auto;
}

.policy h1 {
  margin: 0 0 28px;
  color: var(--blue-deep);
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.policy h2 {
  margin: 32px 0 10px;
  color: var(--blue-deep);
}

.policy p {
  color: var(--muted);
  line-height: 1.8;
}

.policy a {
  color: var(--blue-mid);
  font-weight: 800;
}

.form-page,
.auth-card {
  width: min(100%, 720px);
  margin: 0 auto;
}

.checkout-page {
  max-width: calc(var(--layout-max) - 40px);
  margin: 0 auto;
}

.form-page h1,
.checkout-page h1,
.auth-card h1,
.preview-page h1 {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.form-page > p:not(.eyebrow),
.checkout-page > p:not(.eyebrow),
.auth-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 24px;
  margin-top: 34px;
}

.checkout-main {
  display: grid;
  gap: 18px;
}

.checkout-card,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(10, 31, 92, 0.08);
}

.checkout-card {
  padding: 24px;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-card-head span {
  color: var(--blue-mid);
  font-size: 0.8rem;
  font-weight: 900;
}

.checkout-card-head strong {
  color: var(--blue-deep);
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.product-row h2 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 1.25rem;
}

.product-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-row > strong {
  flex: 0 0 auto;
  color: var(--blue-mid);
  font-size: 1.15rem;
}

.period-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.period-options label {
  cursor: pointer;
}

.period-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.period-options span,
.period-options small {
  display: block;
}

.period-options label {
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.period-options label.is-selected,
.period-options label:has(input:checked) {
  border-color: var(--blue-mid);
  background: var(--blue-pale);
  transform: translateY(-2px);
}

.period-options span {
  color: var(--blue-deep);
  font-weight: 900;
}

.period-options small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-form.compact {
  margin-top: 0;
}

.order-summary {
  position: sticky;
  top: 128px;
  padding: 24px;
}

.order-summary h2 {
  margin: 0 0 18px;
  color: var(--blue-deep);
}

.order-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.order-summary dt,
.order-summary dd {
  margin: 0;
}

.order-summary dt {
  color: var(--muted);
}

.order-summary dd {
  color: var(--ink);
  font-weight: 800;
}

.total-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.total-row span {
  color: var(--blue-deep);
  font-weight: 900;
}

.total-row strong {
  color: var(--blue-mid);
  font-size: 1.75rem;
}

.order-summary p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.site-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 800;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.site-form textarea {
  resize: vertical;
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.check-label {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
  margin: 10px 0 0;
  line-height: 1.45;
}

.check-label input {
  width: auto;
  min-height: auto;
}

.check-label a {
  color: var(--blue-mid);
}

.check-label + .check-label {
  margin-top: 8px;
}

.check-label + .login-btn {
  margin-top: 18px;
}

.notice {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  font-weight: 800;
}

.notice.error {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.auth-page {
  min-height: 100vh;
  padding: 166px 20px 80px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.auth-standalone .auth-page {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: clamp(28px, 7vh, 64px) 16px 28px;
}

.auth-logo {
  margin-bottom: 4px;
}

.auth-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.auth-card {
  max-width: 460px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-standalone .auth-card {
  width: min(100%, 420px);
  padding: 38px;
  text-align: center;
}

.auth-standalone .site-form {
  gap: 0;
  margin-top: 18px;
}

.auth-standalone .site-form,
.auth-standalone .input-group,
.auth-standalone .site-form label {
  text-align: left;
}

.auth-standalone .auth-card h1 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.auth-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: keep-all;
}

.social-profile-info {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 0;
}

.btn-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.btn-google {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(10, 31, 92, 0.08);
}

.btn-naver {
  background: #03c75a;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(3, 199, 90, 0.18);
}

.auth-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  color: var(--blue-mid);
  font-weight: 800;
}

.extra-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  color: var(--blue-mid);
  font-size: 0.86rem;
  font-weight: 800;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.inline-actions {
  margin-top: -8px;
}

.inline-actions .btn {
  width: 100%;
}

.input-group {
  margin-bottom: 14px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.input-group input {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.input-group input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.field-action {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
}

.field-action button {
  border: none;
  border-radius: 10px;
  background: var(--blue-mid);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.help-txt {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.login-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(26, 86, 219, 0.24);
}

.preview-page {
  max-width: calc(var(--layout-max) - 40px);
  margin: 0 auto;
}

.preview-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: var(--blue-pale);
}

.preview-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-light);
}

.preview-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 360px;
}

.preview-layout aside {
  padding: 24px;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.76);
}

.preview-layout aside strong {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
}

.preview-layout section {
  padding: 28px;
}

.preview-layout h2 {
  margin: 0 0 22px;
  color: var(--blue-deep);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.preview-cards article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: var(--soft);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.25);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(26, 86, 219, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1080px) {
  .service-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 100px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 146px;
  }

  .feature-grid,
  .steps,
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .order-summary {
    position: static;
  }

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

@media (max-width: 620px) {
  .hero-actions,
  .stats {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-panel,
  .pricing-card {
    padding: 22px;
  }

  .feature-grid,
  .steps,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .utility-inner {
    justify-content: center;
  }

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

  .preview-cards {
    grid-template-columns: 1fr;
  }

  .product-row {
    flex-direction: column;
  }

  .period-options {
    grid-template-columns: 1fr 1fr;
  }

  .total-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
