/* ============================================================
   main.css — Unified stylesheet for CareAllies Front Design
   Merged from: design-system.css, index.css, service.css, howto.css, faq.css, cs.css, partner.css
   Cascade order preserved; exact-duplicate rule blocks removed.
   ============================================================ */


/* ============================================================
   FROM: design-system.css
   ============================================================ */

:root {
  /* Brand · Olive */
  --olive-900: #3E4A1F;
  --olive-700: #5A6B2E;
  --olive-500: #7E9243;
  --olive-300: #C9B98A;
  --olive-100: #E8E2D5;

  /* Surface · Cream */
  --cream-50:  #FAF7F0;
  --cream-100: #F4EFE6;
  --surface:   #FFFFFF;
  --mist-50:   #F9FAFB;
  --mist-100:  #F3F4F6;

  /* Ink / Neutral */
  --ink-900: #101828;
  --ink-800: #2A2A28;
  --ink-700: #364153;
  --ink-600: #4A5565;
  --ink-500: #6A7282;
  --ink-400: #99A1AF;
  --line-300:#D1D5DC;
  --line-200:#E5E7EB;

  /* Semantic */
  --success: #00A63E;
  --success-deep: #008236;
  --success-soft: #DCFCE7;
  --warning: #D08700;
  --warning-bright: #FDC700;
  --warning-soft: #FFEDD4;
  --danger: #C10007;
  --danger-soft: #FEE2E2;
  --highlight: #F54900;
  --care-purple: #9810FA;
  --care-purple-deep: #7E22CE;
  --care-purple-soft: #F3E8FF;

  /* Footer */
  --slate-900: #1E2939;

  /* Radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 999px;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(16,24,40,0.05);
  --elev-2: 0 4px 12px rgba(16,24,40,0.06);
  --elev-3: 0 12px 32px rgba(16,24,40,0.10);

  /* Type */
  --font-ko: "Pretendard", "Pretendard Variable", system-ui, sans-serif;
  --font-en: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-en), var(--font-ko);
  background: var(--cream-50);
  color: var(--ink-700);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}

:lang(ko), body { font-family: var(--font-ko), var(--font-en); }

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

button { font-family: inherit; cursor: pointer; }

.ds-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 264px;
  background: var(--cream-50);
  border-right: 1px solid var(--line-200);
  padding: 32px 24px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 5;
}

.ds-brand { display: block; }

.ds-brand img { height: 28px; width: auto; }

.ds-side-meta {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.ds-side-meta span {
  font-family: var(--font-en);
  color: var(--ink-400);
}

.ds-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.ds-nav-group,
.ds-type-meta { display: flex; flex-direction: column; gap: 4px; }

.ds-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-700);
  padding: 0 8px 4px;
}

.ds-nav a {
  display: block;
  padding: 7px 10px;
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink-600);
  transition: background .15s, color .15s;
}

.ds-nav a:hover {
  background: var(--olive-100);
  color: var(--olive-900);
}

.ds-side-foot {
  font-size: 11px;
  color: var(--ink-400);
  line-height: 1.6;
  border-top: 1px solid var(--line-200);
  padding-top: 16px;
}

.ds-main {
  margin-left: 264px;
  padding: 56px 72px 80px;
  max-width: 1280px;
}

.ds-hero {
  padding: 28px 0 56px;
  border-bottom: 1px solid var(--line-200);
  margin-bottom: 64px;
}

.ds-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--olive-100);
  color: var(--olive-900);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.ds-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-700);
  box-shadow: 0 0 0 4px rgba(90,107,46,0.18);
}

.ds-hero h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 920px;
}

.ds-hero h1 em {
  font-style: normal;
  color: var(--olive-700);
}

.ds-hero-lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0 0 40px;
}

.ds-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
}

.ds-hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
}

.ds-hero-stats strong {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  color: var(--olive-700);
  font-weight: 700;
}

.ds-hero-stats span {
  font-size: 12px;
  color: var(--ink-500);
}

.ds-section { margin-bottom: 96px; scroll-margin-top: 32px; }

.ds-section-head { margin-bottom: 32px; }

.ds-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-700);
  margin-bottom: 12px;
}

.ds-section-head h2 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-weight: 700;
  margin: 0 0 12px;
}

.ds-section-head p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0;
}

.ds-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ds-note {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 16px 0 0;
  padding: 12px 14px;
  background: var(--cream-100);
  border-radius: var(--r-md);
}

.ds-brand-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  align-items: center;
}

.ds-brand-mark {
  background: var(--cream-100);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.ds-brand-mark img { width: 80%; }

.ds-brand-meta { display: flex; flex-direction: column; gap: 12px; }

.ds-kv {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-200);
  font-size: 14px;
}

.ds-kv:last-child { border-bottom: 0; }

.ds-kv span { color: var(--ink-500); }

.ds-kv strong { color: var(--ink-800); font-weight: 600; }

.ds-principles,
.ds-elev-row,
.sv-targets,
.hw-ov-grid,
.cs-quick,
.pt-values,
.pt-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ds-principles article {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
}

.ds-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--olive-500);
  letter-spacing: 0.08em;
}

.ds-principles h3 {
  margin: 8px 0 12px;
  font-size: 18px;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ds-principles p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-600);
}

.ds-color-block { margin-bottom: 28px; }

.ds-color-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-800);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.ds-swatch-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.ds-swatch {
  position: relative;
  height: 130px;
  border-radius: var(--r-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink-800);
  border: 1px solid rgba(16,24,40,0.04);
  overflow: hidden;
}

.ds-swatch[data-mode="dark"] { color: rgba(255,255,255,0.92); }

.ds-swatch[data-mode="dark"] code { color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.18); }

.ds-sw-top { display: flex; flex-direction: column; gap: 2px; }

.ds-sw-name { font-size: 13px; font-weight: 700; }

.ds-sw-role { font-size: 11px; opacity: 0.75; }

.ds-sw-bot { display: flex; justify-content: space-between; gap: 8px; }

.ds-sw-bot code {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.7);
  color: inherit;
  letter-spacing: 0.02em;
}

.ds-paired { padding: 0; height: 130px; display: flex; flex-direction: column; }

.ds-paired-top, .ds-paired-bot {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.ds-paired-top code, .ds-paired-bot code {
  font-family: var(--font-en);
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
}

.ds-type-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  margin-bottom: 28px;
  align-items: center;
}

.ds-type-preview {
  background: var(--cream-100);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 180px;
}

.aa-display {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.aa-label {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ds-type-scale {
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--elev-1);
  overflow: hidden;
}

.ds-type-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-200);
}

.ds-type-row:last-child { border-bottom: 0; }

.ds-type-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.ds-type-spec strong {
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: -0.005em;
  font-size: 14px;
  font-family: var(--font-en);
}

.ds-type-spec code {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

.ds-type-sample {
  font-family: inherit;
}

.ds-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ds-space-scale {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 8px 0;
}

.ds-space-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-bottom: 1px dashed var(--line-200);
}

.ds-space-row:last-child { border-bottom: 0; }

.ds-space-row code {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--ink-500);
}

.ds-bar {
  display: inline-block;
  height: 14px;
  background: var(--olive-700);
  border-radius: 3px;
}

.ds-space-row strong {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  text-align: right;
}

.ds-radius-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ds-radius-box {
  height: 88px;
  background: var(--cream-100);
  border: 1px solid var(--line-200);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.ds-radius-box span {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
}

.ds-radius-box code {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--ink-500);
}

.ds-elev-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
}

.ds-elev-card strong {
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 700;
}

.ds-elev-card code {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--ink-500);
}

.ds-elev-card span {
  font-size: 13px;
  color: var(--ink-600);
  margin-top: auto;
}

.ds-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ds-icon-tile {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ds-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-700);
}

.ds-icon-circle svg { width: 26px; height: 26px; }

.ds-icon-tile span {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}

.ds-comp-card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px;
  margin-bottom: 16px;
}

.ds-comp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.ds-spec-table {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-size: 13px;
}

.ds-spec-table > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-200);
}

.ds-spec-table strong { color: var(--olive-700); font-weight: 700; font-family: var(--font-en); }

.ds-spec-table span { color: var(--ink-600); }

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  font-family: inherit;
}

.cp-btn:hover { transform: translateY(-1px); }

.cp-btn:active { transform: translateY(0); }

.cp-btn svg { width: 16px; height: 16px; }

.cp-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.cp-btn-primary { background: var(--olive-700); color: #fff; }

.cp-btn-primary:hover { background: var(--olive-900); }

.cp-btn-secondary,
.cp-badge-info { background: var(--cream-100); color: var(--olive-900); }

.cp-btn-secondary:hover { background: var(--olive-100); }

.cp-btn-outline { background: transparent; color: var(--ink-800); border-color: var(--line-300); }

.cp-btn-outline:hover { border-color: var(--olive-700); color: var(--olive-700); }

.cp-btn-ghost { background: transparent; color: var(--olive-700); padding: 0 8px; }

.cp-btn-ghost:hover { background: var(--cream-100); }

.cp-btn-danger { background: var(--danger); color: #fff; }

.cp-btn-danger:hover { background: #960005; }

.cp-btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }

.cp-btn-lg { height: 52px; padding: 0 24px; font-size: 16px; }

.cp-btn-xl { height: 60px; padding: 0 28px; font-size: 17px; border-radius: var(--r-lg); }

.cp-btn-block { width: 100%; }

.cp-channel {
  height: 44px;
  padding: 0 18px;
  border-radius: var(--r-lg);
  border: 0;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.cp-channel-kakao,
.hw-contact-ic--kakao,
.faq-contact-ic--kakao,
.cs-channel-ic--kakao { background: linear-gradient(180deg, #FACC15, #EAB308); color: #3F2A00; }

.cp-channel-mail,
.hw-contact-ic--mail,
.faq-contact-ic--mail,
.cs-channel-ic--mail { background: linear-gradient(180deg, #A855F7, #9333EA); }

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cp-badge svg { width: 12px; height: 12px; }

.cp-badge-success,
.hw-choice-ic--ok { background: var(--success-soft); color: var(--success-deep); }

.cp-badge-success .cp-dot { background: var(--success); box-shadow: 0 0 0 3px rgba(0,166,62,0.18); }

.cp-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

.cp-badge-warning,
.hw-choice-ic--re { background: var(--warning-soft); color: #9C3000; }

.cp-badge-purple { background: var(--care-purple-soft); color: var(--care-purple-deep); }

.cp-badge-mute { background: var(--mist-100); color: var(--ink-700); }

.cp-badge-soft { background: var(--cream-100); color: var(--olive-700); }

.cp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--ink-700);
  border: 1px solid var(--line-200);
  font-size: 13px;
  font-weight: 500;
}

.cp-chip-pin {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-400);
  box-shadow: 0 0 0 3px rgba(106,114,130,0.18);
}

.cp-chip-active { background: var(--success-soft); color: var(--success-deep); border-color: rgba(0,166,62,0.2); }

.cp-chip-active .cp-chip-pin { background: var(--success); box-shadow: 0 0 0 3px rgba(0,166,62,0.2); }

.cp-chip-soon { background: var(--warning-soft); color: #9C3000; border-color: rgba(208,135,0,0.2); }

.cp-chip-soon .cp-chip-pin { background: var(--warning); box-shadow: 0 0 0 3px rgba(208,135,0,0.2); }

.ds-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.ds-card-grid-3,
.hw-cards--3 { grid-template-columns: repeat(3, 1fr); }

.cp-service {
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-200);
  box-shadow: var(--elev-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-700);
  margin-bottom: 4px;
}

.cp-service-icon svg { width: 22px; height: 22px; }

.cp-service h4 {
  margin: 0;
  font-size: 20px;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cp-service > p { margin: 0; color: var(--ink-600); font-size: 14px; line-height: 1.55; }

.cp-list { list-style: none; padding: 0; margin: 4px 0 8px; display: flex; flex-direction: column; gap: 6px; }

.cp-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-700);
}

.cp-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--olive-700);
  border-bottom: 2px solid var(--olive-700);
  transform: rotate(-45deg);
}

.cp-review {
  position: relative;
  padding: 26px 24px 22px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-200);
  box-shadow: var(--elev-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-quote {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--olive-700);
  height: 24px;
  display: block;
}

.cp-stars { color: var(--warning-bright); letter-spacing: 1px; font-size: 14px; }

.cp-review p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink-700); }

