/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--ink);
  color: var(--paper-dim);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ============ TOKENS (Business / Corporate theme) ============ */
:root {
  /* Light theme (default, used across most sections) */
  --ink: #ffffff;
  --ink-2: #f5f7fb;
  --ink-3: #eaeef5;
  --paper: #14213a;        /* headings / strong text (navy) */
  --paper-dim: #45526a;    /* body text */
  --paper-mute: #7c8798;   /* muted labels */
  --rule: #e3e7ee;
  --rule-strong: #cbd2dd;
  --accent: #1857d6;       /* primary blue */
  --accent-2: #0d3fa8;     /* darker blue (hover) */
  --gold: #0f9d58;         /* success accent (green) */
  --serif: "Noto Sans JP", sans-serif;
  --serif-en: "Inter", "Noto Sans JP", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
  --mono: "Inter", "Noto Sans JP", sans-serif;
  --max: 1200px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(20, 33, 58, .06);
  --shadow-md: 0 12px 32px rgba(20, 33, 58, .10);
  --shadow-lg: 0 24px 56px rgba(20, 33, 58, .16);
}

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--paper);
  margin-top: 12px;
}
.section-title .en {
  display: block;
  font-family: var(--serif-en);
  font-style: normal;
  font-weight: 600;
  font-size: .38em;
  color: var(--paper-mute);
  letter-spacing: .06em;
  margin-bottom: 8px;
}
section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.fade { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade.in { opacity: 1; transform: none; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255, 255, 255, .97); border-bottom-color: var(--rule); padding: 10px 0; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif-en); letter-spacing: .02em; font-size: 14px; }
.brand .mark { width: 30px; height: 30px; border-radius: var(--radius-sm); background: var(--accent); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--serif); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.brand .name { font-weight: 800; color: var(--paper); letter-spacing: .01em; }
.brand .sub { color: var(--paper-mute); font-size: 10.5px; letter-spacing: .1em; display: block; margin-top: 2px; font-weight: 500; }
nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a { font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: .01em; color: var(--paper-dim); transition: color .2s; }
nav.main-nav a:hover { color: var(--accent); }
nav.main-nav a.cta { background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); }
nav.main-nav a.cta:hover { background: var(--accent-2); color: #fff; }
@media (max-width: 860px) { nav.main-nav { display: none; } }

/* ============ HERO ============ */
.hero { min-height: 92vh; padding-top: 130px; padding-bottom: 70px; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(24,87,214,.08), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(24,87,214,.05), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; width: 100%; }
.hero-copy { position: relative; z-index: 2; }
.hero .meta { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--paper-mute); margin-bottom: 26px; flex-wrap: wrap; }
.hero .meta .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.hero .meta .dot.live { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(28px, 4.6vw, 48px); line-height: 1.5; letter-spacing: 0; color: var(--paper); margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: 15.5px; line-height: 2; color: var(--paper-dim); max-width: 560px; margin-bottom: 30px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero-tag { font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0; color: var(--accent); background: rgba(24,87,214,.07); border: 1px solid rgba(24,87,214,.18); border-radius: 999px; padding: 8px 16px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .01em; border-radius: 999px; border: 1px solid var(--rule-strong); color: var(--paper); transition: all .25s ease; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-ghost { background: #fff; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(24,87,214,.04); }

/* ---- Hero trust badges ---- */
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--rule); }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--paper-dim); letter-spacing: 0; }
.trust-item i { color: var(--accent); font-size: 13px; flex-shrink: 0; }

