:root {
  --bg: #f6f9fd;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --section-alt: #eef4fb;
  --line: #dfe7f2;
  --line-strong: #ced9e8;
  --text: #1b2a3e;
  --text-2: #50627a;
  --text-3: #7e90a9;
  --navy: #14263f;
  --navy-2: #1a3150;
  --brand: #2f67d8;
  --brand-2: #2457bf;
  --brand-soft: #eaf1ff;
  --gold: #c89f42;
  --gold-soft: #fff8e6;
  --success: #2fa866;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 14px rgba(17, 39, 67, 0.06);
  --shadow-md: 0 12px 28px rgba(17, 39, 67, 0.08);
  --shadow-lg: 0 18px 45px rgba(17, 39, 67, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 16px;
}

.section-alt {
  background: var(--section-alt);
  border-top: 1px solid rgba(207, 219, 234, 0.55);
  border-bottom: 1px solid rgba(207, 219, 234, 0.55);
}

section {
  padding: 34px 0;
}

.section-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-title::after {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand);
  margin: 10px auto 0;
  opacity: .9;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,38,63,.08);
}
.top-bar-content {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo { width: 72px; height: auto; object-fit: contain; }
.brand-text {
  font-size: 13px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-2);
  font-size: 11px;
  border: 1px solid rgba(20,38,63,.12);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.security-badge svg { color: var(--brand); }

.hero-section {
  position: relative;
  background: #f7fbff;
  overflow: hidden;
  padding: 20px 0 28px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 90% 10%, rgba(47,103,216,.10), transparent 70%),
    radial-gradient(60% 50% at 10% 0%, rgba(20,38,63,.04), transparent 75%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background: radial-gradient(60% 70% at 100% 0%, rgba(47,103,216,.16), transparent 65%), radial-gradient(40% 40% at 0% 20%, rgba(20,38,63,.06), transparent 70%);
}
.hero-section .container { position: relative; z-index: 1; }
.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.96));
  border: 1px solid rgba(206,217,232,.9);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px 14px 14px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero-title {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.hero-subtitle {
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--text-2);
  max-width: 540px;
}
.hero-offer {
  width: min(100%, 310px);
  margin: 14px auto 0;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid rgba(47,103,216,.18);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(36,87,191,.08);
  padding: 10px 12px;
}
.offer-badge {
  display: block;
  color: var(--brand-2);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
}
.offer-note {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-3);
}
.hero-secondary-hint {
  margin: 10px auto 0;
  font-size: 11px;
  color: var(--text-3);
  max-width: 330px;
}
.hero-cta-group { margin-top: 12px; }
.hero-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  font-size: 11px;
  color: var(--text-3);
}
.text-link:hover { color: var(--brand); }
.separator { opacity: .45; }

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 48px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-large { min-height: 50px; }
.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 20px rgba(47,103,216,.22);
}
.btn-primary:hover { filter: brightness(.98); }
.btn-secondary {
  background: rgba(255,255,255,.02);
  color: #eef4ff;
  border-color: rgba(214,227,255,.35);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(206,217,232,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.cards-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.process-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
}
.card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(47,103,216,.12);
}
.process-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
}
.process-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.45;
}

.vip-section { padding-top: 18px; }
.vip-card {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(200,159,66,.12), transparent 60%),
    linear-gradient(180deg, #fffdfa, #ffffff);
  border: 1px solid rgba(200,159,66,.45);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(130,100,40,.08);
  padding: 14px;
}
.vip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.vip-icon {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  border: 1px solid rgba(200,159,66,.25);
  flex-shrink: 0;
}
.vip-header h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #705119;
  font-weight: 800;
}
.vip-content p {
  margin: 0;
  color: #6a5a33;
  font-size: 13px;
}
.vip-note {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(200,159,66,.12);
  border: 1px solid rgba(200,159,66,.22);
  color: #86611d;
  font-size: 11px;
  font-weight: 700;
}

.benefits-section { padding-top: 26px; }
.benefit-card {
  position: relative;
  padding: 14px 14px 12px;
  border-color: rgba(206,217,232,.9);
  box-shadow: var(--shadow-md);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--brand), #78a8ff);
}
.benefit-header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.benefit-header h3 {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 700;
}
.benefit-icon {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(47,103,216,.14);
}
.benefit-value {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--brand-2);
  font-weight: 800;
}
.benefit-desc {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-2);
}
.benefit-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-3);
}

.why-card { padding: 8px; }
.why-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.why-list li {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
  padding-left: 15px;
  position: relative;
}
.why-list li::before {
  content: '•';
  position: absolute;
  left: 1px;
  top: -1px;
  color: var(--brand);
  font-weight: 900;
}
.why-list strong { color: var(--navy); }