.cp-review footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-200);
  padding-top: 12px;
  margin-top: 6px;
  font-size: 12.5px;
}

.cp-review strong { color: var(--ink-800); font-weight: 600; }

.cp-review strong span { color: var(--ink-500); font-weight: 400; }


.cp-feature {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-200);
  box-shadow: var(--elev-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-feature-ic,
.cp-trust-feat-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-700);
}

.cp-feature-ic svg { width: 20px; height: 20px; }

.cp-feature h4 { margin: 4px 0 0; font-size: 18px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.005em; }

.cp-feature > p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

.cp-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  background: linear-gradient(135deg, #5A6B2E 0%, #3E4A1F 60%, #2D3717 100%);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
}

.cp-kpi-strip::before, .cp-kpi-strip::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}

.cp-kpi-strip::before { background: #C9B98A; left: -80px; top: -80px; }

.cp-kpi-strip::after { background: #7E9243; right: -120px; bottom: -120px; }

.cp-kpi-tile {
  position: relative;
  padding: 24px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.cp-kpi-ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.cp-kpi-ic svg { width: 18px; height: 18px; }

.cp-kpi-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cp-kpi-num span { font-size: 22px; color: rgba(255,255,255,0.75); margin-left: 2px; }

.cp-kpi-label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 4px; }

.cp-kpi-sub { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.cp-steps {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 12px;
  align-items: stretch;
}

.cp-step {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--elev-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.cp-step-bubble,
.pt-astep-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--olive-700);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}

.cp-step h5 { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

.cp-step p { margin: 0; font-size: 13px; color: var(--ink-600); line-height: 1.6; }

.cp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-300);
  font-size: 22px;
  font-weight: 600;
}

.cp-form,
.cs-loc-rows { display: flex; flex-direction: column; gap: 18px; }

.cp-field { display: flex; flex-direction: column; gap: 8px; }

.cp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.cp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}

.cp-label em { color: var(--danger); font-style: normal; margin-left: 2px; }

.cp-input {
  height: 48px;
  padding: 0 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-300);
  background: var(--surface);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-800);
  transition: border-color .15s, box-shadow .15s;
}

textarea.cp-input { height: auto; padding: 12px 14px; resize: vertical; line-height: 1.6; }

.cp-input::placeholder { color: var(--ink-400); }

.cp-input:focus {
  outline: none;
  border-color: var(--olive-700);
  box-shadow: 0 0 0 4px rgba(90,107,46,0.12);
}

.cp-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--cream-100);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.55;
}

.cp-check input { margin-top: 3px; accent-color: var(--olive-700); }

.cp-check a { color: var(--olive-700); text-decoration: underline; }

.cp-tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-200);
  margin-bottom: 16px;
}

.cp-tab {
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-200);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
}

.cp-tab span { color: var(--ink-400); font-weight: 400; margin-left: 4px; }

.cp-tab-active {
  background: var(--olive-700);
  color: #fff;
  border-color: var(--olive-700);
}

.cp-tab-active span { color: rgba(255,255,255,0.7); }

.cp-faq,
.faq-list,
.cs-hours { display: flex; flex-direction: column; gap: 10px; }

.cp-faq-row {
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color .2s;
}

.cp-faq-row[open] {
  border-color: var(--olive-300);
  background: var(--cream-50);
}

.cp-faq-row summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.cp-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-800);
  flex: 1;
}

.cp-faq-ic {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--olive-100);
  color: var(--olive-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.cp-faq-meta {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-500);
  margin-left: auto;
  padding-left: 12px;
}

.cp-faq-arrow {
  font-size: 18px;
  color: var(--ink-400);
  transition: transform .2s;
}

.cp-faq-row[open] .cp-faq-arrow { transform: rotate(180deg); color: var(--olive-700); }

.cp-faq-row p {
  margin: 0;
  padding: 0 20px 20px 56px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.7;
}

.cp-section-demo {
  background: linear-gradient(135deg, #5A6B2E 0%, #3E4A1F 100%);
  padding: 64px 48px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cp-section-demo::before, .cp-section-demo::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2;
}

.cp-section-demo::before { width: 280px; height: 280px; background: #C9B98A; left: -100px; top: -100px; }

.cp-section-demo::after { width: 280px; height: 280px; background: #7E9243; right: -80px; bottom: -120px; }

.cp-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cp-section-pill .cp-dot { background: #FDC700; box-shadow: 0 0 0 3px rgba(253,199,0,0.3); }

.cp-section-demo h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}

.cp-section-demo p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.cp-footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.7);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.cp-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 48px 40px 32px;
}

.cp-footer-brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 16px; }

.cp-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0 0 16px; }

.cp-footer-col h6 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.cp-footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
}

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

.cp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cp-footer-links { display: flex; gap: 16px; }

.cp-footer-links a { cursor: pointer; }

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

.ds-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 0;
  margin-top: 32px;
  border-top: 1px solid var(--line-200);
  font-size: 12px;
  color: var(--ink-500);
  font-family: var(--font-en);
}

@media (max-width: 1240px) {
  .ds-principles { grid-template-columns: repeat(2, 1fr); }
  .ds-elev-row { grid-template-columns: repeat(2, 1fr); }
  .ds-icon-grid { grid-template-columns: repeat(4, 1fr); }
  .cp-kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .cp-steps { grid-template-columns: 1fr; }
  .cp-step-arrow { display: none; }
}


/* ============================================================
   FROM: index.css
   ============================================================ */

body { background: var(--cream-50); }

.cp-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.cp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,240,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.6);
}

.cp-header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.cp-logo img { height: 44px; width: auto; display: block; }

.cp-brand { display: inline-flex; align-items: center; gap: 11px; }

.cp-logo-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px 7px 14px;
  border-radius: var(--r-pill);
  background: var(--olive-100);
  color: var(--olive-900);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.cp-logo-tag svg { width: 15px; height: 15px; opacity: 0.65; }

@media (max-width: 380px) { .cp-logo-tag { display: none; } }

.cp-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.cp-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}

.cp-nav a:hover { color: var(--olive-700); }

.cp-nav a.is-active { color: var(--olive-900); font-weight: 600; }

.cp-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--olive-700); border-radius: 2px;
}

.cp-nav a.cp-nav-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--olive-100);
  color: var(--olive-900);
  font-weight: 700;
  transition: background .15s, color .15s;
}

.cp-nav a.cp-nav-feature::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive-700);
  box-shadow: 0 0 0 3px rgba(90,107,46,0.2);
}

.cp-nav a.cp-nav-feature:hover { background: var(--olive-300); color: var(--olive-900); }

.cp-header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px;
  background: var(--olive-700); color: #fff;
  border-radius: var(--r-lg);
  font-size: 13px; font-weight: 600;
  transition: background .15s;
}

.cp-header-cta:hover { background: var(--olive-900); color: #fff; }

.cp-header-cta svg { width: 15px; height: 15px; }

.cp-header-actions { display: inline-flex; align-items: center; gap: 10px; }

.cp-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--mist-100);
  border: 1px solid var(--line-200);
  color: var(--ink-800);
  padding: 0;
}

.cp-burger svg { width: 22px; height: 22px; }

.cp-burger:hover { background: var(--cream-100); }

.cp-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.cp-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cp-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-200);
}

.cp-menu-top .cp-logo img { height: 36px; display: block; }

.cp-menu-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--mist-100);
  border: 1px solid var(--line-200);
  color: var(--ink-800);
  padding: 0;
}

.cp-menu-close svg { width: 22px; height: 22px; }

.cp-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  overflow-y: auto;
}

.cp-menu-nav a {
  display: block;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-800);
  border-bottom: 1px solid var(--line-200);
}

.cp-menu-nav a:last-child { border-bottom: 0; }

.cp-menu-foot {
  padding: 16px 24px 28px;
  border-top: 1px solid var(--line-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(232,226,213,0.45) 0%, transparent 60%),
    radial-gradient(50% 40% at 92% 96%, rgba(201,185,138,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, #FCFAF6 60%, #FFFFFF 100%);
  padding: 56px 0 72px;
  overflow: hidden;
}

.cp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62,74,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,74,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(70% 80% at 50% 50%, #000 0%, transparent 100%);
  pointer-events: none;
}

.cp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.cp-hero-glow--a { width: 380px; height: 380px; background: #E8E2D5; left: -120px; top: -120px; }

.cp-hero-glow--b { width: 420px; height: 420px; background: #C9B98A; right: -180px; bottom: -140px; opacity: 0.25; }

.cp-hero-shell { position: relative; z-index: 1; }

.cp-hero-carousel {
  position: relative;
  min-height: 600px;
}

.cp-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .7s ease, transform .7s ease, visibility .7s;
  pointer-events: none;
}

.cp-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cp-hero-text { max-width: 560px; }

.cp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(60,74,31,0.12);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(62,74,31,0.04);
}

.cp-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive-700);
  box-shadow: 0 0 0 4px rgba(90,107,46,0.16);
}

.cp-hero-eyebrow-lbl {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-900);
}

.cp-hero-eyebrow-mark {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-400);
  padding-left: 12px;
  border-left: 1px solid var(--line-200);
  margin-left: 2px;
}

.cp-hero-title {
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--ink-900);
  margin: 0 0 24px;
}

.cp-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--olive-900) 0%, var(--olive-700) 50%, var(--olive-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.cp-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-600);
  margin: 0 0 36px;
  max-width: 500px;
}

.cp-hero-ctas { display: flex; gap: 12px; }

.cp-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.cp-hero-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  padding: 12px;
}

.cp-hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(201,185,138,0.45) 0%, rgba(232,226,213,0.1) 50%, rgba(90,107,46,0.18) 100%);
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.cp-hero-visual {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #E8E2D5 0%, #C9B98A 100%);
  box-shadow:
    0 30px 80px -20px rgba(62,74,31,0.32),
    0 12px 32px -8px rgba(62,74,31,0.18);
}

.cp-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: cp-kenburns 9s ease-out infinite alternate;
}

@keyframes cp-kenburns {
  from { transform: scale(1.02) translate(0,0); }
  to   { transform: scale(1.10) translate(-1%, -1%); }
}

.cp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,24,40,0.18) 100%);
  pointer-events: none;
}

.cp-hero-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1.5px solid rgba(90,107,46,0.5);
  pointer-events: none;
  z-index: 2;
}

.cp-hero-corner--tl { top: -2px; left: -2px; border-right: 0; border-bottom: 0; border-top-left-radius: 16px; }