.hero-portrait { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 440px; margin-left: auto; }
.hero-portrait .frame { position: absolute; inset: 0; border-radius: 20px; overflow: hidden; background: var(--ink-2); box-shadow: var(--shadow-lg); z-index: 2; }
.hero-portrait .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait .badge { position: absolute; bottom: -20px; left: -20px; background: var(--paper); color: #fff; border-radius: var(--radius); padding: 14px 20px 14px 52px; font-family: var(--serif); font-weight: 700; font-size: 13.5px; letter-spacing: .01em; z-index: 3; box-shadow: var(--shadow-lg); max-width: 220px; }
.hero-portrait .badge small { display: block; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .06em; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.hero-portrait .badge .badge-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--accent-2); background: #fff; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.hero-portrait .corner-tag { position: absolute; top: 16px; right: 16px; z-index: 3; font-family: var(--sans); font-weight: 700; font-size: 10.5px; letter-spacing: .04em; color: #fff; background: rgba(20,33,58,.55); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.hero-portrait .corner-tag i { color: #5be0a8; font-size: 11px; }

/* ---- Decorative accents around portrait ---- */
.deco-ring { position: absolute; top: -18px; right: -18px; width: 96px; height: 96px; border: 2px solid rgba(24,87,214,.22); border-radius: 50%; z-index: 1; pointer-events: none; }
.deco-dot { position: absolute; border-radius: 50%; background: var(--accent); z-index: 1; pointer-events: none; }
.deco-dot-1 { width: 14px; height: 14px; top: -8px; left: 34px; background: var(--accent); opacity: .8; }
.deco-dot-2 { width: 22px; height: 22px; bottom: 30px; right: -22px; background: var(--gold); opacity: .55; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { max-width: 300px; margin: 0 auto; }
}

/* ============ RISK SECTION ============ */
.risk-section { background: var(--ink-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.risk-card { border: 1px solid var(--rule); border-radius: var(--radius); background: #fff; padding: 32px 26px; position: relative; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.risk-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.risk-num { font-family: var(--serif-en); font-weight: 700; font-size: 15px; color: #fff; letter-spacing: .02em; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--accent); border-radius: 10px; margin-bottom: 18px; }
.risk-num i { font-size: 16px; }
.risk-card h3 { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--paper); margin-bottom: 12px; letter-spacing: .01em; }
.risk-card p { font-size: 13.5px; line-height: 1.9; color: var(--paper-dim); }
/* ---- Risk card color variants ---- */
.risk-card-blue .risk-num { background: var(--accent); }
.risk-card-blue { border-top: 3px solid var(--accent); }
.risk-card-amber .risk-num { background: #d18a1f; }
.risk-card-amber { border-top: 3px solid #d18a1f; }
.risk-card-green .risk-num { background: var(--gold); }
.risk-card-green { border-top: 3px solid var(--gold); }
@media (max-width: 900px) { .risk-grid { grid-template-columns: 1fr; } }

/* ============ FOR WHO (誰のために) ============ */
.forwho { background: var(--ink); }
.forwho-head { max-width: 720px; margin-bottom: 52px; }
.forwho-lede { font-family: var(--sans); font-size: clamp(14.5px, 1.4vw, 16.5px); line-height: 2; color: var(--paper-dim); margin-top: 18px; }
.forwho-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.forwho-item { display: flex; gap: 16px; align-items: flex-start; padding: 26px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--ink-2); transition: box-shadow .25s ease, border-color .25s ease; }
.forwho-item:hover { box-shadow: var(--shadow-sm); border-color: var(--rule-strong); }
.forwho-item .icon { font-family: var(--serif-en); font-weight: 700; font-size: 14px; color: var(--accent); flex-shrink: 0; line-height: 1; background: rgba(24,87,214,.08); border-radius: 7px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; }
.forwho-item p { font-size: 14px; line-height: 1.9; color: var(--paper-dim); }
.forwho-item strong { display: block; color: var(--paper); font-family: var(--serif); font-size: 15.5px; margin-bottom: 6px; letter-spacing: .01em; }
.forwho-note { margin-top: 36px; font-size: 13.5px; color: var(--paper-mute); border-left: 3px solid var(--accent); padding-left: 18px; line-height: 1.9; }
@media (max-width: 760px) { .forwho-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.about-photo { position: relative; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; background: var(--ink-2); box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo .tag-tl, .about-photo .tag-br { position: absolute; z-index: 3; font-family: var(--sans); font-weight: 700; font-size: 10.5px; letter-spacing: .04em; color: #fff; background: rgba(20,33,58,.55); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; }
.about-photo .tag-tl { top: 16px; left: 16px; }
.about-photo .tag-br { bottom: 16px; right: 16px; }
.about-photo .accent-bar { position: absolute; left: 20px; right: 20px; bottom: 16px; height: 4px; border-radius: 4px; background: var(--accent); z-index: 3; display: none; }
.about-text h2 { margin-bottom: 26px; }
.about-lead { font-family: var(--serif); font-weight: 700; font-size: clamp(16.5px, 1.7vw, 19px); line-height: 1.9; color: var(--paper); margin-bottom: 30px; letter-spacing: .01em; }
.about-body p { font-size: 14.5px; line-height: 2.1; color: var(--paper-dim); margin-bottom: 18px; }
.about-body strong { color: var(--paper); }
.timeline { margin-top: 40px; border-top: 1px solid var(--rule); }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.timeline-year { font-family: var(--serif-en); font-weight: 700; font-size: 14.5px; color: var(--accent); letter-spacing: .02em; }
.timeline-body strong { display: block; font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--paper); margin-bottom: 4px; letter-spacing: .01em; }
.timeline-body span { font-size: 12.5px; color: var(--paper-mute); line-height: 1.8; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-photo { max-width: 320px; } }

/* ============ PROOF (信頼の裏付け) — dark navy band ============ */
.proof {
  --ink: #0f1c30;
  --ink-2: #16253c;
  --ink-3: #1c3150;
  --paper: #ffffff;
  --paper-dim: #b9c5d6;
  --paper-mute: #7e8ea6;
  --rule: rgba(255,255,255,.12);
  --rule-strong: rgba(255,255,255,.22);
  --accent: #5b9bff;
  --accent-2: #85b4ff;
  background: var(--ink);
}
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); margin-top: 44px; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.proof-stat { background: var(--ink-2); padding: 32px 24px; text-align: center; }
.proof-icon { display: block; font-size: 20px; color: var(--accent); margin: 0 auto 14px; }
.proof-stat .num { font-family: var(--serif-en); font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); color: #fff; line-height: 1; }
.proof-stat .num small { font-size: 14px; font-weight: 600; color: var(--paper-mute); margin-left: 4px; }
.proof-stat .label { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .03em; color: var(--paper-mute); margin-top: 10px; line-height: 1.6; }
.proof-quote-block { margin-top: 56px; border-top: 1px solid var(--rule); padding-top: 44px; }
.proof-quote-block .quote-lede { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--paper-mute); margin-bottom: 18px; }
.proof-quote { font-family: var(--serif); font-weight: 500; font-size: clamp(15.5px, 1.6vw, 19px); line-height: 2; color: #fff; border-left: 3px solid var(--accent); padding-left: 22px; margin-bottom: 16px; }
.proof-quote-source { font-family: var(--sans); font-size: 12px; color: var(--paper-mute); padding-left: 22px; }
@media (max-width: 760px) { .proof-stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ NOTE LIST ============ */
.note-section .section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 44px; flex-wrap: wrap; }
.note-section .section-head .meta { font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--paper-mute); display: flex; align-items: center; gap: 10px; }
.note-section .section-head .meta::before { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(24,87,214,.14); flex-shrink: 0; }
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.note-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; transition: all .3s ease; }
.note-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.note-card .thumb { width: 100%; aspect-ratio: 1280/670; background: var(--ink-3); overflow: hidden; }
.note-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.note-card .card-body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.note-card .card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.note-card .price { font-family: var(--serif-en); font-weight: 700; font-size: 16px; color: var(--accent); letter-spacing: 0; white-space: nowrap; background: rgba(24,87,214,.08); padding: 4px 10px; border-radius: 999px; }
.note-card .price.free { color: var(--paper-mute); font-size: 12px; font-weight: 600; font-family: var(--sans); background: var(--ink-2); }
.note-card .tag { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--paper-mute); }
.note-card h3 { font-family: var(--serif); font-weight: 700; font-size: 16px; line-height: 1.65; color: var(--paper); letter-spacing: 0; margin-bottom: 12px; }
.note-card .excerpt { font-size: 12.5px; line-height: 1.8; color: var(--paper-mute); margin-bottom: auto; }
.note-card .card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .02em; color: var(--paper-mute); }
.note-card .card-foot .read { color: var(--accent); font-weight: 700; transition: color .2s; }
.note-card:hover .card-foot .read { color: var(--accent-2); }
.note-cta { margin-top: 48px; text-align: center; }
.note-loading, .note-error { text-align: center; padding: 60px 20px; color: var(--paper-mute); font-family: var(--sans); font-size: 12px; letter-spacing: .04em; grid-column: 1 / -1; line-height: 2; }
.note-error a { color: var(--accent); font-weight: 700; }
.note-error a:hover { color: var(--accent-2); }
.note-skel { background: var(--ink-2); border: 1px solid var(--rule); border-radius: var(--radius); height: 280px; position: relative; overflow: hidden; }
.note-skel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(20,33,58,.05), transparent); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@media (max-width: 1000px) { .note-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .note-grid { grid-template-columns: 1fr; } }

