/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

:root {
  --navy: #0E2A5A;
  --navy-2: #173B7A;
  --blue: #1E5BB8;
  --blue-2: #2E6FD6;
  --sky: #EBF2FC;
  --sky-2: #DCE8F8;
  --paper: #F7FAFD;
  --ink: #1A2233;
  --ink-2: #41506A;
  --muted: #6B7790;
  --line: #E3EAF3;
  --line-2: #CCD8EA;
  --gold: #C9A65B;
  --maxw: 1120px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(14,42,90,.06), 0 2px 8px rgba(14,42,90,.05);
  --shadow: 0 4px 14px rgba(14,42,90,.08), 0 18px 40px -16px rgba(14,42,90,.18);
  --shadow-lg: 0 6px 24px rgba(14,42,90,.10), 0 32px 80px -24px rgba(14,42,90,.22);
}

/* ---------- Container & helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: #fff; }
.section--sky {
  background: linear-gradient(180deg, var(--sky) 0%, #ffffff 100%);
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .18em; font-weight: 600;
  color: var(--blue); text-transform: uppercase;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--blue);
}
.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  color: var(--navy);
  margin: 14px 0 12px;
}
.section-lead {
  color: var(--ink-2);
  max-width: 720px;
  margin: 0;
  font-size: 15px;
}
.section-sublead {
  color: var(--ink-2);
  max-width: 800px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
}
.section--navy .section-title { color: #fff; }
.section--navy .section-lead { color: rgba(255,255,255,.78); }
.section--navy .eyebrow { color: #9DC1FF; }
.section--navy .eyebrow::before { background: #9DC1FF; }

.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { padding-left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 700;
  font-family: "Inter", sans-serif; font-size: 14px; letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  font-weight: 700; font-size: 15px; letter-spacing: .04em;
}
.brand-text small { display: block; font-weight: 500; font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: 13.5px; color: var(--ink-2); text-decoration: none; }
.nav a:hover { color: var(--blue); }
.nav .btn { padding: 9px 16px; font-size: 13px; }
@media (max-width: 880px) {
  .nav a:not(.btn) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(30,91,184,.55), inset 0 -2px 0 rgba(0,0,0,.06);
}
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(14,42,90,.55); }
.btn-secondary {
  background: #fff; color: var(--navy);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 18px 34px; font-size: 16px; }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.cta-row--center { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F4F8FE 0%, #ffffff 100%);
  padding: 80px 0 56px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0;
}
.hero::before {
  width: 480px; height: 480px; background: #C9DDF7;
  top: -180px; left: -120px;
}
.hero::after {
  width: 360px; height: 360px; background: #E2EAFC;
  bottom: -120px; right: -80px;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 48px; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2); color: var(--blue);
  font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.25;
  letter-spacing: .01em;
  font-weight: 800;
  color: var(--navy);
  margin: 18px 0 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
  background: linear-gradient(180deg, transparent 65%, rgba(30,91,184,.18) 65%);
  padding: 0 4px;
}
.hero-sub {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: .01em;
  line-height: 1.1;
}
.stat-num small { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 2px; }
.stat-label { font-size: 11.5px; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-stack {
  position: relative; width: 100%; height: 100%;
}
.hero-card {
  position: absolute; border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  background: #fff;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-card--back {
  top: 0; right: 0; width: 62%; aspect-ratio: 3/4;
  transform: rotate(4deg);
}
.hero-card--mid {
  top: 14%; left: 8%; width: 52%; aspect-ratio: 3/4;
  transform: rotate(-5deg);
  z-index: 2;
}
.hero-card--front {
  bottom: 0; right: 8%; width: 56%; aspect-ratio: 3/4;
  transform: rotate(2deg);
  z-index: 3;
}
.hero-badge {
  position: absolute; bottom: -4px; left: -6px;
  background: var(--navy); color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 4;
  font-size: 12px; letter-spacing: .04em;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge strong { display: block; font-size: 17px; font-family: "Inter", sans-serif; letter-spacing: .02em; }
.hero-badge .check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; color: var(--navy); font-weight: 800;
}

/* ---------- Section: 無料ラフ訴求 ---------- */
.rough {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}
.rough-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.rough-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--navy));
}
@media (max-width: 760px) {
  .rough-card { grid-template-columns: 1fr; padding: 32px 24px; }
}
.rough-card .copy h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy);
  margin: 8px 0 12px;
  line-height: 1.45;
}
.rough-card .copy p { margin: 0 0 14px; color: var(--ink-2); font-size: 15px; }
.rough-card .note {
  font-size: 12.5px; color: var(--muted);
  background: var(--sky);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 4px;
}