.cp-hero-corner--tr { top: -2px; right: -2px; border-left: 0; border-bottom: 0; border-top-right-radius: 16px; }

.cp-hero-corner--bl { bottom: -2px; left: -2px; border-right: 0; border-top: 0; border-bottom-left-radius: 16px; }

.cp-hero-corner--br { bottom: -2px; right: -2px; border-left: 0; border-top: 0; border-bottom-right-radius: 16px; }

.cp-hero-float {
  position: absolute;
  left: -32px; bottom: 48px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 22px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 24px 48px -12px rgba(16,24,40,0.22), 0 6px 14px rgba(16,24,40,0.08);
  border: 1px solid var(--line-200);
  z-index: 3;
}

.cp-hero-float-ic,
.pt-intro-badge-ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success-deep);
  display: flex; align-items: center; justify-content: center;
}

.cp-hero-float-ic svg { width: 18px; height: 18px; }

.cp-hero-float-meta span {
  display: block;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.cp-hero-float-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 2px;
  letter-spacing: -0.005em;
}

.cp-hero-medal {
  position: absolute;
  top: -16px; right: -16px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6E823A 0%, #3E4A1F 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px -8px rgba(62,74,31,0.5);
  z-index: 3;
}

.cp-hero-medal::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.35);
}

.cp-hero-medal-lbl {
  font-family: var(--font-en);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.cp-hero-medal-num {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FDC700;
}

.cp-hero-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(60,74,31,0.1);
}

.cp-hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-300);
  background: rgba(255,255,255,0.7);
  color: var(--ink-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.cp-hero-arrow svg { width: 18px; height: 18px; }

.cp-hero-arrow:hover {
  background: var(--olive-700);
  color: #fff;
  border-color: var(--olive-700);
}

.cp-hero-arrow:active { transform: scale(0.96); }
.cp-hero-playpause .cp-icon-play { display: none; }
.cp-hero-playpause.is-paused .cp-icon-pause { display: none; }
.cp-hero-playpause.is-paused .cp-icon-play { display: block; }

.cp-hero-dots {
  display: flex;
  gap: 24px;
  flex: 1;
}

.cp-hero-dot {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  text-align: left;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity .25s;
}

.cp-hero-dot:hover { opacity: 0.85; }

.cp-hero-dot.is-active { opacity: 1; }

.cp-hero-dot-num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-700);
}

.cp-hero-dot-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(60,74,31,0.12);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.cp-hero-dot-bar i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--olive-700), var(--olive-500));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .25s;
}

.cp-hero-dot.is-active .cp-hero-dot-bar i {
  animation: cp-hero-progress 7s linear forwards;
}
.cp-hero.is-rot-paused .cp-hero-dot.is-active .cp-hero-dot-bar i { animation-play-state: paused; }

@keyframes cp-hero-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.cp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  margin-top: 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(60,74,31,0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px -8px rgba(62,74,31,0.12);
}

.cp-hero-stat-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(60,74,31,0.15), transparent);
}

.cp-hero-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--olive-700);
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.cp-hero-stat > span {
  display: block;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 4px;
}

.cp-stats {
  background: radial-gradient(120% 90% at 80% 10%, #6E823A 0%, #5A6B2E 45%, #3E4A1F 100%);
  padding: 88px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cp-stats::before, .cp-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.cp-stats::before { width: 420px; height: 420px; background: #C9B98A; left: -120px; top: -120px; }

.cp-stats::after { width: 420px; height: 420px; background: #7E9243; right: -160px; bottom: -160px; }

.cp-stats-head { text-align: center; margin-bottom: 48px; position: relative; }

.cp-stats-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px; font-weight: 600;
  margin-bottom: 18px;
}

.cp-stats-pill .cp-dot { background: #FDC700; box-shadow: 0 0 0 3px rgba(253,199,0,0.3); }

.cp-stats h2 {
  font-size: clamp(18px, 4.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
  white-space: nowrap;
}

.cp-stats-head > p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin: 0;
}

.cp-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cp-stat-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 24px 22px 22px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}

.cp-stat-ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}

.cp-stat-ic svg { width: 18px; height: 18px; color: rgba(255,255,255,0.92); }

.cp-stat-chip {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,166,62,0.18);
  color: #BBF7D0;
  border: 1px solid rgba(187,247,208,0.25);
}

.cp-stat-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cp-stat-num em { font-style: normal; font-size: 24px; color: rgba(255,255,255,0.75); margin-left: 2px; }

.cp-stat-label { font-size: 14px; color: rgba(255,255,255,0.88); margin-top: 2px; }

.cp-stat-sub { font-size: 12px; color: rgba(255,255,255,0.55); }

.cp-stats-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  position: relative;
}

.cp-stat-extra {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
}

.cp-stat-extra-ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.cp-stat-extra-ic svg { width: 18px; height: 18px; }

.cp-stat-extra-text { flex: 1; }

.cp-stat-extra-text span {
  display: block; font-size: 12px; color: rgba(255,255,255,0.6);
}

.cp-stat-extra-text strong {
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.cp-stat-extra-aux {
  font-family: var(--font-en);
  font-size: 12px;
  color: #FDC700;
}

.cp-stats-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

.cp-stats-foot::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #BBF7D0; box-shadow: 0 0 0 4px rgba(187,247,208,0.18);
  margin-right: 8px; vertical-align: middle;
}

.cp-sec {
  padding: 96px 0;
}

.cp-sec--cream,
.hw-step--cream,
.cs-sec--cream,
.pt-sec--cream { background: var(--cream-100); }

.cp-sec--mist,
.hw-step--mist,
.cs-sec--mist,
.pt-sec--mist { background: var(--mist-50); }

.cp-sec-head,
.sv-sec-head { text-align: center; margin-bottom: 56px; }

.cp-sec-head h2 {
  font-size: clamp(20px, 4.4vw, 36px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  white-space: nowrap;
}

.cp-sec-head h2 em { font-style: normal; color: var(--olive-700); }

.cp-sec-head p {
  color: var(--ink-600);
  font-size: 16px;
  margin: 0;
}

.cp-services,
.cp-reviews,
.sv-services,
.sv-features,
.sv-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cp-how {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 40px;
}

.cp-how-cta,
.cs-faq-more { text-align: center; }

.cp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cp-trust h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.18;
}

.cp-trust h2 em { font-style: normal; color: var(--olive-700); }

.cp-trust > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-600);
  margin: 0 0 32px;
}

.cp-trust-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.cp-trust-feat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.cp-trust-feat-ic svg { width: 20px; height: 20px; }

.cp-trust-feat h4 { margin: 4px 0 4px; font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.005em; }

.cp-trust-feat p { margin: 0; font-size: 14px; color: var(--ink-600); line-height: 1.6; }

.cp-trust-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E2D5 0%, #C9B98A 100%);
  box-shadow: 0 24px 60px rgba(62,74,31,0.18);
}

.cp-trust-visual img { width: 100%; height: 100%; object-fit: cover; }

.cp-review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--olive-700);
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--cream-100);
}

.cp-review footer > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.cp-faq-wrap { max-width: 800px; margin: 0 auto; }

.cp-faq-more { text-align: center; margin-top: 32px; }

.cp-faq-more p { color: var(--ink-500); font-size: 14px; margin: 0 0 16px; }

.cp-quick {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cp-quick-col {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 28px 24px;
}

.cp-quick-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-200);
}

.cp-quick-col h4.is-accent { color: var(--highlight); }

.cp-quick-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.cp-quick-col a {
  font-size: 14px;
  color: var(--ink-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s, transform .15s;
}

.cp-quick-col a:hover { color: var(--olive-700); transform: translateX(2px); }

.cp-quick-col a::before {
  content: "→";
  color: var(--ink-400);
  font-family: var(--font-en);
  font-size: 12px;
}

.cp-final {
  padding: 80px 0;
  background: radial-gradient(120% 90% at 50% 30%, #6E823A 0%, #5A6B2E 50%, #3E4A1F 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-final::before, .cp-final::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25;
}

.cp-final::before { width: 320px; height: 320px; background: #C9B98A; left: -80px; top: -100px; }

.cp-final::after { width: 320px; height: 320px; background: #7E9243; right: -80px; bottom: -100px; }

.cp-final-inner { position: relative; }

.cp-final h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.cp-final > .cp-wrap > .cp-final-inner > p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin: 0 0 32px;
}

@media (max-width: 640px) {
  .cp-final h2 { white-space: nowrap; font-size: clamp(24px, 7.4vw, 38px); }
  .cp-final > .cp-wrap > .cp-final-inner > p { white-space: nowrap; font-size: clamp(11px, 3.3vw, 16px); }
}

.cp-final-ctas { display: inline-flex; gap: 12px; }

.cp-final .cp-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.cp-final .cp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.cp-final .cp-btn-primary {
  background: #fff;
  color: var(--olive-900);
}

.cp-final .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }

.cp-foot {
  background: var(--slate-900);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.cp-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.cp-foot-brand img { height: 48px; margin-bottom: 16px; }

.cp-foot-brand p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0 0 20px; line-height: 1.6; }

.cp-foot-col h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}

.cp-foot-col a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color .15s;
}

.cp-foot-col a:hover { color: #fff; }

.cp-foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}

.cp-foot-bottom-l p { margin: 0 0 4px; }

.cp-foot-bottom-r { display: flex; gap: 18px; }

.cp-foot-bottom-r a { cursor: pointer; color: rgba(255,255,255,0.55); }

