/* SUNNY TOUR · Global styles — Deep Navy + Gold Monochrome */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* Primary: deep navy scale */
  --ink:#0A1628;
  --ink-2:#152845;
  --ink-3:#243B5F;
  --ink-4:#3A5580;
  --ink-soft:#4A6383;

  /* Neutral scale */
  --slate-50:#F8FAFC;
  --slate-100:#F1F4F9;
  --slate-200:#E4E9F2;
  --slate-300:#CBD5E1;
  --slate-500:#64748B;
  --slate-600:#475569;
  --line:#E4E9F2;
  --bg:#F8FAFC;
  --card:#FFFFFF;
  --muted:#64748B;

  /* Accent: single gold */
  --gold:#C8A24B;
  --gold-2:#A88235;
  --gold-3:#8B6A24;
  --gold-soft:#FBF6E8;
  --gold-line:#EBDDB8;

  /* Semantic (minimal use) */
  --ok:#0F766E;
  --warn:#B45309;
  --danger:#9F1239;
}
html, body {
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 76px;
}
.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hdr-logo { display: flex; align-items: center; gap: 12px; }
.hdr-logo .mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 900; font-size: 20px;
  letter-spacing: -1px;
  border: 1px solid var(--ink-2);
}
.hdr-logo .txt {
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.8px;
}
.hdr-logo .txt .accent { color: var(--gold-2); }

.hdr-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.hdr-nav a {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all .15s;
  position: relative;
}
.hdr-nav a:hover { color: var(--ink); background: var(--slate-100); }
.hdr-nav a.active {
  color: var(--ink);
}
.hdr-nav a.active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.hdr-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex;
  gap: 2px;
  background: var(--slate-100);
  padding: 3px;
  border-radius: 999px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 1px;
}
.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}
.hdr-reset {
  font-size: 10px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  font-weight: 700;
}
.hdr-reset:hover { color: var(--ink); border-color: var(--ink); }

.hdr-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hdr-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 4px 0; border-radius: 2px;
}

/* ===== Page container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 110px;
  color: #fff;
  background: linear-gradient(135deg, #0A1628 0%, #152845 60%, #1F3358 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(200,162,75,0.15), transparent 65%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.hero .tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(200,162,75,0.4);
  border-radius: 999px;
  background: rgba(200,162,75,0.08);
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 900px;
}
.hero h1 .gold { color: var(--gold); }
.hero .lead {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 30px;
}

/* Hero with background image */
.hero-photo {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 110px;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-photo .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.75) 55%, rgba(10,22,40,0.4) 100%);
  z-index: 1;
}
.hero-photo .container { position: relative; z-index: 2; width: 100%; }