.faq-section {
  background: #fff;
  border-top: 1px solid rgba(206,217,232,.4);
  border-bottom: 1px solid rgba(206,217,232,.4);
}
.accordion { display: grid; gap: 10px; }
.accordion-item {
  background: #fff;
  border: 1px solid rgba(206,217,232,.85);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: #fff;
  color: var(--navy);
  text-align: left;
  padding: 14px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.accordion-header:hover { background: #fbfdff; }
.chevron { color: var(--text-3); transition: transform .2s ease; flex-shrink: 0; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: #fbfdff;
  border-top: 1px solid rgba(206,217,232,.55);
}
.accordion-content p {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}
.accordion-item.active {
  border-color: rgba(47,103,216,.22);
  box-shadow: 0 12px 26px rgba(17,39,67,.08);
}
.accordion-item.active .accordion-header { color: var(--brand-2); }
.accordion-item.active .chevron {
  color: var(--brand);
  transform: rotate(180deg);
}

.process-note-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.process-note-item {
  padding: 14px;
  border-right: 1px solid rgba(206,217,232,.65);
  border-bottom: 1px solid rgba(206,217,232,.65);
}
.process-note-item:nth-child(2n) { border-right: 0; }
.process-note-item:nth-last-child(-n+2) { border-bottom: 0; }
.process-note-item h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 800;
}
.process-note-item p {
  margin: 0;
  color: var(--text-2);
  font-size: 12px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.payment-item {
  min-height: 52px;
  background: #fff;
  border: 1px solid rgba(206,217,232,.8);
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.payment-item img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}
.payment-item:nth-child(2) img { max-height: 30px; }
.payment-note {
  margin: 10px auto 0;
  text-align: center;
  color: var(--text-3);
  font-size: 12px;
  max-width: 720px;
}

.status-section {
  padding-top: 18px;
  padding-bottom: 26px;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(206,217,232,.85);
  box-shadow: var(--shadow-sm);
  width: 100%;
  justify-content: center;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(47,168,102,.12);
  flex-shrink: 0;
}
.status-text {
  color: var(--text-2);
  font-size: 12px;
  text-align: center;
}

.main-footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0f1f34 100%);
  color: #d7e3f7;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 26px 0 90px;
}
.footer-container {
  display: grid;
  gap: 14px;
}
.footer-brand-row {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
.footer-logo { width: 86px; filter: saturate(.9) brightness(1.02); }
.footer-desc {
  margin: 0;
  color: rgba(215,227,247,.78);
  font-size: 12px;
  max-width: 720px;
}
.footer-partners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 8px;
  align-items: center;
  opacity: .5;
}
.footer-partners img {
  height: 14px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(0.5) brightness(1);
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #edf3ff;
  flex-wrap: wrap;
}
.footer-links a:hover { color: #fff; }
.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  border: 1px solid rgba(215,227,247,.18);
  color: rgba(240,246,255,.9);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  background: rgba(255,255,255,.02);
}
.copyright {
  margin: 0;
  text-align: center;
  color: rgba(215,227,247,.58);
  font-size: 11px;
}

.sticky-footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: rgba(20,38,63,.95);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform .22s ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.sticky-footer.visible { transform: translateY(0); }
.sticky-container {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}
.btn-sticky-left, .btn-sticky-right { min-height: 46px; }
.btn-sticky-left {
  background: rgba(255,255,255,.03);
  color: #f3f7ff;
  border: 1px solid rgba(215,227,247,.18);
}
.btn-sticky-right {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
}