.cp-foot-bottom-r a:hover { color: #fff; }

@media (max-width: 1100px) {
  .cp-hero-slide { grid-template-columns: 1fr; gap: 40px; }
  .cp-hero-carousel { min-height: auto; }
  .cp-hero-slide { position: relative; }
  .cp-hero-slide:not(.is-active) { display: none; }
  .cp-hero-art { order: -1; }
  .cp-hero-frame { max-width: 420px; aspect-ratio: 4 / 3.4; }
  .cp-hero-title { font-size: 44px; }
  .cp-hero-stats { grid-template-columns: 1fr 1px 1fr; gap: 16px; padding: 20px; }
  .cp-hero-stats > .cp-hero-stat:nth-child(n+5) { display: none; }
  .cp-hero-stats > .cp-hero-stat-divider:nth-of-type(2),
  .cp-hero-stats > .cp-hero-stat-divider:nth-of-type(3) { display: none; }
  .cp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-stats-extras { grid-template-columns: 1fr; }
  .cp-services, .cp-reviews { grid-template-columns: 1fr; }
  .cp-how { grid-template-columns: 1fr; }
  .cp-how > .cp-step-arrow { display: none; }
  .cp-trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .cp-quick { grid-template-columns: repeat(2, 1fr); }
  .cp-foot-grid { grid-template-columns: 1fr 1fr; }
}

/* The desktop nav wraps below ~1020px, so the header collapses to the
   burger menu at 1100px — same breakpoint as the layout shifts above. */
@media (max-width: 1100px) {
  .cp-nav, .cp-header-actions { display: none; }
  .cp-burger { display: inline-flex; margin-left: auto; }
}

@media (max-width: 640px) {
  .cp-hero-stats { display: none; }
  .cp-hero { padding: 32px 0 56px; }
  .cp-hero-title { font-size: 32px; }
  .cp-hero-sub { font-size: 15px; }
  .cp-hero-eyebrow { padding: 4px 12px 4px 10px; margin-bottom: 20px; }
  .cp-hero-eyebrow-lbl { font-size: 10px; }
  .cp-hero-medal { width: 70px; height: 70px; top: -12px; right: -8px; }
  .cp-hero-medal-num { font-size: 15px; }
  .cp-hero-medal-lbl { font-size: 7.5px; }
  .cp-hero-float { left: 12px; bottom: 16px; padding: 10px 16px 10px 10px; }
  .cp-hero-float-ic { width: 36px; height: 36px; }
  .cp-hero-float-meta strong { font-size: 13px; }
  .cp-hero-controls { gap: 12px; margin-top: 28px; padding-top: 20px; }
  .cp-hero-arrow { width: 36px; height: 36px; }
  .cp-hero-dots { gap: 12px; }
  .cp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cp-stat-tile { padding: 18px 16px; }
  .cp-stat-num { font-size: 28px; }
  .cp-stat-num em { font-size: 16px; }
  .cp-quick { grid-template-columns: 1fr; }
  .cp-foot-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   FROM: service.css
   ============================================================ */

.sv-hero {
  position: relative;
  padding: 84px 0 88px;
  text-align: center;
  color: #fff;
  background: radial-gradient(120% 90% at 50% 0%, #6E823A 0%, #5A6B2E 45%, #3E4A1F 100%);
  overflow: hidden;
}

.sv-hero::before, .sv-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.22; pointer-events: none;
}

.sv-hero::before { width: 420px; height: 420px; background: #C9B98A; left: -120px; top: -140px; }

.sv-hero::after { width: 460px; height: 460px; background: #FDC700; right: -160px; bottom: -200px; opacity: 0.12; }

.sv-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.sv-hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #FDC700;
  box-shadow: 0 0 0 4px rgba(253,199,0,0.25);
}

.sv-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 18px;
  color: #fff;
  position: relative;
}

.sv-hero p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 0 0 32px;
  position: relative;
}

.sv-hero-cta { display: inline-flex; gap: 12px; position: relative; }

.sv-hero-cta .cp-btn-primary { background: #fff; color: var(--olive-900); }

.sv-hero-cta .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }

.sv-hero-cta .cp-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.sv-hero-cta .cp-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.sv-intro,
.sv-services-sec,
.sv-process-sec,
.sv-target-sec {
  padding: 96px 0;
  background: var(--surface);
}

.sv-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.sv-intro-eyebrow {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive-700);
  margin-bottom: 14px;
}

.sv-intro h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  line-height: 1.2;
}

.sv-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-600);
  margin: 0 0 20px;
}

.sv-pillars {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}

.sv-pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream-100);
  border: 1px solid rgba(60,74,31,0.12);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--olive-900);
}

.sv-pillar svg { width: 16px; height: 16px; color: var(--olive-700); }

.sv-intro-art {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E2D5 0%, #C9B98A 100%);
  box-shadow: 0 24px 60px -20px rgba(62,74,31,0.28);
}

.sv-intro-art img { width: 100%; height: 100%; object-fit: cover; }

.sv-intro-art .sv-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,255,255,0.6);
  pointer-events: none;
}

.sv-intro-art .sv-corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }

.sv-intro-art .sv-corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.sv-intro-art-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(16,24,40,0.7);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

.sv-intro-art-badge-ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,199,0,0.18);
  color: #FDC700;
  display: flex; align-items: center; justify-content: center;
}

.sv-intro-art-badge-ic svg { width: 18px; height: 18px; }

.sv-intro-art-badge-meta span {
  display: block; font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  font-family: var(--font-en); font-weight: 600;
}

.sv-intro-art-badge-meta strong {
  display: block; font-size: 15px; font-weight: 700; margin-top: 2px;
}

.sv-reasons-sec,
.sv-features-sec,
.sv-req-sec,
.sv-region-sec {
  padding: 96px 0;
  background: var(--cream-100);
}

.sv-sec-head .sv-intro-eyebrow { margin-bottom: 12px; }

.sv-sec-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  white-space: nowrap;
}

.sv-sec-head p {
  color: var(--ink-600);
  font-size: 16px;
  margin: 0;
}

.sv-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sv-reason {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  padding: 28px;
  align-items: flex-start;
  box-shadow: var(--elev-1);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.sv-reason:hover { transform: translateY(-2px); box-shadow: var(--elev-2); }

.sv-reason-ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--olive-100) 0%, var(--cream-100) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-700);
  position: relative;
}

.sv-reason-ic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(90,107,46,0.2);
}

.sv-reason-ic svg { width: 24px; height: 24px; }

.sv-reason-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 800;
  color: var(--olive-100);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.sv-reason > *:not(.sv-reason-num) { position: relative; z-index: 1; }

.sv-reason h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-reason p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
}

.sv-service-card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--elev-2);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.sv-service-card:hover { transform: translateY(-4px); box-shadow: var(--elev-3); }

.sv-service-head {
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, var(--cream-50) 0%, transparent 100%);
  position: relative;
  border-bottom: 1px solid var(--line-200);
}

.sv-service-ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--olive-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(62,74,31,0.5);
}

.sv-service-ic svg { width: 24px; height: 24px; }

.sv-service-head h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.sv-service-head p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.55;
}

.sv-service-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}

.sv-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sv-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}

.sv-checks li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--olive-100);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4 8 3 3 5-6' fill='none' stroke='%235A6B2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.sv-feature {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--elev-1);
  transition: transform .2s, box-shadow .2s;
}

.sv-feature:hover { transform: translateY(-2px); box-shadow: var(--elev-2); }

.sv-feature-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}

.sv-feature-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.sv-feature-ic svg { width: 20px; height: 20px; }

.sv-feature h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-feature > p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.65;
}

.sv-feature ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid var(--line-200);
  display: flex; flex-direction: column;
  gap: 8px;
}

.sv-feature ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-700);
}

.sv-feature ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-500);
}

.sv-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}

.sv-step:hover { transform: translateY(-2px); box-shadow: var(--elev-2); border-color: var(--olive-300); }

.sv-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--olive-700);
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(62,74,31,0.5);
}

.sv-step h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.65;
}

.sv-step-tag {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--olive-300);
}

.sv-req {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.sv-req-card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--elev-1);
}

.sv-req-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-200);
}

.sv-req-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--olive-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.sv-req-ic svg { width: 22px; height: 22px; }

.sv-req-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}

.sv-req-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}

.sv-req-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--olive-700);
  margin-top: 1px;
}

.sv-req-banner {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--olive-300);
  border-left: 4px solid var(--olive-700);
  border-radius: 16px;
  padding: 24px 28px;
}

.sv-req-banner-ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--olive-100);
  color: var(--olive-900);
  display: flex; align-items: center; justify-content: center;
}

.sv-req-banner-ic svg { width: 26px; height: 26px; }

.sv-req-banner h4 {
  margin: 4px 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
}

.sv-req-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.7;
}

.sv-target {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}

.sv-target:hover { transform: translateY(-2px); box-shadow: var(--elev-2); }

.sv-target-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

.sv-target-ic svg { width: 26px; height: 26px; }

.sv-target h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-target > p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
}

.sv-target ul {
  list-style: none;
  padding: 14px 0 0;
  margin: auto 0 0;
  border-top: 1px dashed var(--line-200);
  display: flex; flex-direction: column; gap: 6px;
}

.sv-target ul li {
  position: relative;
  padding-left: 16px;
  font-size: 12.5px;
  color: var(--ink-700);
}

.sv-target ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--olive-700);
  font-weight: 700;
  font-size: 12px;
}

.sv-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.sv-region {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.sv-region:hover { transform: translateY(-1px); box-shadow: var(--elev-1); }

.sv-region-pin {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist-100);
  color: var(--ink-500);
  flex-shrink: 0;
}

.sv-region-pin svg { width: 16px; height: 16px; }

.sv-region-text { flex: 1; min-width: 0; }

.sv-region-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.sv-region-status {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 1px;
}

.sv-region--active { border-color: rgba(0,166,62,0.25); background: linear-gradient(180deg, #F6FBF7 0%, var(--surface) 100%); }

.sv-region--active .sv-region-pin { background: var(--success-soft); color: var(--success-deep); }

.sv-region--active .sv-region-status { color: var(--success-deep); font-weight: 600; }

.sv-region--expand { border-color: rgba(208,135,0,0.22); background: linear-gradient(180deg, #FFFBF2 0%, var(--surface) 100%); }

.sv-region--expand .sv-region-pin { background: var(--warning-soft); color: #9C6F00; }

.sv-region--expand .sv-region-status { color: #9C6F00; font-weight: 600; }

.sv-region--soon { border-color: rgba(152,16,250,0.18); background: linear-gradient(180deg, #FAF5FF 0%, var(--surface) 100%); }

.sv-region--soon .sv-region-pin { background: var(--care-purple-soft); color: var(--care-purple-deep); }

.sv-region--soon .sv-region-status { color: var(--care-purple-deep); font-weight: 600; }

.sv-region-cta {
  background: linear-gradient(135deg, #5A6B2E 0%, #3E4A1F 100%);
  border-radius: 24px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(62,74,31,0.4);
}

.sv-region-cta::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: #C9B98A;
  filter: blur(80px);
  opacity: 0.22;
  right: -80px; top: -80px;
}

.sv-region-cta > div { position: relative; z-index: 1; }

.sv-region-cta h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.sv-region-cta p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.sv-region-cta .cp-btn-primary {
  background: #fff; color: var(--olive-900);
  position: relative; z-index: 1;
}

.sv-region-cta .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }

/* ===================== USE CASES (service.html) ===================== */
.sv-cases-sec { padding: 96px 0; background: var(--surface); }

.sv-cases { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }

.sv-case {
  display: grid;
  grid-template-columns: 304px 1fr;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.sv-case:hover { box-shadow: var(--elev-2); transform: translateY(-2px); border-color: var(--olive-300); }

.sv-case-side {
  padding: 30px 28px;
  background: linear-gradient(170deg, var(--cream-50) 0%, var(--cream-100) 100%);
  border-right: 1px solid var(--line-200);
  display: flex; flex-direction: column; gap: 18px;
}

.sv-case-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--olive-700); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.01em;
}

.sv-case-tag svg { width: 14px; height: 14px; }

.sv-case-profile h3 {
  margin: 0 0 8px;
  font-size: 20px; font-weight: 700;
  color: var(--ink-900); letter-spacing: -0.01em; line-height: 1.32;
}

.sv-case-who { font-size: 13.5px; color: var(--ink-600); line-height: 1.6; margin: 0; }

.sv-case-meta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 11px;
  padding-top: 18px; border-top: 1px solid var(--line-200);
}

.sv-case-meta-item { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-600); }

.sv-case-meta-item svg { width: 15px; height: 15px; color: var(--olive-700); flex-shrink: 0; }

.sv-case-meta-item strong { color: var(--ink-800); font-weight: 600; }

.sv-case-body { padding: 32px 32px 28px; }

.sv-case-situation { font-size: 14.5px; line-height: 1.75; color: var(--ink-600); margin: 0 0 24px; }

.sv-case-situation strong { color: var(--ink-800); font-weight: 600; }

.sv-case-timeline { list-style: none; margin: 0 0 22px; padding: 0; position: relative; }

.sv-case-timeline::before {
  content: ""; position: absolute; left: 6px; top: 7px; bottom: 7px;
  width: 2px; background: var(--olive-100);
}

.sv-case-step { position: relative; padding: 0 0 18px 30px; }

.sv-case-step:last-child { padding-bottom: 0; }

.sv-case-step::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--olive-700);
}

.sv-case-step .t {
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 700;
  color: var(--olive-700); letter-spacing: 0.05em;
}

.sv-case-step .d { display: block; font-size: 14px; color: var(--ink-700); line-height: 1.6; margin-top: 3px; }

.sv-case-step .d strong { color: var(--ink-900); font-weight: 600; }

.sv-case-result {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--cream-50);
  border: 1px solid var(--olive-100);
  border-radius: 14px;
  padding: 16px 18px;
}

.sv-case-result-ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--success-soft); color: var(--success-deep);
  display: flex; align-items: center; justify-content: center;
}