/* ---------- Section: 悩み ---------- */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 840px) { .problems { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .problems { grid-template-columns: 1fr; } }
.problem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 22px 22px 56px;
  position: relative;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.problem:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--line-2); }
.problem::before {
  content: ""; position: absolute; left: 22px; top: 24px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky);
  background-image: linear-gradient(45deg, transparent 46%, var(--blue) 46%, var(--blue) 54%, transparent 54%),
                    linear-gradient(-45deg, transparent 46%, var(--blue) 46%, var(--blue) 54%, transparent 54%);
}

/* ---------- Section: Samples ---------- */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 960px) { .samples-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 640px) { .samples-grid { grid-template-columns: 1fr; gap: 24px; } }
.sample {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.sample:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sample-image {
  background: var(--paper);
  padding: 18px;
  aspect-ratio: 1055/1491;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
  overflow: hidden;
}
.sample-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 24px -6px rgba(14,42,90,.25);
  transition: transform .3s ease;
}
.sample:hover .sample-image img { transform: scale(1.02); }
.sample-body { padding: 22px 24px 26px; }
.sample-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--blue);
  background: var(--sky);
  padding: 5px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.sample-body h3 {
  font-size: 17px; color: var(--navy);
  margin: 0 0 10px; line-height: 1.5;
}
.sample-body p {
  font-size: 14px; color: var(--ink-2);
  margin: 0 0 14px; line-height: 1.75;
}
.sample-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--muted);
}
.sample-price strong {
  font-family: "Inter", sans-serif; color: var(--navy);
  font-size: 18px; font-weight: 700; letter-spacing: .01em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14,28,52,.85);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(100%, 760px); max-height: 92vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: none; font-size: 18px; color: var(--navy);
  display: grid; place-items: center;
}

/* ---------- Section: Flow ---------- */
.flow-intro {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: end;
  margin-bottom: 44px;
}
@media (max-width: 840px) { .flow-intro { grid-template-columns: 1fr; gap: 16px; } }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  counter-reset: stepc;
}
@media (max-width: 960px) { .flow-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 18px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.flow-step::after {
  content: ""; position: absolute; right: -10px; top: 50%;
  width: 10px; height: 2px; background: var(--line-2);
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 961px) {
  .flow-step:not(:last-child)::after { display: block; }
}
.flow-step .num {
  font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 11px;
  color: var(--blue); letter-spacing: .15em;
  margin-bottom: 8px;
}
.flow-step .title {
  font-weight: 700; color: var(--navy); font-size: 15px;
  line-height: 1.5;
}
.flow-step .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sky);
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: var(--blue);
}

/* ---------- Section: Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.price-card.is-featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, #fff 0%, #F2F7FF 100%);
  box-shadow: 0 12px 36px -10px rgba(30,91,184,.32);
}
.price-card .ribbon {
  position: absolute; top: -12px; right: 18px;
  background: var(--blue); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  box-shadow: 0 6px 14px -4px rgba(30,91,184,.5);
}
.price-card .plan-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  color: var(--muted); text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.price-card .plan-name {
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin: 6px 0 14px; line-height: 1.4;
}
.price-card .plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.price-card .plan-price .amt {
  font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 36px; color: var(--navy);
  letter-spacing: .01em; line-height: 1;
}
.price-card .plan-price .yen { font-size: 18px; color: var(--navy); font-weight: 700; }
.price-card .plan-price .from { font-size: 14px; color: var(--muted); }
.price-card .plan-unit {
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 18px;
}
.price-card .plan-list {
  list-style: none; padding: 18px 0 0; margin: 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 9px;
  font-size: 14px; color: var(--ink-2);
}
.price-card .plan-list li {
  position: relative; padding-left: 22px;
  line-height: 1.65;
}
.price-card .plan-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.price-card .plan-note {
  background: var(--sky);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12.5px; color: var(--ink-2);
  margin-top: 18px; line-height: 1.7;
}
.price-tax { font-size: 12.5px; color: var(--muted); margin-top: 16px; text-align: right; }
.price-notes {
  margin: 36px auto 0; max-width: 800px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 26px;
  font-size: 13px; color: var(--ink-2);
  line-height: 1.85;
}
.price-notes ul { margin: 0; padding-left: 20px; }
.price-notes h4 {
  margin: 0 0 8px; font-size: 13px;
  color: var(--navy); letter-spacing: .04em;
}

/* ---------- Section: Recommend ---------- */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}
@media (max-width: 640px) { .recommend-grid { grid-template-columns: 1fr; } }
.recommend-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px 18px 56px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}
.recommend-item::before {
  content: "✓";
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  font-family: "Inter", sans-serif;
}