@media (min-width: 768px) {
  section { padding: 44px 0; }
  .container { padding: 0 20px; }
  .brand-logo { width: 92px; }
  .brand-text { font-size: 14px; }
  .security-badge { font-size: 12px; padding: 5px 10px; }

  .hero-section { padding: 34px 0 38px; }
  .hero-panel { padding: 24px 24px 18px; border-radius: 20px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 14px; margin-top: 12px; }
  .hero-offer { width: 360px; margin-top: 16px; }
  .offer-badge { font-size: 17px; }
  .hero-secondary-hint { max-width: 520px; font-size: 12px; margin-top: 12px; }
  .hero-cta-group { margin-top: 14px; max-width: 420px; margin-left: auto; margin-right: auto; }

  .section-title { font-size: 28px; margin-bottom: 20px; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-card { min-height: 150px; padding: 16px; }
  .benefit-card { padding: 16px; }
  .benefit-value { font-size: 34px; }

  .why-card { padding: 18px; }
  .why-list { grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }

  .payment-grid { grid-template-columns: repeat(4, 1fr); }
  .payment-item { min-height: 45px; }

  .footer-logo { width: 100px; }
  .footer-desc { font-size: 12px; }
  .footer-partners img { height: 26px; }

  .sticky-footer { display: none; }
  .main-footer { padding-bottom: 28px; }
}

@media (max-width: 767px) {
  .hero-bg {
    opacity: .16;
  }
  .top-bar-content { padding-left: 10px; padding-right: 10px; }
  .brand-text { max-width: 140px; }
  .benefit-value { font-size: 23px; }
  .process-note-grid { grid-template-columns: 1fr; }
  .process-note-item { border-right: 0 !important; }
  .process-note-item:not(:last-child) { border-bottom: 1px solid rgba(206,217,232,.65); }
}

body { background: #ffffff; }
section { padding: 38px 0; }
.process-section, .vip-section, .benefits-section, .faq-section, .process-note-section, .status-section { background: #fff; }
.assurance-section, .payment-section { background: linear-gradient(180deg, #f7fbff 0%, #f1f6fd 100%); }

.hero-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
  padding: 18px 0 30px;
}
.hero-section::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(245,250,255,.90)),
    radial-gradient(70% 65% at 12% 2%, rgba(26,49,80,.05), transparent 72%);
}
.hero-bg {
  opacity: 1 !important;
  background-image:
    linear-gradient(90deg, rgba(247,251,255,.96) 0%, rgba(247,251,255,.92) 42%, rgba(247,251,255,.78) 65%, rgba(247,251,255,.86) 100%),
    url('logo/hero-bg-desktop.png');
  background-size: cover, cover;
  background-position: center center, 72% center;
  background-repeat: no-repeat;
  filter: saturate(.95) contrast(1.02);
}
.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.95));
  border: 1px solid rgba(206,217,232,.78);
  box-shadow: 0 18px 40px rgba(17, 39, 67, 0.10), 0 1px 0 rgba(255,255,255,.65) inset;
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 90% at 50% 0%, rgba(255,255,255,.55), transparent 65%);
  pointer-events: none;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,38,63,.08);
  background: rgba(255,255,255,.7);
  color: var(--text-2);
  font-size: 15px;
  font-weight: 700;
}

.hero-title { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-subtitle { max-width: 600px; line-height: 1.55; }
.hero-offer {
  width: min(100%, 360px);
  padding: 12px 14px;
  border: 1px solid rgba(47,103,216,.14);
  box-shadow: 0 14px 28px rgba(36,87,191,.10), 0 1px 0 rgba(255,255,255,.7) inset;
}
.offer-badge { font-size: 16px; }
.offer-note { font-size: 11px; line-height: 1.35; }
.hero-secondary-hint { max-width: 560px; font-size: 11.5px; }
.hero-trust-row {
  margin: 12px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 620px;
}
.trust-pill {
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(20,38,63,.07);
  color: var(--text-2);
  font-size: 11px;
  padding: 5px 9px;
  font-weight: 600;
}

.cards-grid.assurance-grid { grid-template-columns: 1fr; }
.assurance-card {
  padding: 14px;
  border: 1px solid rgba(206,217,232,.6);
  box-shadow: 0 8px 20px rgba(17,39,67,.05);
}
.assurance-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 15px; }
.assurance-card p { margin: 0; color: var(--text-2); font-size: 13px; line-height: 1.5; }

.process-card, .assurance-card, .why-card, .process-note-grid.card {
  border-color: rgba(208,218,232,.66);
  box-shadow: 0 8px 22px rgba(17,39,67,.05);
}
.card-icon {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #f5f9ff, #ebf2ff);
}
.vip-card {
  padding: 16px;
  box-shadow: 0 14px 30px rgba(130,100,40,.08);
}
.vip-content p { line-height: 1.55; }
.vip-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #6a5a33;
  font-size: 12px;
  display: grid;
  gap: 5px;
}