.sv-case-result-ic svg { width: 18px; height: 18px; }

.sv-case-result p { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--ink-700); }

.sv-case-result strong { color: var(--olive-900); font-weight: 700; }

@media (max-width: 860px) {
  .sv-case { grid-template-columns: 1fr; }
  .sv-case-side { border-right: 0; border-bottom: 1px solid var(--line-200); }
  .sv-case-meta { margin-top: 4px; }
  .sv-case-body { padding: 26px 24px; }
}

@media (max-width: 640px) {
  .sv-cases-sec { padding: 64px 0; }
}

@media (max-width: 1100px) {
  .sv-hero { padding: 80px 0 64px; }
  .sv-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-intro-art { order: -1; max-width: 480px; margin: 0 auto; }
  .sv-reasons { grid-template-columns: 1fr; }
  .sv-services { grid-template-columns: 1fr; }
  .sv-features { grid-template-columns: repeat(2, 1fr); }
  .sv-process { grid-template-columns: repeat(2, 1fr); }
  .sv-req { grid-template-columns: 1fr; }
  .sv-targets { grid-template-columns: repeat(2, 1fr); }
  .sv-regions { grid-template-columns: repeat(2, 1fr); }
  .sv-region-cta { grid-template-columns: 1fr; padding: 32px; text-align: center; }
}

@media (max-width: 640px) {
  .sv-hero { padding: 56px 0 48px; }
  .sv-intro, .sv-reasons-sec, .sv-services-sec, .sv-features-sec, .sv-process-sec, .sv-req-sec, .sv-target-sec, .sv-region-sec { padding: 64px 0; }
  .sv-features { grid-template-columns: 1fr; }
  .sv-process { grid-template-columns: 1fr; }
  .sv-targets { grid-template-columns: 1fr; }
  .sv-regions { grid-template-columns: 1fr; }
  .sv-req-banner { grid-template-columns: 1fr; padding: 20px; }
  .sv-hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .sv-sec-head h2 { white-space: normal; }
}


/* ============================================================
   FROM: howto.css
   ============================================================ */

.hw-hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% -10%, #6E823A 0%, #5A6B2E 42%, #3E4A1F 100%);
  color: #fff;
  padding: 84px 0 88px;
  overflow: hidden;
  text-align: center;
}

.hw-hero::before, .hw-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.hw-hero::before { width: 420px; height: 420px; background: #C9B98A; left: -120px; top: -160px; }

.hw-hero::after  { width: 420px; height: 420px; background: #7E9243; right: -160px; bottom: -200px; }

.hw-hero .cp-wrap { position: relative; z-index: 1; }

.hw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.hw-hero-eyebrow .cp-dot { background: var(--warning-bright); box-shadow: 0 0 0 3px rgba(253,199,0,0.3); }

.hw-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.15;
  color: #fff;
}

.hw-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.hw-overview { padding: 72px 0 80px; background: var(--mist-50); }

.hw-ov-head,
.faq-help-head,
.cs-head { text-align: center; margin-bottom: 44px; }

.hw-ov-head .ds-eyebrow { margin-bottom: 12px; }

.hw-ov-head h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.hw-ov-head p { color: var(--ink-600); font-size: 16px; margin: 0; }

.hw-ov-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

a.hw-ov-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--elev-3);
  border-color: var(--olive-300);
}

.hw-ov-top,
.pt-tier-top { display: flex; align-items: center; justify-content: space-between; }

.hw-ov-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive-700);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}

.hw-ov-ic,
.hw-pay-ic {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.hw-ov-ic svg { width: 22px; height: 22px; }

.hw-ov-card h4 { margin: 2px 0 0; font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

.hw-ov-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

.hw-ov-go {
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--olive-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .15s, transform .15s;
}

a.hw-ov-card:hover .hw-ov-go { opacity: 1; transform: translateX(0); }

.hw-step { padding: 88px 0; scroll-margin-top: 80px; }

.hw-step--white,
.cs-sec--white,
.pt-sec--white { background: var(--surface); }

.hw-step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.hw-step-badge {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--olive-500), var(--olive-900));
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(62,74,31,0.5);
}

.hw-step-head .ds-eyebrow { margin: 0 0 4px; }

.hw-step-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hw-block { margin-top: 48px; }

.hw-block:first-of-type { margin-top: 0; }

.hw-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.hw-block-title::before {
  content: "";
  width: 4px; height: 18px;
  border-radius: 2px;
  background: var(--olive-700);
}

.hw-cards { display: grid; gap: 16px; }

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

.hw-cards--4 { grid-template-columns: repeat(4, 1fr); }

.hw-card,
.hw-pay {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-step--white .hw-card { background: var(--cream-50); }

.hw-card-ic,
.cs-quick-ic {
  width: 46px; height: 46px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.hw-step--white .hw-card-ic { background: var(--surface); }

.hw-card-ic svg { width: 22px; height: 22px; }

.hw-card h4 { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

.hw-card > p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-600); }

.hw-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.hw-flow-item {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--r-md);
  background: var(--cream-100);
  border: 1px solid var(--line-200);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--olive-900);
}

.hw-step--white .hw-flow-item { background: var(--surface); }

.hw-flow-arrow { color: var(--olive-300); font-family: var(--font-en); font-weight: 700; }

.hw-tags,
.faq-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.hw-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--cream-100);
  border: 1px solid var(--line-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
}

.hw-step--white .hw-tag { background: var(--cream-50); }

.hw-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-500);
}

.hw-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.hw-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}

.hw-checks li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  color: var(--olive-700);
}

.hw-mini {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  padding: 20px;
}

.hw-step--white .hw-mini { background: var(--cream-50); }

.hw-mini h5 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--olive-700);
  letter-spacing: 0.02em;
}

.hw-svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hw-svc-ic,
.pt-pstep-ic {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.hw-svc-ic svg { width: 24px; height: 24px; }

.hw-svc h4 { margin: 0; font-size: 19px; font-weight: 700; color: var(--ink-900); }

.hw-svc > p { margin: 0; font-size: 14px; color: var(--ink-600); }

.hw-svc-meta {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed var(--line-300);
}

.hw-svc-meta .hw-svc-time { font-size: 13px; color: var(--ink-500); }

.hw-svc-meta .hw-svc-price {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--olive-700);
  letter-spacing: -0.01em;
}

.hw-svc-meta .hw-svc-price span { font-size: 13px; color: var(--ink-500); font-weight: 500; margin-left: 2px; }

.hw-crit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
}

.hw-crit-ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.hw-crit-ic svg { width: 24px; height: 24px; }

.hw-crit strong { font-size: 16px; color: var(--ink-900); font-weight: 700; }

.hw-crit span { font-size: 13px; color: var(--ink-600); }

.hw-lead {
  background: linear-gradient(135deg, #5A6B2E 0%, #3E4A1F 100%);
  border-radius: var(--r-2xl);
  padding: 40px 44px;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hw-lead::before {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  filter: blur(70px); opacity: 0.2; background: #C9B98A; left: -80px; top: -100px;
}

.hw-lead h4 { position: relative; margin: 0 0 10px; font-size: 22px; font-weight: 700; }

.hw-lead p { position: relative; margin: 0; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.82); max-width: 680px; margin-inline: auto; }

.hw-choice {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hw-step--white .hw-choice { background: var(--cream-50); }

.hw-choice-head,
.hw-pay-head,
.hw-contact-head { display: flex; align-items: center; gap: 12px; }

.hw-choice-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hw-choice-ic svg { width: 22px; height: 22px; }

.hw-choice h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink-900); }

.hw-choice > p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-600); }

.hw-price-table {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  overflow: hidden;
}

.hw-step--white .hw-price-table { background: var(--cream-50); }

.hw-price-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line-200);
}

.hw-price-row:last-child { border-bottom: 0; }

.hw-price-row .hw-price-name { font-size: 15px; font-weight: 700; color: var(--ink-900); }

.hw-price-row .hw-price-desc { font-size: 13.5px; color: var(--ink-600); }

.hw-price-row .hw-price-amt { font-family: var(--font-en); font-size: 15px; font-weight: 600; color: var(--ink-700); }

.hw-price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  background: var(--olive-900);
  color: #fff;
}

.hw-price-total span { font-size: 16px; font-weight: 600; }

.hw-price-total strong { font-family: var(--font-en); font-size: 28px; font-weight: 700; color: var(--warning-bright); }

.hw-step--white .hw-pay { background: var(--cream-50); }

.hw-pay-ic svg { width: 22px; height: 22px; }

.hw-pay h4 { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink-900); }

.hw-pay > p { margin: 0; font-size: 13.5px; color: var(--ink-600); }

.hw-confirm {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 44px;
  background: var(--success-soft);
  border: 1px solid rgba(0,166,62,0.25);
  border-radius: var(--r-2xl);
}

.hw-confirm-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.hw-confirm-ic svg { width: 32px; height: 32px; }

.hw-confirm h4 { margin: 0; font-size: 22px; font-weight: 700; color: var(--success-deep); }

.hw-confirm > p { margin: 0; font-size: 15px; color: var(--ink-600); }

.hw-confirm-notes { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

.hw-confirm-note {
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  text-align: left;
}

.hw-confirm-note strong { display: block; font-size: 14px; color: var(--ink-900); margin-bottom: 2px; }

.hw-confirm-note span { font-size: 13px; color: var(--ink-600); }

.hw-contact {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hw-step--white .hw-contact { background: var(--cream-50); }

.hw-contact-ic {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.hw-contact-ic svg { width: 24px; height: 24px; }

.hw-contact h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink-900); }

.hw-contact-head p { margin: 2px 0 0; font-size: 13px; color: var(--ink-600); }

.hw-contact-rows { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line-200); padding-top: 16px; }

.hw-contact-kv { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.hw-contact-kv span { font-size: 13px; color: var(--ink-500); }

.hw-contact-kv strong { font-size: 14px; color: var(--ink-800); font-weight: 600; }

.hw-contact-kv strong.hw-num { font-family: var(--font-en); color: var(--olive-700); font-size: 16px; }

.hw-faqcats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.hw-faqcat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  box-shadow: var(--elev-1);
  transition: border-color .15s, transform .15s;
}

.hw-step--white .hw-faqcat { background: var(--cream-50); }

.hw-faqcat:hover { border-color: var(--olive-300); transform: translateY(-2px); }

.hw-faqcat strong { font-size: 15px; color: var(--ink-900); font-weight: 700; }

.hw-faqcat span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--olive-700);
  background: var(--cream-100);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