/* Sections */
section.block {
  padding: 100px 32px;
}
section.block.dark {
  background: linear-gradient(135deg, #0A1628 0%, #152845 100%);
  color: #fff;
}
section.block.tint {
  background: var(--slate-50);
}
section.block.gold {
  background: linear-gradient(135deg, #FBF6E8 0%, #F5EAC7 100%);
}

.sec-label {
  display: inline-block;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  border-radius: 999px;
}
.dark .sec-label {
  color: var(--gold);
  background: rgba(200,162,75,0.1);
  border-color: rgba(200,162,75,0.3);
}
.sec-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.25;
}
.sec-title .gold { color: var(--gold-2); }
.dark .sec-title { color: #fff; }
.dark .sec-title .gold { color: var(--gold); }
.sec-lead {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 780px;
  margin-bottom: 50px;
  line-height: 1.75;
}
.dark .sec-lead { color: rgba(255,255,255,0.72); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Info cards - monochrome */
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(10,22,40,0.08); border-color: var(--gold-line); }
.info-card .num {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.8px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.info-card .num.gold { color: var(--gold-2); }
.info-card .cap {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.info-card .cap-lg {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.dark .info-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.dark .info-card .num { color: #fff; }
.dark .info-card .num.gold { color: var(--gold); }
.dark .info-card .cap, .dark .info-card .cap-lg { color: rgba(255,255,255,0.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.2px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: 0 12px 28px rgba(10,22,40,0.3); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-2); box-shadow: 0 12px 28px rgba(200,162,75,0.4); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.hdr-cta {
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px !important;
  border-radius: 999px;
  transition: all .15s;
}
.hdr-cta:hover {
  background: var(--gold-2) !important;
  transform: translateY(-1px);
}

/* Choice cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.choice-card {
  padding: 0;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink-2);
}
.choice-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.25); }
.choice-card .cc-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.choice-card .cc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.85) 100%);
}
.choice-card .cc-body {
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.choice-card .ico {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--gold);
}
.choice-card .lbl {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.choice-card h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
  color: #fff;
}
.choice-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.choice-card ul {
  list-style: none;
  margin-bottom: 26px;
}
.choice-card ul li {
  font-size: 13.5px;
  padding: 6px 0 6px 24px;
  position: relative;
  color: rgba(255,255,255,0.85);
}
.choice-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--gold);
  font-weight: 900;
}
.choice-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 13px;
  align-self: flex-start;
  transition: gap .2s;
}
.choice-card:hover .cta { gap: 14px; }

.choice-card.featured {
  background: linear-gradient(160deg, #152845, #0A1628);
  border-color: var(--gold-3);
}

/* Compare Before/After */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.compare .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  font-weight: 900;
}
.compare-card {
  padding: 32px 30px;
  border-radius: 16px;
}
.compare-card.before {
  background: var(--slate-100);
  color: var(--ink-soft);
  border: 1px solid var(--slate-200);
}
.compare-card.after {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink-2);
}
.compare-card .head {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.65;
}
.after .head { color: var(--gold); opacity: 1; }
.compare-card h4 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.compare-card ul { list-style: none; }
.compare-card ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 14px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.after ul li { border-bottom-color: rgba(255,255,255,0.08); }
.compare-card ul li:last-child { border-bottom: none; }
.compare-card.before ul li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 10px;
  color: var(--danger);
  font-weight: 900;
}
.compare-card.after ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  color: var(--gold);
  font-weight: 900;
}

/* Money Flow Diagram */
.moneyflow {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(10,22,40,0.06);
}
.mf-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  color: var(--ink);
  text-align: center;
}
.mf-nodes {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.mf-node {
  padding: 24px 20px;
  border-radius: 14px;
  text-align: center;
  background: var(--slate-50);
  border: 1px solid var(--line);
}
.mf-node.emphasize {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink-2);
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(10,22,40,0.2);
}
.mf-node .ico {
  font-size: 32px;
  margin-bottom: 8px;
}
.mf-node .role {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mf-node.emphasize .role { color: var(--gold); }
.mf-node h6 {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}
.mf-node.emphasize h6 { color: #fff; }
.mf-node .amount {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-3);
  padding: 3px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  margin-top: 4px;
}
.mf-node.emphasize .amount {
  background: var(--gold);
  color: var(--ink);
}
.mf-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
}
.mf-arrow .arr {
  font-size: 22px;
  color: var(--gold);
}
.mf-arrow .label {
  margin-top: 4px;
  padding: 3px 8px;
  background: var(--gold-soft);
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
}
.mf-summary {
  padding: 18px 24px;
  background: var(--slate-50);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.mf-summary b { color: var(--ink); }

/* Country grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.country-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  transition: all .2s;
}
.country-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10,22,40,0.08); border-color: var(--gold-line); }
.country-card .flag { font-size: 40px; margin-bottom: 12px; }
.country-card .name { font-weight: 900; font-size: 16px; margin-bottom: 4px; }
.country-card .partner { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.status {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border: 1px solid;
}
.status.active { background: rgba(15,118,110,0.08); color: var(--ok); border-color: rgba(15,118,110,0.2); }
.status.coming { background: rgba(180,83,9,0.08); color: var(--warn); border-color: rgba(180,83,9,0.2); }
.channel {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.channel a {
  flex: 1;
  padding: 6px 8px;
  background: var(--slate-50);
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.channel a.disabled { opacity: 0.5; cursor: not-allowed; }

/* Diagram - 3-way */
.diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.diagram .node {
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
}
.diagram .node.center {
  background: var(--ink);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 20px 44px rgba(10,22,40,0.25);
  border-color: var(--ink-2);
}
.diagram .node .role {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--muted);
}
.diagram .node.center .role { color: var(--gold); }
.diagram .node h5 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.diagram .node.center h5 { color: #fff; }
.diagram .node p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.diagram .node.center p { color: rgba(255,255,255,0.75); }
.diagram .arrow {
  color: var(--gold);
  font-size: 26px;
  font-weight: 900;
}

/* Benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: all .2s;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: 0 16px 40px rgba(10,22,40,0.08); }
.benefit-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--gold-line);
}
.benefit-card h5 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.benefit-card .metric {
  background: var(--slate-100);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid var(--line);
}

/* Form */
.form-block {
  background: #fff;
  border-radius: 20px;
  padding: 44px 38px;
  border: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(10,22,40,0.06);
}
.form-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--slate-100);
  padding: 4px;
  border-radius: 12px;
}
.form-tabs button {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-weight: 900;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all .15s;
}
.form-tabs button.active {
  background: var(--ink);
  color: #fff;
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,75,0.15);
}
.checkgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checkgroup label {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.checkgroup input { display: none; }
.checkgroup label:has(input:checked) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  border: none;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s;
}
.form-submit:hover { transform: translateY(-2px); background: var(--ink-2); }
.form-submit.gold { background: var(--gold); color: var(--ink); }
.form-submit.gold:hover { background: var(--gold-2); }
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* Notice box */
.notice {
  padding: 22px 26px;
  border-radius: 14px;
  margin: 20px 0;
  font-size: 14.5px;
  line-height: 1.75;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  color: var(--gold-3);
}
.notice b { color: var(--ink); }
.notice.dark {
  background: var(--ink);
  border-left-color: var(--gold);
  color: rgba(255,255,255,0.9);
}
.notice.dark b { color: var(--gold); }
.notice.warn {
  background: rgba(159,18,57,0.06);
  border-left-color: var(--danger);
  color: #7C1D3F;
}
.notice.warn b { color: var(--danger); }