.benefit-card {
  border-color: rgba(188,207,236,.72);
  box-shadow: 0 12px 28px rgba(17,39,67,.07);
  background: linear-gradient(180deg, #fff, #fcfdff);
}
.benefit-desc { line-height: 1.5; }
.why-section { background: #fff; }
.why-card { padding: 16px; }
.why-list li { font-size: 13px; }

.faq-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fc 100%);
}
.accordion-item {
  border-color: rgba(206,217,232,.65);
  box-shadow: 0 8px 18px rgba(17,39,67,.04);
}
.accordion-header { padding: 15px 14px; }
.accordion-content { background: #fff; }
.accordion-item.active .accordion-content {
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.process-note-grid { border-radius: 16px; }
.process-note-item { min-height: 110px; }
.payment-item {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-color: rgba(206,217,232,.7);
}
.status-indicator {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-color: rgba(206,217,232,.7);
}

.main-footer {
  background: linear-gradient(180deg, #172b47 0%, #12223a 60%, #0f1d32 100%);
}
.footer-container { gap: 16px; }
.footer-brand-row { gap: 10px; }
.footer-desc { line-height: 1.6; max-width: 760px; }
.footer-partners { opacity: 1; }
.footer-links { row-gap: 6px; }
.sticky-footer {
  background: rgba(18,34,58,.96);
  box-shadow: 0 -10px 30px rgba(8,16,28,.22);
}
.btn-sticky-left {
  background: rgba(255,255,255,.04);
  border-color: rgba(215,227,247,.16);
}
.btn-sticky-right {
  box-shadow: 0 10px 20px rgba(47,103,216,.24);
}

.subpage-body {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%);
}
.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 18px 16px 40px;
}
.page-hero {
  margin-top: 8px;
  border: 1px solid rgba(206,217,232,.75);
  border-radius: 16px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,252,255,.95));
  box-shadow: var(--shadow-md);
}
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}
.page-hero p {
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.legal-layout {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.legal-card {
  background: #fff;
  border: 1px solid rgba(206,217,232,.75);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 14px;
}
.legal-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}
.legal-card h3 {
  margin: 12px 0 6px;
  color: var(--navy);
  font-size: 14px;
}
.legal-card p, .legal-card li {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.6;
}
.legal-card ul, .legal-card ol { margin: 8px 0 0; padding-left: 18px; }
.legal-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.meta-item {
  border-radius: 12px;
  border: 1px solid rgba(206,217,232,.7);
  background: #fbfdff;
  padding: 10px 12px;
}
.meta-item .label {
  display: block;
  color: var(--text-3);
  font-size: 11px;
  margin-bottom: 3px;
}
.meta-item .value {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.contact-panel {
  border: 1px solid rgba(206,217,232,.75);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 14px;
}
.contact-panel h2 { margin: 0 0 8px; font-size: 16px; color: var(--navy); }
.contact-panel p, .contact-panel li { margin: 0; font-size: 13px; color: var(--text-2); line-height: 1.6; }
.contact-panel ul { margin: 8px 0 0; padding-left: 18px; display: grid; gap: 6px; }
.notice-box {
  border-radius: 12px;
  border: 1px solid rgba(47,103,216,.16);
  background: linear-gradient(180deg, #f5f9ff, #fbfdff);
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.55;
}
.table-lite {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.table-lite th, .table-lite td {
  border: 1px solid rgba(206,217,232,.65);
  padding: 9px 10px;
  text-align: left;
  font-size: 12px;
  color: var(--text-2);
  vertical-align: top;
}
.table-lite th { color: var(--navy); background: #f7fbff; font-weight: 700; }

@media (min-width: 768px) {
  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(247,251,255,.94) 0%, rgba(247,251,255,.86) 40%, rgba(247,251,255,.66) 68%, rgba(247,251,255,.84) 100%),
      url('logo/hero-bg-desktop.png');
    background-position: center center, 76% center;
  }
  .hero-panel { max-width: 760px; padding: 26px 26px 20px; }
  .hero-kicker { font-size: 12px; }
  .hero-trust-row { gap: 8px; margin-top: 14px; }
  .trust-pill { font-size: 11px; padding: 6px 10px; }
  .cards-grid.assurance-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .legal-layout { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .legal-meta { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .page-shell { padding: 26px 20px 46px; }
  .page-hero { padding: 22px 20px; }
  .page-hero h1 { font-size: 28px; }
}

@media (max-width: 767px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(247,251,255,.94) 0%, rgba(247,251,255,.88) 38%, rgba(247,251,255,.73) 65%, rgba(247,251,255,.90) 100%),
      url('logo/hero-bg-mobile.png');
    background-size: cover, cover;
    background-position: center center, center 70%;
    filter: saturate(.9);
  }
  .hero-panel { padding: 16px 13px 14px; }
  .hero-kicker { margin-bottom: 7px; }
  .hero-title { font-size: 22px; }
  .hero-subtitle { font-size: 12.5px; }
  .hero-offer { width: min(100%, 330px); }
  .hero-trust-row { margin-top: 10px; gap: 5px; }
  .trust-pill { font-size: 10.5px; padding: 4px 8px; }
  .section-title { font-size: 22px; }
  .benefit-value { font-size: 22px; }
}

.slogan-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rich-blue-text {
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(to bottom, #00c3ff 0%, #0077ff 50%, #0044aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.1));
}

.deep-logic-dot {
    width: 5px;
    height: 5px;
    background-color: #003366;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.deep-logic-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: #0077ff;
    animation: blue-aura 2s infinite ease-out;
}

@keyframes blue-aura {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}