@media (max-width: 1100px) {
  .hw-ov-grid { grid-template-columns: repeat(2, 1fr); }
  .hw-cards--3, .hw-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .hw-faqcats { grid-template-columns: repeat(2, 1fr); }
  .hw-price-row { grid-template-columns: 1fr auto; }
  .hw-price-row .hw-price-desc { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hw-ov-grid { grid-template-columns: 1fr; }
  .hw-cards--2, .hw-cards--3, .hw-cards--4 { grid-template-columns: 1fr; }
  .hw-faqcats { grid-template-columns: 1fr; }
  .hw-step { padding: 64px 0; }
  .hw-step-head { gap: 14px; margin-bottom: 32px; }
  .hw-step-badge { width: 50px; height: 50px; font-size: 22px; }
  .hw-lead { padding: 32px 24px; }
  .hw-price-total strong { font-size: 22px; }
}


/* ============================================================
   FROM: faq.css
   ============================================================ */

.faq-search {
  max-width: 580px;
  margin: 30px auto 0;
  position: relative;
}

.faq-search svg {
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--ink-400);
  pointer-events: none;
}

.faq-search input {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0 24px 0 54px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-800);
  background: #fff;
  box-shadow: 0 18px 40px -16px rgba(16,24,40,0.4);
}

.faq-search input::placeholder { color: var(--ink-400); }

.faq-search input:focus { outline: none; box-shadow: 0 0 0 4px rgba(253,199,0,0.4), 0 18px 40px -16px rgba(16,24,40,0.4); }

.faq-stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.faq-stat,
.pt-hero-stat {
  min-width: 150px;
  padding: 18px 26px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  text-align: center;
}

.faq-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.faq-stat span { font-size: 12.5px; color: rgba(255,255,255,0.78); }

.faq-main { padding: 60px 0 88px; background: var(--cream-50); }

.faq-shell,
.cs-faq-shell { max-width: 880px; margin: 0 auto; }

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.faq-tab {
  height: 38px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-200);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}

.faq-tab span { color: var(--ink-400); font-weight: 500; margin-left: 5px; font-family: var(--font-en); }

.faq-tab:hover { border-color: var(--olive-300); }

.faq-tab.is-active { background: var(--olive-700); color: #fff; border-color: var(--olive-700); }

.faq-tab.is-active span { color: rgba(255,255,255,0.7); }

.faq-item {
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}

.faq-item[open] { border-color: var(--olive-300); box-shadow: var(--elev-2); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.faq-cat-pill {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--olive-700);
  background: var(--cream-100);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
}

.faq-q {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist-100);
  color: var(--ink-500);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .2s, color .2s;
}

.faq-arrow svg { width: 16px; height: 16px; }

.faq-item[open] .faq-arrow { transform: rotate(180deg); background: var(--olive-700); color: #fff; }

.faq-body {
  padding: 0 22px 22px 22px;
}

.faq-body p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-600);
  padding-left: 0;
}

.faq-body-inner {
  border-top: 1px dashed var(--line-300);
  padding-top: 16px;
}

.faq-tag {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--olive-700);
  background: var(--cream-100);
  padding: 4px 10px;
  border-radius: var(--r-md);
}

.faq-empty {
  display: none;
  text-align: center;
  padding: 56px 24px;
  color: var(--ink-500);
}

.faq-empty svg { width: 40px; height: 40px; color: var(--ink-400); margin-bottom: 12px; }

.faq-empty p { margin: 0; font-size: 15px; }

.faq-help { padding: 80px 0; background: var(--mist-50); }

.faq-help-head h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.faq-help-head p { color: var(--ink-600); font-size: 16px; margin: 0; }

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

/* 문의 채널 2종 — 3열 시절 카드 폭을 유지하며 가운데 정렬 */
.faq-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 820px; margin: 0 auto; }

.faq-contact {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.faq-contact-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}

.faq-contact-ic svg { width: 26px; height: 26px; }

.faq-contact h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink-900); }

.faq-contact > p { margin: 0; font-size: 13.5px; color: var(--ink-600); }

.faq-contact strong {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--olive-700);
  margin-top: 4px;
}

.faq-contact .faq-contact-note { font-size: 12.5px; color: var(--ink-500); }

.faq-contact a.cp-btn { margin-top: 10px; }

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

@media (max-width: 680px) {
  .faq-item summary { flex-wrap: wrap; }
  .faq-q { order: 3; flex-basis: 100%; }
  .faq-stats { gap: 10px; }
  .faq-stat { min-width: 130px; padding: 14px 18px; }
}


/* ============================================================
   FROM: cs.css
   ============================================================ */

.cs-hero-ctas,
.pt-hero-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

.cs-hero .cp-btn-outline,
.ap-hero .cp-btn-outline { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff; }

.cs-hero .cp-btn-outline:hover,
.ap-hero .cp-btn-outline:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: #fff; }

.cs-hero .cp-btn-primary,
.ap-hero .cp-btn-primary { background: #fff; color: var(--olive-900); }

.cs-hero .cp-btn-primary:hover,
.ap-hero .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }

.cs-sec { padding: 80px 0; }

.cs-head .ds-eyebrow { margin-bottom: 12px; }

.cs-head h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.cs-head p { color: var(--ink-600); font-size: 16px; margin: 0; }

.cs-values { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.cs-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--elev-1);
}

.cs-value svg { width: 16px; height: 16px; color: var(--olive-700); }

.cs-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 640px; margin: 0 auto; }

.cs-channel {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .15s, box-shadow .15s;
}

.cs-channel:hover { transform: translateY(-3px); box-shadow: var(--elev-3); }

.cs-channel-ic {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}

.cs-channel-ic svg { width: 25px; height: 25px; }

.cs-channel h4 { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink-900); }

.cs-channel-sub { margin: 0; font-size: 13px; color: var(--ink-500); }

.cs-channel-val {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--olive-700);
  margin: 4px 0 0;
  word-break: break-all;
}

.cs-channel-hours { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }

.cs-channel .cp-btn { margin-top: auto; }

.cs-grid2 { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: start; }

.cs-card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 32px;
}

.cs-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.cs-card-title svg { width: 22px; height: 22px; color: var(--olive-700); }

.cs-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  background: var(--cream-50);
  border: 1px solid var(--line-200);
}

.cs-hour-row.is-closed { opacity: 0.7; }

.cs-hour-day { font-size: 14px; font-weight: 700; color: var(--ink-800); }

.cs-hour-val { text-align: right; }

.cs-hour-val strong { display: block; font-family: var(--font-en); font-size: 15px; color: var(--olive-700); font-weight: 700; }

.cs-hour-val span { font-size: 12px; color: var(--ink-500); }

.cs-hour-val em { font-style: normal; font-size: 14px; font-weight: 600; color: var(--ink-400); }

.cs-loc-row { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }

.cs-loc-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.cs-loc-ic svg { width: 20px; height: 20px; }

.cs-loc-row h5 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: var(--ink-900); }

.cs-loc-row p { margin: 0; font-size: 13.5px; color: var(--ink-600); line-height: 1.6; }

.cs-loc-row .cs-transit { display: flex; flex-direction: column; gap: 6px; }

.cs-loc-row .cs-transit span { display: flex; align-items: center; gap: 8px; }

.cs-transit-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  color: #fff;
}

.cs-transit-badge.l2 { background: #00A84D; }

.cs-transit-badge.sb { background: #D4003B; }

.cs-map {
  margin-top: 22px;
  position: relative;
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(126,146,67,0.12), rgba(201,185,138,0.12)),
    repeating-linear-gradient(0deg, var(--line-200) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, var(--line-200) 0 1px, transparent 1px 40px),
    var(--mist-50);
  border: 1px solid var(--line-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--olive-700);
}

.cs-map-pin svg { width: 34px; height: 34px; filter: drop-shadow(0 6px 10px rgba(62,74,31,0.35)); }

.cs-map-pin span { font-size: 13px; font-weight: 700; color: var(--ink-800); background: rgba(255,255,255,0.9); padding: 4px 12px; border-radius: var(--r-pill); }

.cs-map a {
  position: absolute;
  right: 14px; bottom: 14px;
}

.cs-urgent {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  background: var(--danger-soft);
  border: 1px solid rgba(193,0,7,0.18);
}

.cs-urgent svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--danger); margin-top: 1px; }

.cs-urgent p { margin: 0; font-size: 13.5px; line-height: 1.6; color: #7A0A0A; }

.cs-faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }

.cs-faq-tab {
  height: 36px; padding: 0 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-200);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 13px; font-weight: 600; font-family: inherit;
}

.cs-faq-tab span { color: var(--ink-400); margin-left: 4px; font-family: var(--font-en); }

.cs-faq-tab.is-active { background: var(--olive-700); color: #fff; border-color: var(--olive-700); }

.cs-faq-tab.is-active span { color: rgba(255,255,255,0.7); }

.cs-qrows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.cs-qrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  box-shadow: var(--elev-1);
  transition: border-color .15s, transform .15s;
}

.cs-qrow:hover { border-color: var(--olive-300); transform: translateX(3px); }

.cs-qrow-q { flex: 1; font-size: 15px; font-weight: 600; color: var(--ink-800); }

.cs-qrow-meta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.cs-qrow-views { font-size: 12px; color: var(--ink-400); font-family: var(--font-en); display: inline-flex; align-items: center; gap: 5px; }

.cs-qrow-views svg { width: 14px; height: 14px; }

.cs-qrow-cat { font-size: 11.5px; font-weight: 700; color: var(--olive-700); background: var(--cream-100); padding: 4px 10px; border-radius: var(--r-pill); }

.cs-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-2);
  padding: 40px;
}

.cs-form-card .cp-btn { margin-top: 6px; }

select.cp-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236A7282' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.cs-quick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.cs-quick-card:hover { transform: translateY(-3px); box-shadow: var(--elev-3); border-color: var(--olive-300); }

.cs-quick-ic svg { width: 22px; height: 22px; }

.cs-quick-card h4 { margin: 4px 0 0; font-size: 16px; font-weight: 700; color: var(--ink-900); }

.cs-quick-card p { margin: 0; font-size: 13px; color: var(--ink-600); }

@media (max-width: 1000px) {
  .cs-grid2 { grid-template-columns: 1fr; }
  .cs-quick { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .cs-channels { grid-template-columns: 1fr; }
  .cs-quick { grid-template-columns: 1fr; }
  .cs-form-card { padding: 26px 20px; }
  .cp-field-row { grid-template-columns: 1fr; }
  .cs-qrow { flex-wrap: wrap; gap: 8px; }
  .cs-qrow-q { flex-basis: 100%; }
}


/* ============================================================
   FROM: partner.css
   ============================================================ */

.pt-hero .cp-btn-primary { background: #fff; color: var(--olive-900); }

.pt-hero .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }

.pt-hero .cp-btn-outline { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff; }

.pt-hero .cp-btn-outline:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: #fff; }

.pt-hero-stats {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px;
}

.pt-hero-stat strong { display: block; font-family: var(--font-en); font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }

.pt-hero-stat span { font-size: 12.5px; color: rgba(255,255,255,0.78); }

.pt-sec { padding: 88px 0; }
.pt-sec[id] { scroll-margin-top: 80px; }

.pt-head { text-align: center; margin-bottom: 52px; }

.pt-head .ds-eyebrow { margin-bottom: 12px; }

.pt-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.pt-head p { color: var(--ink-600); font-size: 16px; margin: 0 auto; max-width: 640px; line-height: 1.7; }

.pt-value {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .15s, box-shadow .15s;
}

.pt-sec--white .pt-value { background: var(--cream-50); }

.pt-value:hover { transform: translateY(-4px); box-shadow: var(--elev-3); }

.pt-value-ic {
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.pt-sec--white .pt-value-ic { background: var(--surface); }

.pt-value-ic svg { width: 27px; height: 27px; }

.pt-value h3 { margin: 4px 0 0; font-size: 19px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

.pt-value p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-600); }

.pt-intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }

.pt-intro h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; margin: 0 0 20px; line-height: 1.2; }

.pt-intro h2 em { font-style: normal; color: var(--olive-700); }

.pt-intro > p { font-size: 16px; line-height: 1.8; color: var(--ink-600); margin: 0 0 18px; }

.pt-intro-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }

.pt-intro-point { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: flex-start; }

.pt-intro-point-ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-100); color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.pt-intro-point-ic svg { width: 20px; height: 20px; }

.pt-intro-point h4 { margin: 3px 0 3px; font-size: 16px; font-weight: 700; color: var(--ink-900); }

.pt-intro-point p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-600); }

.pt-intro-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #E8E2D5, #C9B98A);
  box-shadow: 0 28px 64px -20px rgba(62,74,31,0.32);
}

.pt-intro-art img { width: 100%; height: 100%; object-fit: cover; }

.pt-intro-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px 20px 14px 14px;
  box-shadow: var(--elev-3);
}

.pt-intro-badge-ic svg { width: 20px; height: 20px; }

.pt-intro-badge span { display: block; font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

.pt-intro-badge strong { display: block; font-size: 16px; font-weight: 700; color: var(--ink-900); margin-top: 2px; }

.pt-pstep {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-sec--white .pt-pstep { background: var(--cream-50); }

.pt-pstep-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--olive-500);
  letter-spacing: 0.08em;
}

.pt-sec--white .pt-pstep-ic { background: var(--surface); }

.pt-pstep-ic svg { width: 23px; height: 23px; }

.pt-pstep h4 { margin: 4px 0 0; font-size: 17px; font-weight: 700; color: var(--ink-900); }

.pt-pstep p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

.pt-quals,
.pt-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pt-qual {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 34px;
}

.pt-qual-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }

.pt-qual-ic {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: var(--olive-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.pt-qual-ic svg { width: 25px; height: 25px; }

.pt-qual-head h3 { margin: 0; font-size: 20px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

.pt-qual-head p { margin: 2px 0 0; font-size: 13px; color: var(--ink-500); }

.pt-tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pt-tier--premium {
  background: linear-gradient(160deg, #4A5824 0%, #3E4A1F 100%);
  border-color: transparent;
  color: #fff;
}

.pt-tier-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700;
  background: var(--cream-100); color: var(--olive-900);
}

.pt-tier-badge svg { width: 15px; height: 15px; }

.pt-tier--premium .pt-tier-badge { background: rgba(253,199,0,0.18); color: #FDC700; }

.pt-tier-rate { font-family: var(--font-en); font-size: 13px; font-weight: 600; color: var(--ink-400); }

.pt-tier--premium .pt-tier-rate { color: rgba(255,255,255,0.6); }

.pt-tier h3 { margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink-900); }

.pt-tier--premium h3 { color: #fff; }

.pt-tier > p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-600); }

.pt-tier--premium > p { color: rgba(255,255,255,0.78); }

.pt-tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }

.pt-tier li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-700); line-height: 1.5; }

.pt-tier li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--olive-700); margin-top: 1px; }

.pt-tier--premium li { color: rgba(255,255,255,0.9); }

.pt-tier--premium li svg { color: #FDC700; }

.pt-benefit {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}

.pt-sec--white .pt-benefit { background: var(--cream-50); }

.pt-benefit-ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-100); color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}

.pt-sec--white .pt-benefit-ic { background: var(--surface); }

.pt-benefit-ic svg { width: 22px; height: 22px; }

.pt-benefit h4 { margin: 2px 0 0; font-size: 16px; font-weight: 700; color: var(--ink-900); }

.pt-benefit p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

.pt-apply { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 12px; }

.pt-astep {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 26px 20px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
}

.pt-sec--white .pt-astep { background: var(--cream-50); }

.pt-astep h4 { margin: 0; font-size: 16px; font-weight: 700; color: var(--ink-900); }

.pt-astep p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-600); }

@media (max-width: 1000px) {
  .pt-values { grid-template-columns: repeat(2, 1fr); }
  .pt-process { grid-template-columns: repeat(2, 1fr); }
  .pt-benefits { grid-template-columns: repeat(2, 1fr); }
  .pt-apply { grid-template-columns: repeat(2, 1fr); }
  .pt-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .pt-intro-art { max-width: 460px; }
  .pt-quals, .pt-tiers { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .pt-values, .pt-process, .pt-benefits, .pt-apply { grid-template-columns: 1fr; }
  .pt-sec { padding: 64px 0; }
  .pt-qual, .pt-tier { padding: 26px 22px; }
}


/* ============================================================
   FROM: pricing.html — 서비스 요금 (pr-*)
   Reuses tokens, .cp-btn, .pt-sec/.pt-head, .hw-checks/.hw-tags,
   .hw-pay, .faq-item, .cp-final. Adds pricing-specific components.
   ============================================================ */

/* hero CTAs reuse .cs-hero-ctas (white primary). pricing hero = .hw-hero .pr-hero */
.pr-hero .cp-btn-primary { background: #fff; color: var(--olive-900); }
.pr-hero .cp-btn-primary:hover { background: var(--cream-50); color: var(--olive-900); }
.pr-hero .cp-btn-outline { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff; }
.pr-hero .cp-btn-outline:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: #fff; }

/* ---- service plan cards ---- */
.pr-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pr-plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pr-plan.is-featured {
  border-color: var(--olive-500);
  box-shadow: 0 24px 56px -22px rgba(62,74,31,0.45);
}
.pr-plan-badge {
  position: absolute;
  top: -13px; left: 28px;
  display: inline-flex; align-items: center; gap: 5px;
  height: 26px; padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--olive-700);
  color: #fff;
  font-size: 12px; font-weight: 700;
  box-shadow: var(--elev-2);
}
.pr-plan-badge.is-pop { background: var(--warning-bright); color: #4A2E00; }
.pr-plan-ic {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}
.pr-plan-ic svg { width: 26px; height: 26px; }
.pr-plan h3 { margin: 0; font-size: 21px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.pr-plan-desc { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-600); }
.pr-plan-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line-200);
  border-bottom: 1px solid var(--line-200);
}
.pr-plan-price strong {
  font-family: var(--font-en);
  font-size: 32px; font-weight: 700;
  color: var(--olive-700);
  letter-spacing: -0.02em;
}
.pr-plan-price span { font-size: 13px; color: var(--ink-500); }
.pr-plan-incl { flex: 1; }
.pr-plan-meta { display: flex; flex-direction: column; gap: 8px; }
.pr-plan-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--cream-50);
  font-size: 13px;
}
.pr-plan-meta-row span { color: var(--ink-500); }
.pr-plan-meta-row strong { color: var(--ink-800); font-weight: 600; }

/* ---- rate blocks (sub-headed groups inside a section) ---- */
.pr-block { margin-top: 52px; }
.pr-block:first-child { margin-top: 0; }
.pr-block-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.01em; margin: 0 0 20px;
}
.pr-block-title::before { content: ""; width: 4px; height: 18px; border-radius: 2px; background: var(--olive-700); }

/* time-based rate rows */
.pr-rate-table {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  overflow: hidden;
}
.pr-raterow {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line-200);
}
.pr-raterow:last-child { border-bottom: 0; }
.pr-raterow-name { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.pr-raterow-cond { font-size: 13px; color: var(--ink-500); }
.pr-raterow-price { text-align: right; }
.pr-raterow-price strong { font-family: var(--font-en); font-size: 19px; font-weight: 700; color: var(--olive-700); }
.pr-raterow-price span { display: block; font-size: 12px; color: var(--ink-500); margin-top: 2px; }

/* addon/surcharge 3-card grids */
.pr-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* option cards */

/* discount cards */
/* note banner (reusable) */
.pr-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  background: var(--cream-50);
  border: 1px solid var(--line-200);
}
.pr-note svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--olive-700); margin-top: 1px; }
.pr-note p { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--ink-600); }
.pr-note strong { color: var(--ink-800); }

/* ---- calculator ---- */

/* summary card (sticky) */

/* ---- pricing FAQ (2-col) ---- */
.pr-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }

@media (max-width: 1000px) {
  .pr-plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pr-cards3 { grid-template-columns: repeat(2, 1fr); }
  .pr-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pr-cards3 { grid-template-columns: 1fr; }
  .pr-raterow { grid-template-columns: 1fr auto; }
  .pr-raterow-cond { grid-column: 1 / -1; }
}


/* ============================================================
   FROM: app-download.html / app-partner.html (ap-*)
   Reuses tokens, .cp-btn, .pt-sec/.pt-head, .hw-hero, .cp-final.
   ============================================================ */

/* hero store row + tabs */
.ap-hero .hw-hero-eyebrow { margin-bottom: 18px; }
.ap-stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.ap-store {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px;
  border-radius: 12px;
  background: #111418; color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform .15s, background .15s;
}
.ap-store:hover { transform: translateY(-2px); background: #000; }
.ap-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.ap-store-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ap-store-txt small { font-size: 10px; opacity: .8; font-weight: 500; }
.ap-store-txt strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* app-type tabs (segmented links) */
.ap-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 30px auto 0;
  padding: 5px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.ap-tab {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 22px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: background .15s, color .15s;
}
.ap-tab:hover { color: #fff; }
.ap-tab.is-active { background: #fff; color: var(--olive-900); }

/* featured download card */
.ap-feature-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-2);
  padding: 44px;
}
.ap-fc-ver {
  display: inline-flex; align-items: center;
  font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--olive-700); background: var(--cream-100);
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.ap-fc-info h2 { margin: 0 0 12px; font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.ap-fc-info > p { margin: 0 0 24px; font-size: 16px; line-height: 1.7; color: var(--ink-600); }
.ap-fc-stores { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.ap-fc-stats { display: flex; gap: 0; border-top: 1px solid var(--line-200); padding-top: 22px; }
.ap-fc-stat { flex: 1; display: flex; flex-direction: column; gap: 2px; position: relative; }
.ap-fc-stat + .ap-fc-stat { padding-left: 24px; border-left: 1px solid var(--line-200); margin-left: 24px; }
.ap-fc-stat strong { font-family: var(--font-en); font-size: 26px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.ap-fc-stat span { font-size: 13px; color: var(--ink-500); }

/* QR panel */
.ap-qr-panel {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 28px;
  background: var(--cream-50);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
}
.ap-qr {
  width: 168px; height: 168px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px;
  box-shadow: var(--elev-1);
}
.ap-qr svg { width: 100%; height: 100%; display: block; }
.ap-qr-cap { text-align: center; }
.ap-qr-cap strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink-900); }
.ap-qr-cap span { font-size: 12.5px; color: var(--ink-500); }
.ap-qr-os { display: flex; gap: 8px; }
.ap-qr-os span {
  font-size: 11px; font-weight: 700; color: var(--olive-700);
  background: var(--surface); border: 1px solid var(--line-200);
  padding: 4px 12px; border-radius: var(--r-pill);
}

/* features grid */
.ap-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ap-feature {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s, box-shadow .15s;
}
.pt-sec--white .ap-feature { background: var(--cream-50); }
.ap-feature:hover { transform: translateY(-4px); box-shadow: var(--elev-3); }
.ap-feature-ic {
  width: 50px; height: 50px;
  border-radius: var(--r-lg);
  background: var(--cream-100); color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}
.pt-sec--white .ap-feature-ic { background: var(--surface); }
.ap-feature-ic svg { width: 24px; height: 24px; }
.ap-feature h4 { margin: 2px 0 0; font-size: 16px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.ap-feature p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

/* system requirements */
.ap-sysreq { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ap-sys {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 34px;
}
.ap-sys-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.ap-sys-ic {
  width: 54px; height: 54px; border-radius: var(--r-lg);
  background: var(--ink-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ap-sys-ic svg { width: 28px; height: 28px; }
.ap-sys-head h3 { margin: 0; font-size: 20px; font-weight: 700; color: var(--ink-900); }
.ap-sys-head span { font-size: 13px; color: var(--ink-500); }
.ap-sys-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.ap-sys-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-200); }
.ap-sys-row:last-child { border-bottom: 0; }
.ap-sys-row span { font-size: 13.5px; color: var(--ink-500); }
.ap-sys-row strong { font-size: 14px; font-weight: 600; color: var(--ink-800); }

/* preview phones + update */
.ap-preview-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: center; }
.ap-phones { display: flex; gap: 18px; justify-content: center; }
.ap-phone {
  width: 200px;
  border-radius: 32px;
  background: #111418;
  padding: 10px;
  box-shadow: 0 30px 60px -24px rgba(16,24,40,0.5);
}
.ap-phone:nth-child(2) { margin-top: 28px; }
.ap-phone-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: var(--cream-100);
}
.ap-phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; border-radius: 10px; background: #111418; z-index: 2;
}
.ap-phone image-slot { width: 100%; height: 100%; display: block; }
.ap-update {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--elev-1);
  padding: 32px;
}
.ap-update-ver {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  color: var(--olive-700); background: var(--cream-100);
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 18px;
  white-space: nowrap;
}
.ap-update h3 { margin: 0 0 18px; font-size: 20px; font-weight: 700; color: var(--ink-900); }
.ap-update ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ap-update li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-700); }
.ap-update li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--olive-700); margin-top: 1px; }