/* Dashboard mockup */
.dash {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,22,40,0.15);
}
.dash .browser-bar {
  background: var(--slate-100);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.dash .browser-bar span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--slate-300);
}
.dash .browser-bar .url {
  flex: 1;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  margin-left: 12px;
  font-family: "SF Mono", monospace;
}
.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
}
.dash-side {
  background: var(--ink);
  color: #fff;
  padding: 24px 18px;
}
.dash-side .side-item {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  margin-bottom: 4px;
}
.dash-side .side-item.active {
  background: rgba(200,162,75,0.15);
  color: var(--gold);
  border-left: 2px solid var(--gold);
}
.dash-main { padding: 28px; background: var(--slate-50); }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.dash-kpi {
  background: #fff;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.dash-kpi .k { font-size: 22px; font-weight: 900; color: var(--ink); letter-spacing: -0.7px; }
.dash-kpi .k.gold { color: var(--gold-2); }
.dash-kpi .l { font-size: 11px; color: var(--muted); font-weight: 700; margin-top: 4px; }
.dash-chart {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.dash-bar {
  flex: 1;
  background: linear-gradient(to top, var(--ink), var(--ink-3));
  border-radius: 4px 4px 0 0;
  opacity: 0.9;
  position: relative;
}
.dash-bar:last-child {
  background: linear-gradient(to top, var(--gold-2), var(--gold));
}

/* Split layout */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-2 .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,22,40,0.15);
}
.split-2 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Ban section (B2C prohibition) */
.ban-box {
  background: linear-gradient(135deg, #0A1628, #152845);
  color: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  border: 2px solid var(--gold-3);
  position: relative;
  overflow: hidden;
}
.ban-box::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,162,75,0.2), transparent 70%);
  border-radius: 50%;
}
.ban-box .stamp {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  border-radius: 4px;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.ban-box h3 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.ban-box h3 .gold { color: var(--gold); }
.ban-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 720px;
  position: relative;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}
.trust-strip .ts-item {
  color: #fff;
  padding-left: 28px;
  position: relative;
}
.trust-strip .ts-item::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--gold);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}
.trust-strip .ts-title {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2px;
}
.trust-strip .ts-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 70px 32px 30px;
  border-top: 2px solid var(--gold);
}
.site-footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.site-footer h6 {
  font-size: 12px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; }
.site-footer ul li {
  padding: 6px 0;
  font-size: 13px;
}
.site-footer ul li a { color: rgba(255,255,255,0.75); }
.site-footer ul li a:hover { color: var(--gold); }
.site-footer .ftr-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.site-footer .ftr-brand .mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(200,162,75,0.15);
  border: 1px solid rgba(200,162,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 900; font-size: 20px;
}
.site-footer .ftr-brand .txt { font-weight: 900; font-size: 20px; color: #fff; }
.site-footer .ftr-brand .txt .accent { color: var(--gold); }
.site-footer .desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.65); }
.site-footer .medi-sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2.5px;
}
.ftr-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.8;
}
.ftr-bottom a { color: rgba(255,255,255,0.7); margin: 0 10px; }
.ftr-bottom a:hover { color: var(--gold); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  z-index: 999;
  border: 1px solid var(--gold-3);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Feature image showcase */
.feature-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,22,40,0.15);
  position: relative;
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(10,22,40,0.9));
  color: #fff;
  padding: 40px 30px 24px;
}
.feature-photo .caption h5 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.feature-photo .caption p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 960px) {
  .hdr-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--line); }
  .hdr-nav.open { display: flex; }
  .hdr-hamburger { display: block; }
  .hdr-right .hdr-cta, .hdr-right .hdr-reset { display: none; }
  .grid-2, .grid-3, .grid-4, .choice-grid, .diagram, .country-grid, .benefit-grid, .compare, .split-2, .form-row, .dash-body, .mf-nodes, .trust-strip { grid-template-columns: 1fr !important; }
  .diagram .arrow, .compare .arrow, .mf-arrow { transform: rotate(90deg); }
  .site-footer .inner { grid-template-columns: 1fr; gap: 30px; }
  .hero, .hero-photo, section.block { padding: 70px 24px; }
  .container { padding: 0 20px; }
  .form-block { padding: 30px 22px; }
  .ban-box { padding: 32px 24px; }
  .ban-box h3 { font-size: 24px; }
}