/* ---------- Section: Prep ---------- */
.prep-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 840px) { .prep-wrap { grid-template-columns: 1fr; gap: 24px; } }
.prep-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (max-width: 540px) { .prep-list { grid-template-columns: 1fr; padding: 24px; } }
.prep-list li {
  list-style: none;
  font-size: 14.5px; color: var(--ink-2);
  position: relative; padding-left: 22px;
  line-height: 1.7;
}
.prep-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(45deg);
}
.prep-note {
  background: var(--sky);
  border-radius: var(--r);
  padding: 24px 26px;
}
.prep-note h4 { margin: 0 0 8px; font-size: 14px; color: var(--navy); }
.prep-note p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.85; }

/* ---------- Section: Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  counter-reset: pcount;
}
@media (max-width: 880px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-list { grid-template-columns: 1fr; } }
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.process-card .pnum {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--sky-2);
  position: absolute; top: 16px; right: 18px;
}
.process-card h4 {
  margin: 0 0 8px; font-size: 16px; color: var(--navy);
}
.process-card p {
  margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.75;
}

/* ---------- Section: industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 36px;
}
@media (max-width: 880px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ---------- Section: caution ---------- */
.caution {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .caution { grid-template-columns: 1fr; padding: 26px 24px; gap: 16px; } }
.caution-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--sky);
  display: grid; place-items: center;
  color: var(--blue); font-weight: 700; font-size: 24px;
  font-family: "Inter", sans-serif;
}
.caution h3 { margin: 0 0 10px; font-size: 18px; color: var(--navy); }
.caution p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.85; }

/* ---------- Section: FAQ ---------- */
.faq-list { margin-top: 36px; max-width: 880px; margin-left: auto; margin-right: auto; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq.is-open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px; color: var(--navy); font-weight: 600;
  line-height: 1.6;
}
.faq-q .qmark {
  flex: 0 0 28px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 14px;
}
.faq-q .qtxt { flex: 1; }
.faq-q .toggle {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  position: relative;
  transition: transform .25s ease;
}
.faq-q .toggle::before,
.faq-q .toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
.faq-q .toggle::before { width: 14px; height: 2px; }
.faq-q .toggle::after { width: 2px; height: 14px; transition: transform .25s ease; }
.faq.is-open .faq-q .toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 24px 22px 68px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.85;
}

/* ---------- Section: company ---------- */
.company {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 840px) { .company { grid-template-columns: 1fr; gap: 24px; } }
.company-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.company-table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px;
}
.company-table th, .company-table td {
  text-align: left; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.company-table th {
  width: 38%;
  font-weight: 600; color: var(--muted);
  font-size: 13px; letter-spacing: .04em;
}
.company-table td { color: var(--ink); }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table a { color: var(--blue); text-decoration: none; }
.company-table a:hover { text-decoration: underline; }
.company-note {
  background: var(--sky);
  border-radius: var(--r);
  padding: 24px 26px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.85;
}
.company-note h4 { margin: 0 0 10px; color: var(--navy); font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(30,111,214,.35), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0,40,120,.6), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-size: clamp(24px, 3.6vw, 38px);
  color: #fff;
  margin: 12px 0 16px;
  font-weight: 700;
  line-height: 1.4;
}
.final-cta p {
  color: rgba(255,255,255,.82);
  max-width: 640px; margin: 0 auto 32px;
  font-size: 15.5px; line-height: 1.85;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A1F44; color: rgba(255,255,255,.76);
  padding: 56px 0 28px;
  font-size: 13.5px;
}
.site-footer .container {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
}
@media (max-width: 720px) { .site-footer .container { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h5 {
  font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.5);
  margin: 0 0 16px; text-transform: uppercase;
  font-family: "Inter", sans-serif; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand { color: #fff; }
.site-footer .brand-text small { color: rgba(255,255,255,.5); }
.site-footer p { color: rgba(255,255,255,.6); line-height: 1.85; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px; padding-top: 20px;
  font-size: 12px; color: rgba(255,255,255,.5);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  display: none;
  gap: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 10px 28px -8px rgba(14,42,90,.32);
  backdrop-filter: blur(8px);
}
.sticky-cta .btn { flex: 1; padding: 14px 12px; font-size: 13.5px; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 78px; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