/* final CTA store row (on olive cp-final) */
.ap-final-stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.ap-final-help { margin-top: 22px; font-size: 14px; }
.ap-final-help a { color: #FDC700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1000px) {
  .ap-features { grid-template-columns: repeat(2, 1fr); }
  .ap-feature-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .ap-sysreq { grid-template-columns: 1fr; }
  .ap-preview-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .ap-features { grid-template-columns: 1fr; }
  .ap-phone { width: 160px; }
  .ap-fc-stat strong { font-size: 22px; }
  .ap-store { height: 50px; padding: 0 16px; }
}


/* ============================================================
   FROM: terms.html / privacy.html / location.html (lg-*)
   Legal pages. Reuses .hw-hero, .ap-tabs, .pt-sec, .cp-btn, .cp-final.
   ============================================================ */
.lg-date {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 22px;
  padding: 7px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  font-size: 13px; color: rgba(255,255,255,0.9);
}
.lg-date svg { width: 15px; height: 15px; }
.lg-tabs { margin-top: 26px; flex-wrap: wrap; }

.lg-layout { display: grid; grid-template-columns: 270px 1fr; gap: 40px; align-items: start; }

/* TOC */
.lg-side {
  position: sticky; top: 96px;
  align-self: start;
  display: flex; flex-direction: column; gap: 16px;
}
.lg-meta {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 18px 20px;
}
.lg-meta-row { display: flex; align-items: center; gap: 12px; }
.lg-meta-ic {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: var(--r-lg);
  background: var(--cream-100); color: var(--olive-700);
  display: flex; align-items: center; justify-content: center;
}
.lg-meta-ic svg { width: 20px; height: 20px; }
.lg-meta-txt { display: flex; flex-direction: column; gap: 2px; }
.lg-meta-txt span { font-size: 12px; color: var(--ink-500); }
.lg-meta-txt strong { font-family: var(--font-en); font-size: 16px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.lg-toc {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 24px;
}
.lg-toc h4 {
  margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--olive-700); text-transform: uppercase;
}
.lg-toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; max-height: 60vh; overflow-y: auto; }
.lg-toc-list a {
  display: flex; gap: 9px;
  padding: 9px 12px; border-radius: var(--r-md);
  font-size: 13.5px; line-height: 1.45; color: var(--ink-600);
  transition: background .15s, color .15s;
}
.lg-toc-list a:hover { background: var(--cream-50); color: var(--olive-700); }
.lg-toc-list a.is-active { background: var(--cream-100); color: var(--olive-900); font-weight: 600; }
.lg-toc-list a b { font-family: var(--font-en); font-weight: 700; color: var(--olive-500); flex-shrink: 0; }

/* content */
.lg-content { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.lg-intro {
  background: var(--cream-50);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  padding: 26px 28px; margin-bottom: 10px;
}
.lg-intro h2 { margin: 0 0 8px; font-size: 22px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.lg-intro p { margin: 0; font-size: 14px; color: var(--ink-600); }
.lg-intro-meta { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; color: var(--ink-500); }
.lg-intro-meta strong { color: var(--ink-700); font-weight: 600; }

.lg-article {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 28px 30px;
  scroll-margin-top: 90px;
}
.lg-article-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lg-art-num {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: var(--r-md);
  background: var(--olive-700); color: #fff;
  font-family: var(--font-en); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.lg-article-head h3 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }
.lg-body { display: flex; flex-direction: column; gap: 14px; }
.lg-body p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--ink-700); }
.lg-sub {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--olive-900);
  margin: 4px 0 -4px;
}
.lg-sub::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--olive-500); }
.lg-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lg-list li {
  position: relative; padding-left: 18px;
  font-size: 14px; line-height: 1.7; color: var(--ink-600);
}
.lg-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--olive-300); }
.lg-list.is-num { counter-reset: lgc; }
.lg-list.is-num li { padding-left: 26px; }
.lg-list.is-num li::before { display: none; }
.lg-list.is-num li::after {
  counter-increment: lgc; content: counter(lgc);
  position: absolute; left: 0; top: 1px;
  font-family: var(--font-en); font-size: 11px; font-weight: 700; color: #fff;
  width: 18px; height: 18px; border-radius: 50%; background: var(--olive-500);
  display: flex; align-items: center; justify-content: center;
}

/* contact block */
.lg-contact {
  margin-top: 16px;
  background: linear-gradient(135deg, #5A6B2E 0%, #3E4A1F 100%);
  border-radius: var(--r-2xl);
  padding: 36px;
  color: #fff;
  text-align: center;
}
.lg-contact h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; }
.lg-contact > p { margin: 0 0 18px; font-size: 14.5px; color: rgba(255,255,255,0.82); }
.lg-contact-rows { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.lg-contact-kv { display: flex; flex-direction: column; gap: 2px; }
.lg-contact-kv span { font-size: 12px; color: rgba(255,255,255,0.6); }
.lg-contact-kv strong { font-family: var(--font-en); font-size: 16px; font-weight: 600; color: #FDC700; }
.lg-contact .cp-btn-primary { background: #fff; color: var(--olive-900); }
.lg-contact .cp-btn-primary:hover { background: var(--cream-50); }

@media (max-width: 900px) {
  .lg-layout { grid-template-columns: 1fr; }
  .lg-side { position: static; }
  .lg-toc-list { max-height: none; flex-direction: row; flex-wrap: wrap; }
  .lg-toc-list a { background: var(--cream-50); }
}
@media (max-width: 620px) {
  .lg-article { padding: 22px; }
  .lg-contact { padding: 28px 22px; }
  .lg-contact-rows { gap: 18px; }
}

/* ============================================================
   FROM: event.html (ev-*) — Events & Promotions
   Reuses tokens, .cp-btn, .hw-hero, .cs-head/.ds-eyebrow, .cp-final.
   ============================================================ */
/* ---- featured promo ---- */
/* ---- event cards grid ---- */
/* ---- target tracks ---- */
/* ---- notes ---- */

/* ---- list controls: tabs + filters ---- */
/* ---- type label + upcoming badge (extend ev-card) ---- */
/* ---- empty state ---- */
/* ---- pagination ---- */
/* ============================================================
   event-detail.html (evd-*) — banner hero + detail content
   ============================================================ */
/* detail body */
/* sidebar */

/* ============================================================
   Floating widget — promo popup + scroll-top + Kakao inquiry
   (site-wide, injected by site-chrome.js)
   ============================================================ */
.cp-fab-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

/* promo carousel */
.cp-fab-col { display: flex; flex-direction: column; gap: 12px; }

.cp-fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 0; padding: 0;
  box-shadow: var(--elev-2);
  transition: transform .15s ease, background .15s ease, opacity .2s ease, visibility .2s ease;
}

.cp-fab svg { width: 22px; height: 22px; }
.cp-fab:hover { transform: translateY(-2px); }

.cp-fab-top { background: var(--ink-900); color: #fff; opacity: 0; visibility: hidden; }
.cp-fab-top.is-visible { opacity: 1; visibility: visible; }
.cp-fab-top:hover { background: #000; }

.cp-fab-kakao { background: #FEE500; color: #3A1D1D; text-decoration: none; }
.cp-fab-kakao:hover { background: #F2D900; }

@media (max-width: 560px) {
  .cp-fab-wrap { right: 16px; bottom: 16px; gap: 10px; }
  .cp-fab { width: 48px; height: 48px; }

  /* Promo becomes a full-width bottom sheet with a peek carousel:
     the centre card is shown and its neighbours peek on each side. */
}

/* ============================================================
   TEMPORARY (pre-launch) — Kakao channel friend-add band (cp-kakao-band)
   index.html + header-nav pages, sits between header and hero. Remove at launch.
   ============================================================ */
.cp-kakao-band {
  background: #FFF3B8;
  border-bottom: 1px solid rgba(58,29,29,0.12);
}

.cp-kakao-band-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px;
}

.cp-kakao-band-badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEE500;
  color: #3A1D1D;
}

.cp-kakao-band-badge svg { width: 25px; height: 25px; }

.cp-kakao-band-copy { display: flex; flex-direction: column; gap: 7px; min-width: 0; word-break: keep-all; }

.cp-kakao-band-copy strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #3A1D1D;
}

.cp-kakao-band-copy strong em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cp-kakao-band-copy span {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(58,29,29,0.72);
}

.cp-kakao-band-cta {
  margin-left: auto;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  background: #3A1D1D;
  color: #FEE500;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(58,29,29,0.22);
  transition: transform .15s ease, background .15s ease;
}

.cp-kakao-band-cta:hover { background: #1F0F0F; transform: translateY(-1px); }

.cp-kakao-band-cta svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .cp-kakao-band-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 16px 20px;
  }
  .cp-kakao-band-copy { flex: 1 1 260px; }
  .cp-kakao-band-cta { margin-left: 0; }
}

@media (max-width: 620px) {
  .cp-kakao-band-badge { width: 40px; height: 40px; }
  .cp-kakao-band-badge svg { width: 21px; height: 21px; }
  .cp-kakao-band-copy span { font-size: 13px; }
  .cp-kakao-band-cta { width: 100%; justify-content: center; }
}
