
:root {
  --navy: #062B63;
  --navy-2: #0D3F86;
  --red: #C91527;
  --gold: #B68A3A;
  --text: #102746;
  --muted: #465C7C;
  --muted-soft: #5C7090;
  --line: #D9E3F0;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FC;
  --shadow: 0 18px 40px rgba(6, 43, 99, 0.08);
  --shadow-soft: 0 10px 24px rgba(6, 43, 99, 0.06);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: 88px 0; }
.section.alt { background: var(--bg-soft); }
.section-label {
  margin: 0 0 10px;
  color: var(--navy-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
h1, h2, h3 { line-height: 1.28; margin: 0 0 16px; }
h1 { font-size: clamp(2.4rem, 4vw, 4.3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.95rem, 3vw, 2.9rem); letter-spacing: -0.02em; }
h3 { font-size: 1.24rem; }
p { margin: 0 0 16px; }
small { color: var(--muted-soft); }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(217,227,240,0.75);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.brand-logo { height: 52px; width: auto; }
.global-nav { display: flex; align-items: center; gap: 22px; font-size: 1rem; font-weight: 600; }
.global-nav a { color: var(--text); }
.global-nav a:hover { color: var(--navy); }
.global-nav .nav-cta {
  color: #fff; background: var(--navy); padding: 10px 16px; border-radius: 999px;
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: radial-gradient(circle at top right, rgba(13,63,134,0.08), transparent 28%), linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,63,134,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13,63,134,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 30% 25%, black, transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; right: -120px; top: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(182,138,58,0.10), rgba(182,138,58,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: rgba(6,43,99,0.08);
  color: var(--navy); font-size: 0.85rem; font-weight: 700;
}
.lead { font-size: 1.08rem; color: var(--text); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: #041d46; }
.btn-secondary { border: 1px solid rgba(6,43,99,0.18); color: var(--navy); background: #fff; }
.btn-secondary:hover { border-color: rgba(6,43,99,0.4); }
.btn-full { width: 100%; }
.btn.small { padding: 12px 18px; font-size: 0.94rem; }
.btn-light { background: #fff; color: var(--navy); box-shadow: none; }
.btn-light:hover { background: #eef4ff; }
.proof-strip {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 0 0 18px;
}
.proof-item {
  padding: 16px 18px; border: 1px solid rgba(6,43,99,0.08); background: rgba(255,255,255,0.88);
  border-radius: 18px; box-shadow: var(--shadow-soft);
}
.proof-item strong { display: block; font-size: 1.15rem; color: var(--navy); line-height: 1.3; }
.proof-item span { color: var(--text); font-size: 0.93rem; }
.hero-points {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0;
}
.hero-points li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: var(--text);
}
.hero-panel { display: grid; gap: 16px; }
.hero-brand-box,
.hero-card,
.card,
.service-card,
.reason-card,
.soft-card {
  background: #fff; border: 1px solid rgba(6,43,99,0.08); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-brand-box {
  padding: 22px; display: grid; gap: 14px; align-items: center; justify-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.hero-logo { width: min(210px, 100%); margin: 0 auto; }
.hero-brand-copy { margin: 0; text-align: center; color: var(--text); max-width: 28ch; font-size: 0.96rem; }
.hero-card { padding: 22px; }
.hero-card h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  word-break: keep-all;
  line-break: strict;
  margin-bottom: 14px;
}
.hero-card, .hero-brand-box { min-height: 0; }
hero-checks { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.hero-checks li {
  position: relative; padding-left: 26px; color: var(--text);
}
.hero-checks li::before {
  content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--gold);
  position: absolute; top: 0.72em; left: 0; transform: translateY(-50%);
}
.site-role-mini { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.site-role-mini span {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #f6f9fe; color: var(--text); font-size: 0.92rem;
}
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .service-card, .reason-card, .soft-card { padding: 28px; }
.soft-card { box-shadow: none; background: linear-gradient(180deg, #fff 0%, #fbfdff 100%); }
.step {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 14px; background: rgba(6,43,99,0.08); color: var(--navy); font-weight: 800; margin-bottom: 0;
}
.capability-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.capability-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid rgba(6,43,99,0.10);
}
.capability-icon svg { width: 22px; height: 22px; stroke: var(--navy-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.compact-head { align-items: start; }
.section-summary { max-width: 420px; color: var(--text); margin: 0; }
.text-link { color: var(--navy-2); font-weight: 700; }
.capability-card { min-height: 196px; }
.service-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px;
}
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(6,43,99,1) 0%, rgba(13,63,134,1) 100%);
  color: #fff;
}
.service-card.featured p { color: rgba(255,255,255,0.88); }
.service-card.featured h3 { font-size: clamp(1.55rem, 2vw, 1.95rem); line-height: 1.35; margin-bottom: 10px; }
.service-topline {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.featured-tag { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.badge {
  display: inline-flex; padding: 6px 10px; background: rgba(255,255,255,0.18); border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
}
.service-points { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 10px; }
.service-points li { padding-left: 22px; position: relative; }
.service-points li::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.92);
  position: absolute; left: 0; top: 0.75em; transform: translateY(-50%);
}
.service-card-standard { display: grid; gap: 8px; }
.service-kind {
  display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px;
  background: rgba(6,43,99,0.08); color: var(--navy); font-size: 0.78rem; font-weight: 700;
}
.why-grid .reason-card {
  border-top: 4px solid rgba(201,21,39,0.85);
}
.flow-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 16px;
}
.flow-list li {
  display: grid; grid-template-columns: 132px 1fr; gap: 18px; align-items: center;
  position: relative; padding: 20px 24px 20px 34px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  font-size: 1rem;
}
.flow-list strong { color: var(--navy); font-size: 1rem; }
.flow-list li::before {
  content: ""; position: absolute; left: 16px; top: 18px; bottom: 18px; width: 4px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(6,43,99,0.92) 0%, rgba(182,138,58,0.75) 100%);
}
.flow-list li:not(:last-child)::after {
  content: ""; position: absolute; left: 17px; bottom: -16px; width: 2px; height: 16px; background: rgba(6,43,99,0.16);
}
.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; background: #fff;
}
summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1rem; color: var(--text); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(6,43,99,0.16); color: var(--navy); background: #f8fbff;
  font-size: 1.05rem; flex: 0 0 auto;
}
details[open] summary::after { content: "−"; }
details p { margin-top: 12px; color: var(--text); font-size: 0.98rem; }
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
}
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.contact-logo { width: min(260px, 100%); margin-top: 26px; }
.contact-assurance {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.contact-assurance span {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--text); font-size: 0.92rem;
}
.contact-strong { color: var(--navy); font-weight: 700; margin-top: 6px; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow);
}
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label { font-weight: 700; }
.form-field label span { color: var(--red); font-size: 0.85rem; margin-left: 6px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid #C8D5E6; border-radius: 14px; padding: 14px 16px; font: inherit; color: var(--text); background: #fff;
}
.form-field input:focus, .form-field textarea:focus {
  outline: 3px solid rgba(13,63,134,0.14); border-color: var(--navy-2);
}
.form-note { color: var(--muted-soft); font-size: 0.92rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.site-footer {
  border-top: 1px solid var(--line); padding: 24px 0; background: #fff;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted-soft); font-size: 0.93rem;
}
.footer-links { display: flex; gap: 18px; }
@media (max-width: 980px) {
  .global-nav {
    position: absolute; top: 80px; right: 20px; left: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 18px; display: none; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .global-nav.is-open { display: flex; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: #fff; color: var(--navy);
    padding: 10px 14px; border-radius: 999px; font: inherit; font-weight: 700;
  }
  .hero-grid, .contact-grid, .grid.two, .grid.four, .service-grid, .proof-strip { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .flow-list li { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .section-head, .compact-head { flex-direction: column; align-items: flex-start; }
  .section-summary { max-width: none; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 48px; padding-bottom: 42px; }
  .hero::before, .hero::after { display: none; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  padding: 24px;
}
.thanks-box {
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}
.thanks-logo { width: min(210px, 100%); margin: 0 auto 24px; }


.hero-copy .lead, .hero-checks li, .section p, .service-card p, .reason-card p, .soft-card p, .contact-section p, .flow-list li span, .faq-list p, .proof-item span, .hero-brand-copy, .site-role-mini span, .hero-points li, .contact-assurance span, .form-note, .footer-inner { color: var(--text); }
.global-nav a, .site-footer, .footer-inner, .footer-links a { color: var(--muted-soft); }
.service-card.featured p, .service-card.featured .service-points li { color: rgba(255,255,255,0.92); }


.service-card-standard h3, .reason-card h3, .soft-card h3 { font-size: 1.2rem; }
.hero-brand-copy, .section-summary, .soft-card p, .reason-card p, .service-card-standard p, .faq-list details p, .flow-list span, .flow-list li { letter-spacing: 0.01em; }