/* ============ SERVICES ============ */
.services { background: var(--ink-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.service-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.service-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 28px; padding: 30px 28px; border: 1px solid var(--rule); border-radius: var(--radius); align-items: center; background: #fff; transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease; }
.service-item:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.service-num { font-family: var(--serif-en); font-weight: 700; font-size: 18px; color: #fff; letter-spacing: 0; width: 44px; height: 44px; background: var(--accent); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.service-title { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--paper); letter-spacing: .01em; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.service-badge { font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .03em; color: var(--accent); background: rgba(24,87,214,.08); border-radius: 999px; padding: 4px 10px; }
.service-desc { font-size: 13.5px; color: var(--paper-mute); line-height: 1.85; }
.service-arrow { width: 44px; height: 44px; border: 1px solid var(--rule-strong); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: var(--paper); transition: all .25s; flex-shrink: 0; }
.service-item:hover .service-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(-45deg); }
@media (max-width: 640px) { .service-item { grid-template-columns: 40px 1fr; gap: 14px; } .service-arrow { display: none; } }

/* ============ CTA — dark navy band ============ */
.cta-section {
  --ink: #0f1c30;
  --paper: #ffffff;
  --paper-dim: #b9c5d6;
  --accent: #5b9bff;
  background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(91,155,255,.16), transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-section h2 { font-family: var(--serif); font-weight: 800; font-size: clamp(22px, 3.4vw, 36px); line-height: 1.6; color: #fff; letter-spacing: .01em; margin-top: 18px; margin-bottom: 26px; }
.cta-section p { font-size: 14.5px; line-height: 2; color: var(--paper-dim); max-width: 500px; margin: 0 auto 40px; }
.cta-section .eyebrow { color: var(--accent); }
.cta-section .eyebrow::before { background: var(--accent); }
.cta-section .btn-primary { background: var(--accent); border-color: var(--accent); }
.cta-section .btn-primary:hover { background: #85b4ff; border-color: #85b4ff; }

/* ============ CONTACT ============ */
.contact { background: var(--ink); border-top: 1px solid var(--rule); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-left h2 { margin-bottom: 20px; }
.contact-left p { font-size: 14.5px; line-height: 2; color: var(--paper-dim); margin-bottom: 26px; }
.contact-info { border-top: 1px solid var(--rule); margin-top: 26px; }
.contact-info dl { display: grid; grid-template-columns: 88px 1fr; gap: 0 20px; padding: 15px 0; border-bottom: 1px solid var(--rule); }
.contact-info dt { font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--paper-mute); align-self: center; }
.contact-info dd { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--paper); letter-spacing: 0; word-break: break-word; }
.contact-info dd a:hover { color: var(--accent); }
.sns-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.sns-link { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid var(--rule-strong); border-radius: 999px; font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .01em; transition: all .25s; background: var(--ink-2); }
.sns-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.sns-link svg { width: 15px; height: 15px; flex-shrink: 0; }

.contact-form { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--paper-mute); margin-bottom: 9px; }
.field label .req { color: var(--accent); margin-left: 4px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink-2); border: 1px solid var(--rule);
  padding: 12px 14px; color: var(--paper); font-family: var(--sans); font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s; border-radius: var(--radius-sm);
}
.field select option { background: #fff; color: var(--paper); }
.field textarea { resize: vertical; min-height: 110px; font-family: var(--sans); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(24,87,214,.12); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #9aa5b3; }
.field-website { position: absolute; left: -9999px; opacity: 0; height: 0; pointer-events: none; }
.form-submit { width: 100%; margin-top: 12px; padding: 16px; background: var(--accent); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .02em; border-radius: 999px; border: 1px solid var(--accent); transition: all .25s; box-shadow: var(--shadow-sm); }
.form-submit:hover:not(:disabled) { background: var(--accent-2); border-color: var(--accent-2); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-note { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0; color: var(--paper-mute); margin-top: 14px; line-height: 1.8; text-align: center; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.7; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(15,157,88,.08); border: 1px solid var(--gold); color: #0f9d58; }
.form-status.error { background: rgba(214,50,50,.08); border: 1px solid #d63232; color: #d63232; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .contact-form { padding: 28px 22px; } }

/* ============ FOOTER — dark navy ============ */
footer.site-footer {
  --ink: #0f1c30;
  --ink-2: #16253c;
  --paper: #ffffff;
  --paper-dim: #b9c5d6;
  --paper-mute: #7e8ea6;
  --rule: rgba(255,255,255,.12);
  --accent: #5b9bff;
  background: var(--ink); padding: 52px 0 30px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 52px; padding-bottom: 40px; border-bottom: 1px solid var(--rule); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo { font-family: var(--serif-en); font-weight: 800; font-size: 19px; letter-spacing: .01em; color: #fff; }
.footer-brand .tag { font-family: var(--sans); font-size: 13px; color: var(--paper-dim); line-height: 2; max-width: 320px; letter-spacing: 0; }
.footer-col h4 { font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--paper-mute); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; color: var(--paper-dim); transition: color .2s; letter-spacing: 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-family: var(--sans); font-size: 11.5px; letter-spacing: .01em; color: var(--paper-mute); flex-wrap: wrap; gap: 14px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

@media (max-width: 520px) {
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

::selection { background: var(--accent); color: #fff; }

/* ============ NAV TOGGLE (mobile) ============ */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; height: 24px; justify-content: center; }
.nav-toggle span { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--paper); transition: all .25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: flex; position: fixed; top: 0; right: -100%; bottom: 0; width: min(78vw, 320px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px; box-shadow: var(--shadow-lg); transition: right .3s ease; z-index: 60;
  }
  nav.main-nav.open { right: 0; }
  nav.main-nav a.cta { margin-top: 8px; }
}
