:root {
  --ink: #0e0e12;
  --ink-2: #111827;
  --blue: #2d6bff;
  --blue-2: #a9c0ff;
  --pale: #e8eeff;
  --paper: #ffffff;
  --muted: #667085;
  --line: rgba(14, 14, 18, 0.14);
  --max: 1120px;
  --hero-max: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .lead, .btn, summary {
  word-break: auto-phrase;
  text-wrap: balance;
  letter-spacing: 0;
}
.container {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: #fff;
  background: rgba(14, 14, 18, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--hero-max), calc(100% - 44px));
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: inherit;
  font-weight: 900;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand span { white-space: nowrap; font-size: 16px; }
.nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.nav a {
  position: relative;
  padding: 26px 0 23px;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: rgba(255,255,255,.86); font-size: 13px; font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(45, 107, 255, 0.25);
  font-weight: 800;
  line-height: 1.3;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
  color: #fff;
  background: #1f5eff;
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(45, 107, 255, 0.32);
}
.btn.secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  box-shadow: none;
}
.btn.gold { color: #fff; background: var(--blue); border-color: var(--blue); }

.hero {
  position: relative;
  width: 100%;
  min-height: 790px;
  padding-top: 74px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/fv.jpg") center right / cover no-repeat;
  transform: scale(1.025);
  animation: hero-image 1.1s ease-out both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,14,18,.98) 0%, rgba(14,14,18,.88) 42%, rgba(14,14,18,.2) 100%),
    linear-gradient(180deg, rgba(14,14,18,.18), rgba(14,14,18,.45)),
    radial-gradient(circle at 76% 35%, rgba(45,107,255,.35), transparent 36%);
}
.hero .container {
  min-height: 716px;
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(340px, .48fr);
  align-items: center;
  gap: 40px;
}
.hero-copy { max-width: 650px; padding: 74px 0 70px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  max-width: 720px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.12;
}
.hero-copy > p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px; }
.proof {
  min-width: 142px;
  padding: 10px 13px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}
.proof strong { display: inline; margin-right: 5px; color: #fff; font-size: 14px; }
.proof span { color: rgba(255,255,255,.65); font-size: 11px; }
.hero-visual { position: relative; min-height: 520px; }
.hero-visual > img { display: none; }
.hero-visual::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 4%;
  width: min(420px, 88%);
  aspect-ratio: 1;
  background: url("../images/deco-grid-1.png") center / contain no-repeat;
  opacity: .12;
  mix-blend-mode: screen;
}
.floating-panel {
  position: absolute;
  right: 4%;
  bottom: 13%;
  width: min(390px, 86%);
  padding: 24px;
  background: rgba(14,14,18,.62);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(0,0,0,.4);
}
.floating-panel::before {
  content: "CASE / 01";
  display: block;
  margin-bottom: 10px;
  color: var(--blue-2);
  font: 800 11px/1.2 "Segoe UI", Arial, sans-serif;
}
.floating-panel b { display: block; margin-bottom: 8px; color: #fff; font-size: 20px; }
.floating-panel p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
@keyframes hero-image { from { opacity: .2; transform: scale(1.08); } to { opacity: 1; transform: scale(1.025); } }

section { position: relative; padding: 104px 0; overflow: hidden; }
.section-soft { background: #f4f6fb; }
.section-head { max-width: 780px; margin: 0 0 44px; }
.section-head.center { margin: 0 auto 46px; text-align: left; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--blue);
  font: 900 12px/1.2 "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.2;
}
h3 { margin: 0 0 12px; color: var(--ink); font-size: 21px; line-height: 1.35; }
.lead { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 86px); align-items: center; }
.split > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 24px 24px 0 var(--pale);
}
.hero + section .split > div:first-child::before {
  content: "FIG.01";
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font: 800 11px/1 "Segoe UI", Arial, sans-serif;
}

.grid { display: grid; gap: 22px; counter-reset: editorial-card; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.item {
  position: relative;
  padding: 0 0 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  counter-increment: editorial-card;
  transition: transform .25s ease, box-shadow .25s ease;
}
.item:hover { transform: translateY(-5px); box-shadow: 0 24px 54px -32px rgba(14,14,18,.5); }
.item::before {
  content: counter(editorial-card, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font: 900 13px/1 "Segoe UI", Arial, sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.item img { width: 100%; aspect-ratio: 4 / 3; margin: 0 0 22px; object-fit: cover; border-radius: 0; }
.item h3, .item p { margin-right: 22px; margin-left: 22px; }
.item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.hero + section + .section-soft { color: #fff; background: var(--ink); }
.hero + section + .section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: url("../images/texture-2.jpg") center / cover;
  mix-blend-mode: screen;
}
.hero + section + .section-soft h2 { color: #fff; }
.hero + section + .section-soft .lead { color: rgba(255,255,255,.65); }
.hero + section + .section-soft .item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); }
.hero + section + .section-soft .item h3 { color: #fff; }
.hero + section + .section-soft .item p { color: rgba(255,255,255,.65); }

.stat-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(14,14,18,.96), rgba(14,14,18,.76)),
    url("../images/section-bg-2.jpg") center / cover;
}
.stat-band h2 { color: #fff; }
.stat-band p { color: rgba(255,255,255,.68); }
.stat-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.2); }
.stat-list div { min-width: 0; min-height: 170px; padding: 24px 14px; background: rgba(14,14,18,.8); }
.stat-list strong {
  display: block;
  color: var(--blue-2);
  font: 900 clamp(30px, 3vw, 46px)/1 "Segoe UI", Arial, sans-serif;
}
.stat-list span { display: block; margin-top: 15px; color: rgba(255,255,255,.65); font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 0; counter-reset: step; border-top: 1px solid var(--line); }
.step { position: relative; min-height: 210px; padding: 28px 20px 22px 0; border-bottom: 1px solid var(--line); counter-increment: step; }
.step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
  font: 900 48px/.8 "Segoe UI", Arial, sans-serif;
}
.step::after { content: ""; position: absolute; top: 47px; right: 18px; left: 72px; height: 1px; background: var(--blue); opacity: .38; }
.step h3 { font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-list details { padding: 22px 4px; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.faq-list summary { position: relative; padding-right: 42px; color: var(--ink); cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: -8px; right: 4px; color: var(--blue); font: 300 30px/1 "Segoe UI", Arial, sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 800px; margin: 14px 0 0; color: var(--muted); }

.company-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.company-table th, .company-table td { padding: 20px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.company-table th { width: 210px; color: var(--blue); background: transparent; font-size: 12px; text-transform: uppercase; }
.company-table td { font-weight: 700; }

.cta-section { color: #fff; background: var(--ink); }
.cta-section::before {
  content: "CONTACT";
  position: absolute;
  right: -18px;
  bottom: -42px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.09);
  font: 900 clamp(88px, 17vw, 230px)/.8 "Segoe UI", Arial, sans-serif;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.66); }
.cta-box { display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; }

.site-footer { color: rgba(255,255,255,.72); background: var(--ink-2); padding: 62px 0 24px; }
.site-footer .brand { color: #fff; font-size: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; }
.footer-grid p { margin-top: 22px; font-size: 13px; }
.footer-grid a { color: #fff; }
.footer-nav { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: start; gap: 0; border-top: 1px solid rgba(255,255,255,.15); }
.footer-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 13px; }
.copyright { margin: 42px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 11px; }

.page-hero {
  padding: 170px 0 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14,14,18,.98), rgba(14,14,18,.75)),
    url("../images/section-bg-1.jpg") center / cover;
  border: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: screen;
  pointer-events: none;
}
.page-hero h1 { margin: 12px 0 14px; color: #fff; font-size: clamp(44px, 7vw, 82px); line-height: 1; }
.page-hero .lead { color: rgba(255,255,255,.68); }
.breadcrumb { color: var(--blue-2); font: 800 11px/1.4 "Segoe UI", Arial, sans-serif; text-transform: uppercase; }

.notice { padding: 22px 24px; background: var(--pale); border: 0; border-left: 4px solid var(--blue); border-radius: 0; }
.contact-panel { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 0; }
.contact-panel h2 { font-size: 28px; }
.form-placeholder { padding: 24px; background: #f7f9ff; border: 1px dashed var(--blue); border-radius: 0; }
.cf7-code { padding: 14px; color: #fff; background: var(--ink); border-radius: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; overflow: auto; }
.contact-hero h1 { color: var(--blue); }
.contact-form-section { padding: 88px 0 116px; background: #fff; }
.contact-form-wrap { max-width: 880px; }
.contact-intro { max-width: 680px; margin: 0 0 44px; color: var(--ink); font-size: 14px; font-weight: 700; }
.contact-preview { border-top: 1px solid var(--line); }
.form-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.form-row label { padding-top: 11px; color: var(--ink); font-size: 14px; font-weight: 900; }
.required {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  margin-left: 6px;
  padding: 2px 6px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}
.form-row input, .form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(14,14,18,.22);
  border-radius: 0;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,107,255,.12); }
.form-consent { padding: 28px 0 0 238px; }
.form-consent label { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; font-weight: 700; }
.form-consent input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--blue); }
.form-consent a { color: var(--blue); text-decoration: underline; }
.form-submit { padding: 36px 0 0 238px; }
.form-submit .btn { min-width: 230px; cursor: pointer; }

.contact-form-panel {
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.contact-form-panel .wpcf7 {
  width: 100%;
}
.contact-form-panel .wpcf7-form {
  display: grid;
  gap: 26px;
}
.contact-form-panel .wpcf7-form p {
  margin: 0;
}
.contact-form-panel .wpcf7-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}
.contact-form-panel .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel input[type="url"],
.contact-form-panel input[type="number"],
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(14,14,18,.24);
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form-panel select {
  appearance: auto;
}
.contact-form-panel textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,107,255,.12);
}
.contact-form-panel .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.contact-form-panel .wpcf7-acceptance input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 4px;
}
.contact-form-panel .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  padding: 13px 24px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(45,107,255,.25);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form-panel .wpcf7-submit:hover {
  background: #1f5eff;
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(45,107,255,.32);
}
.contact-form-panel .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}
.contact-form-panel .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
}
.legal { max-width: 880px; }
.legal h2 { margin-top: 42px; font-size: 28px; }
.legal p { margin-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .hero .container { grid-template-columns: 1fr; min-height: 760px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { min-height: 260px; }
  .floating-panel { right: 0; bottom: 34px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .stat-band, .footer-grid { grid-template-columns: 1fr; }
  .stat-list { max-width: 660px; }
  .steps { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .cta-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 768px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .header-inner { width: calc(100% - 24px); height: 66px; }
  .brand img { width: 32px; height: 32px; }
  .brand span { font-size: 13px; }
  .phone-link { display: none; }
  .header-actions .btn { min-height: 40px; padding: 8px 11px; font-size: 12px; }
  .hero { min-height: 760px; padding-top: 66px; }
  .hero::before { background-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(14,14,18,.96), rgba(14,14,18,.74)); }
  .hero .container { min-height: 694px; display: block; }
  .hero-copy { padding: 72px 0 24px; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .proof-row { gap: 7px; }
  .proof { min-width: 0; padding: 7px 10px; }
  .hero-visual { min-height: 220px; }
  .floating-panel { right: 0; bottom: 20px; width: 100%; }
  section { padding: 76px 0; }
  h2 { font-size: 34px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { gap: 46px; }
  .split > img { box-shadow: 14px 14px 0 var(--pale); }
  .stat-band { padding: 28px 20px; gap: 34px; }
  .stat-list { grid-template-columns: 1fr; }
  .stat-list div { min-height: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding-right: 0; }
  .step::after { right: 0; }
  .company-table th, .company-table td { display: block; width: 100%; }
  .company-table th { padding-bottom: 4px; border-bottom: 0; }
  .company-table td { padding-top: 0; overflow-wrap: anywhere; }
  .footer-nav { grid-template-columns: 1fr; }
  .page-hero { padding: 132px 0 68px; }
  .page-hero h1 { font-size: 48px; }
  .contact-panel { padding: 22px; }
  .contact-form-section { padding: 64px 0 84px; }
  .contact-intro { margin-bottom: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .form-row label { padding-top: 0; }
  .form-consent, .form-submit { padding-left: 0; }
  .form-submit .btn { width: 100%; }
  .contact-form-panel { max-width: none; }
  .contact-form-panel .wpcf7-form { gap: 22px; }
  .contact-form-panel .wpcf7-submit { width: 100%; }
  .cta-section::before { bottom: -12px; }
}

/* P.MARU v3 — Type D / HorizonPin */
body { font-family: "Zen Kaku Gothic New", "Yu Gothic", sans-serif; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: #fff; background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #86aaff; outline-offset: 3px; }
.l-wrap { width: min(1160px, calc(100% - 56px)); margin: 0 auto; position: relative; z-index: 2; }
.c-label { margin: 0 0 18px; color: var(--blue); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.c-label::before { content: ""; display: inline-block; width: 42px; height: 1px; margin: 0 13px 3px 0; background: currentColor; }
.c-lead { color: var(--muted); font-size: 17px; line-height: 1.9; }
.c-text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-weight: 800; border-bottom: 1px solid currentColor; }
.c-text-link span { color: var(--blue); }
.brand picture { display: block; flex: none; }
.c-section-head { margin-bottom: 52px; }
.c-section-head--split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: end; }
.c-section-head--split h2, .c-section-head--center h2 { margin: 0; font-size: clamp(38px, 5.4vw, 64px); }
.c-section-head--center { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }

.c-hero { width: 100%; min-height: 100vh; padding: 0; color: #fff; background: #090b10; overflow: visible; }
.c-hero::before, .c-hero::after { display: none; }
.c-hero__stage { position: relative; min-height: 100vh; overflow: hidden; background: #090b10; }
.c-hero__track { position: relative; }
.c-hero__track.is-horizontal { display: flex; width: 300vw; }
.c-hero__panel { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px max(7vw, 42px) 80px; overflow: hidden; isolation: isolate; }
.c-hero__track.is-horizontal .c-hero__panel { width: 100vw; flex: none; }
.c-hero__photo, .c-hero__shade { position: absolute; inset: 0; z-index: -2; }
.c-hero__photo { background-position: center; background-size: cover; transform: scale(1.025); }
.c-hero__shade { z-index: -1; background: linear-gradient(90deg, rgba(9,11,16,.96) 0%, rgba(9,11,16,.82) 46%, rgba(9,11,16,.28) 100%); }
.c-hero__panel--opening .c-hero__photo { background-image: url("../images/fv.jpg"); }
.c-hero__panel--proof .c-hero__photo { background-image: url("../images/case-1.jpg"); }
.c-hero__panel--scope .c-hero__photo { background-image: url("../images/hero-sub.jpg"); background-position: center 36%; }
.c-hero__panel--proof .c-hero__shade, .c-hero__panel--scope .c-hero__shade { background: linear-gradient(90deg, rgba(9,11,16,.94), rgba(9,11,16,.62) 60%, rgba(9,11,16,.35)); }
.c-hero__content { width: min(700px, 68vw); position: relative; z-index: 2; }
.c-hero__content--narrow { width: min(620px, 66vw); }
.c-hero .c-label { color: #a9c0ff; }
.c-hero h1 { margin: 0 0 25px; color: #fff; font-size: clamp(48px, 6.3vw, 84px); line-height: 1.08; }
.c-hero h2 { margin: 0 0 22px; color: #fff; font-size: clamp(40px, 5.2vw, 68px); }
.c-hero__lead, .c-hero__content > p:last-of-type { max-width: 620px; color: rgba(255,255,255,.74); font-size: 18px; }
.c-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.c-hero .c-text-link { color: #fff; }
.c-hero__big { margin: 0 0 8px !important; color: #fff !important; font: 700 clamp(118px, 19vw, 250px)/.75 "Space Grotesk", sans-serif !important; }
.c-hero__big small { margin-left: 8px; color: #a9c0ff; font-size: .18em; }
.c-hero__number { position: absolute; right: 5vw; bottom: 3vh; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); font: 700 clamp(100px, 16vw, 220px)/1 "Space Grotesk", sans-serif; }
.c-hero__route { position: absolute; right: 6vw; top: 50%; z-index: 4; width: min(33vw, 480px); height: 1px; background: rgba(255,255,255,.28); }
.c-hero__route span, .c-hero__route i, .c-hero__route b { position: absolute; top: -5px; width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(45,107,255,.16); animation: route-pulse 2.4s ease-in-out infinite; }
.c-hero__route span { left: 0; }.c-hero__route i { left: 50%; animation-delay: .4s; }.c-hero__route b { right: 0; animation-delay: .8s; }
.c-hero__progress { position: absolute; right: 6vw; bottom: 42px; left: 6vw; z-index: 5; height: 2px; background: rgba(255,255,255,.16); }
.c-hero__progress span { display: block; width: 100%; height: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left; }
.c-hero__scroll { position: absolute; right: 6vw; bottom: 55px; z-index: 5; margin: 0; color: rgba(255,255,255,.5); font: 700 9px/1 "Space Grotesk", sans-serif; letter-spacing: .18em; }

.c-intro { min-height: 760px; display: flex; align-items: center; color: #fff; background: #0e1117; }
.c-intro__photo, .c-intro__overlay { position: absolute; inset: 0; }
.c-intro__photo { background: url("../images/section-bg-1.jpg") center / cover; opacity: .54; }
.c-intro__overlay { background: linear-gradient(90deg, rgba(8,11,16,.92), rgba(8,11,16,.67) 52%, rgba(8,11,16,.9)), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: auto, 46px 46px, 46px 46px; }
.c-intro__layout { min-height: 520px; display: grid; place-items: center; }
.c-intro__copy { max-width: 820px; text-align: center; }
.c-intro__copy h2 { color: #fff; font-size: clamp(42px, 6.8vw, 82px); line-height: 1.12; }
.c-intro__copy .c-lead { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.68); }
.c-intro__signals { position: absolute; inset: 0; }
.c-signal { position: absolute; padding: 8px 13px; color: rgba(255,255,255,.7); background: rgba(8,11,16,.52); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; backdrop-filter: blur(10px); font: 700 11px/1.4 "Space Grotesk", sans-serif; }
.c-signal::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px var(--blue); }
.c-signal--1 { left: 2%; top: 9%; }.c-signal--2 { right: 5%; top: 17%; }.c-signal--3 { left: 4%; bottom: 15%; }.c-signal--4 { right: 0; bottom: 18%; }

.c-reasons { padding: 120px 0 150px; background: #f4f6fb; }
.c-reasons__board { position: relative; min-height: 610px; }
.c-proof { position: absolute; width: min(410px, 78vw); padding: 18px 18px 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 30px 70px -54px rgba(14,14,18,.6); }
.c-proof--1 { left: 0; top: 94px; transform: rotate(-2deg); }.c-proof--2 { left: 34%; top: 8px; transform: rotate(1.5deg); }.c-proof--3 { right: 0; top: 140px; transform: rotate(-1deg); }
.c-proof > span { color: var(--blue); font: 700 10px/1 "Space Grotesk", sans-serif; letter-spacing: .16em; }
.c-proof img { width: 100%; aspect-ratio: 16/10; margin: 14px 0 21px; object-fit: cover; filter: saturate(.76) contrast(1.05); }
.c-proof picture { display: block; }
.c-proof h3 { font-size: 23px; }.c-proof p { margin: 0; color: var(--muted); font-size: 13px; }
.c-proof::after { content: ""; display: block; height: 1px; margin-top: 22px; background: var(--line); box-shadow: 0 9px 0 var(--line), 0 18px 0 var(--line); }

.c-services { padding: 120px 0; background: #fff; }
.c-services__board { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 650px; border: 1px solid var(--line); }
.c-services__lanes { padding: 30px 42px; }
.c-lane { display: grid; grid-template-columns: 82px 118px 1fr; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.c-lane:last-child { border-bottom: 0; }
.c-lane > span { color: var(--blue); font: 700 9px/1.3 "Space Grotesk", sans-serif; letter-spacing: .12em; }
.c-lane img { width: 118px; aspect-ratio: 16/10; object-fit: cover; filter: grayscale(.2); }
.c-lane picture { display: block; width: 118px; }
.c-lane h3 { margin-bottom: 5px; font-size: 19px; }.c-lane p { margin: 0; color: var(--muted); font-size: 12px; }
.c-services__scope { padding: 42px; background: #0e1117; color: #fff; }
.c-services__scope h3 { color: #fff; font-size: 28px; }.c-services__scope ul { list-style: none; margin: 34px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.c-services__scope li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-weight: 700; }
.c-services__scope > p:not(.c-label) { color: rgba(255,255,255,.58); font-size: 13px; }.c-services__scope .c-text-link { margin-top: 20px; color: #fff; }

.c-fullbleed { position: relative; width: 100%; height: min(74vw, 760px); margin: 0; overflow: hidden; background: #0e1117; }
.c-fullbleed img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.c-fullbleed > picture { display: block; width: 100%; height: 100%; }
.c-fullbleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,11,16,.78)); }
.c-fullbleed figcaption { position: absolute; right: 5vw; bottom: 4vw; left: 5vw; z-index: 2; display: flex; justify-content: space-between; gap: 24px; color: #fff; font-size: 13px; }
.c-fullbleed figcaption span { color: #a9c0ff; font: 700 10px/1.4 "Space Grotesk", sans-serif; letter-spacing: .15em; }

.c-numbers { padding: 126px 0; background: #fff; }
.c-numbers__layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.c-numbers__value { margin: 10px 0 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 700; line-height: .72; letter-spacing: -.04em; white-space: nowrap; }
.c-numbers__value small { margin-left: 8px; color: var(--blue); font-size: .16em; letter-spacing: 0; }
.c-numbers__main h2 { max-width: 620px; margin-top: 36px; font-size: clamp(36px, 4.6vw, 58px); }
.c-numbers__side { padding-top: 80px; }
.c-numbers__side > img { width: 92%; aspect-ratio: 4/3; margin-left: auto; object-fit: cover; box-shadow: -24px 24px 0 var(--pale); }
.c-numbers__side > picture { display: block; width: 92%; margin-left: auto; }
.c-numbers__side > picture img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: -24px 24px 0 var(--pale); }
.c-numbers__side > .c-lead { margin: 52px 0 28px; }
.c-facts { margin: 0; border-top: 1px solid var(--ink); }
.c-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }.c-facts dt { color: var(--blue); font: 700 10px/1.5 "Space Grotesk", sans-serif; letter-spacing: .14em; }.c-facts dd { margin: 0; font-weight: 800; }

.c-process { padding: 120px 0; background: #f2f4f7; }
.c-process__inner { max-width: 980px; }
.c-process__track { background: #fff; border: 1px solid var(--line); box-shadow: 0 30px 60px -48px rgba(14,14,18,.55); }
.c-process__top { display: flex; justify-content: space-between; gap: 18px; padding: 18px 26px; border-bottom: 1px solid var(--line); color: var(--muted); font: 700 11px/1.4 "Space Grotesk", sans-serif; }.c-process__top b { color: var(--blue); }
.c-process__body { display: grid; grid-template-columns: 1fr 270px; }
.c-process__steps { position: relative; padding: 30px 30px 30px 72px; }
.c-process__rail { position: absolute; top: 50px; bottom: 50px; left: 40px; width: 3px; background: #dce1e8; }.c-process__rail i { display: block; width: 100%; height: 100%; background: var(--blue); }
.c-step { position: relative; padding: 15px 0 15px 16px; }.c-step__dot { position: absolute; top: 23px; left: -40px; width: 19px; height: 19px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.c-step__no { margin: 0; color: var(--blue) !important; font: 700 9px/1.3 "Space Grotesk", sans-serif; letter-spacing: .15em; }.c-step h3 { margin: 4px 0; font-size: 18px; }.c-step > p:last-child { margin: 0; color: var(--muted); font-size: 12px; }
.c-process__memo { padding: 32px 26px; background: #0e1117; color: #fff; }.c-process__memo strong { display: block; margin-bottom: 12px; font-size: 20px; }.c-process__memo > p:not(.c-label) { color: rgba(255,255,255,.6); font-size: 12px; }.c-process__memo .btn { width: 100%; margin-top: 22px; }

.c-message { min-height: 780px; padding: 120px 0; color: #fff; background: #0b0e13; }
.c-message__photo, .c-message__shade { position: absolute; inset: 0; }.c-message__photo { background: url("../images/profile.jpg") 76% center / cover no-repeat; opacity: .62; }.c-message__shade { background: linear-gradient(90deg, rgba(11,14,19,.97), rgba(11,14,19,.76) 52%, rgba(11,14,19,.72)); }
.c-message__copy { position: relative; z-index: 2; max-width: 720px; }.c-message__copy h2 { color: #fff; font-size: clamp(40px, 5.5vw, 68px); }.c-message__copy > p:last-child { max-width: 660px; color: rgba(255,255,255,.68); }
.c-message__notes { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 150px; }.c-message__notes article { padding: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }.c-message__notes span { color: #a9c0ff; font: 700 9px/1.3 "Space Grotesk", sans-serif; letter-spacing: .15em; }.c-message__notes h3 { margin-top: 13px; color: #fff; }.c-message__notes p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; }

.c-faq { padding: 120px 0; background: #fff; }
.c-faq__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.c-faq__side { position: sticky; top: 110px; }.c-faq__side h2 { font-size: clamp(46px, 6vw, 72px); }.c-faq__side > p:not(.c-label) { color: var(--muted); }.c-faq__side .c-text-link { margin-top: 20px; }
.c-faq__list { border-top: 1px solid var(--ink); }.c-faq__list details { padding: 0; border: 0; border-bottom: 1px solid var(--line); }.c-faq__list summary { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; min-height: 80px; padding: 18px 0; color: var(--ink); font-size: 16px; }.c-faq__list summary span { color: var(--blue); font: 700 12px/1 "Space Grotesk", sans-serif; }.c-faq__list summary::after { content: "+"; color: var(--blue); font: 400 26px/1 "Space Grotesk", sans-serif; }.c-faq__list details[open] summary::after { content: "−"; }.c-faq__list details p { margin: 0; padding: 0 46px 26px 66px; color: var(--muted); }

.c-company { padding: 120px 0; background: #f4f6fb; }
.c-company__layout { display: grid; grid-template-columns: 320px 1fr; gap: 70px; align-items: start; }.c-company__side { position: sticky; top: 110px; }.c-company__side img { width: 100%; aspect-ratio: 4/3; margin: 30px 0 14px; object-fit: cover; }.c-company__side > p:last-child { color: var(--muted); font-size: 13px; }
.c-company__side picture { display: block; margin: 30px 0 14px; }.c-company__side picture img { margin: 0; }
.c-company__index { margin: 0; border-top: 1px solid var(--ink); }.c-company__index div { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--line); }.c-company__index dt { color: var(--blue); font: 700 10px/1.5 "Space Grotesk", sans-serif; letter-spacing: .14em; }.c-company__index dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }

.c-final { min-height: 700px; display: flex; align-items: center; padding: 100px 0; color: #fff; background: linear-gradient(120deg, #0b2e8a, #061943); overflow: hidden; }.c-final__photo { position: absolute; inset: 0 0 0 auto; width: 52%; height: 100%; object-fit: cover; opacity: .35; mix-blend-mode: luminosity; -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); mask-image: linear-gradient(90deg, transparent, #000 40%); }.c-final__word { position: absolute; top: 50%; left: 50%; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.2); font: 700 clamp(80px, 17vw, 250px)/1 "Space Grotesk", sans-serif; transform: translate(-50%,-50%); white-space: nowrap; }.c-final__inner { max-width: 1160px; }.c-final__inner h2 { max-width: 780px; color: #fff; font-size: clamp(40px, 5.5vw, 68px); }.c-final__inner > p:not(.c-label) { max-width: 620px; color: rgba(255,255,255,.68); }.c-final__actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }.c-final .c-text-link { color: #fff; font-family: "Space Grotesk", sans-serif; font-size: 20px; }

@media (max-width: 980px) {
  .c-section-head--split, .c-services__board, .c-numbers__layout, .c-faq__layout, .c-company__layout { grid-template-columns: 1fr; }
  .c-reasons__board { min-height: auto; display: grid; gap: 18px; }.c-proof { position: relative; inset: auto; width: 100%; transform: none; }
  .c-services__scope { padding: 32px; }.c-numbers__side { padding-top: 10px; }.c-numbers__side > img, .c-numbers__side > picture { width: 100%; }
  .c-process__body { grid-template-columns: 1fr; }.c-faq__side, .c-company__side { position: static; }.c-company__side { max-width: 520px; }
}
@media (max-width: 900px) {
  .c-hero__track.is-horizontal { display: block; width: auto; }.c-hero__track.is-horizontal .c-hero__panel { width: auto; }
  .c-hero__panel { min-height: 82vh; padding: 110px 28px 76px; }.c-hero__content, .c-hero__content--narrow { width: min(100%, 680px); }.c-hero__route, .c-hero__progress, .c-hero__scroll { display: none; }
}
@media (max-width: 768px) {
  .l-wrap { width: min(100% - 30px, 1160px); }.c-section-head--split { gap: 20px; }.c-section-head--split h2, .c-section-head--center h2 { font-size: 36px; }
  .c-hero h1 { font-size: clamp(38px, 11vw, 54px); }.c-hero h2 { font-size: 38px; }.c-hero__lead, .c-hero__content > p:last-of-type { font-size: 15px; }.c-hero__big { font-size: 36vw !important; }.c-hero__number { font-size: 34vw; }.c-hero__actions { align-items: stretch; flex-direction: column; }.c-hero__actions .btn { width: 100%; }
  .c-intro { min-height: 680px; }.c-intro__copy h2 { font-size: 40px; }.c-signal { font-size: 9px; }.c-signal--1 { left: -3%; }.c-signal--2 { right: -5%; }.c-signal--3 { left: -2%; }.c-signal--4 { right: -8%; }
  .c-reasons, .c-services, .c-numbers, .c-process, .c-message, .c-faq, .c-company { padding: 82px 0; }
  .c-lane { grid-template-columns: 1fr; }.c-lane img, .c-lane picture { width: 100%; }.c-services__lanes { padding: 20px; }
  .c-fullbleed { height: 68vh; }.c-fullbleed figcaption { flex-direction: column; }
  .c-numbers__main h2 { margin-top: 26px; font-size: 34px; }.c-numbers__side > img, .c-numbers__side > picture img { box-shadow: -12px 12px 0 var(--pale); }.c-facts div { grid-template-columns: 92px 1fr; }
  .c-process__top { align-items: flex-start; flex-direction: column; }.c-process__steps { padding: 24px 20px 24px 62px; }.c-process__rail { left: 32px; }.c-step__dot { left: -39px; }
  .c-message { min-height: 760px; }.c-message__photo { background-position: 62% center; }.c-message__copy h2 { font-size: 38px; }.c-message__notes { grid-template-columns: 1fr; margin-top: 70px; }
  .c-faq__layout { gap: 34px; }.c-faq__side h2 { font-size: 48px; }.c-faq__list summary { grid-template-columns: 38px 1fr auto; font-size: 14px; }.c-faq__list details p { padding-left: 52px; }
  .c-company__index div { grid-template-columns: 1fr; gap: 5px; }.c-final { min-height: 720px; }.c-final__photo { width: 82%; opacity: .24; }.c-final__inner h2 { font-size: 40px; }.c-final__actions { align-items: stretch; flex-direction: column; }.c-final__actions .btn { width: 100%; }
}
@media (hover: none) {
  .nav a, .footer-nav a, .c-text-link, .c-faq__list summary { min-height: 44px; }
}


/* WordPress migrated inline styles */
.hero{width:100%}.c-hero__route{mix-blend-mode:screen}.c-numbers__value{font-size:clamp(8rem,22vw,19rem)}.c-company__index{border-top:1px solid currentColor}
    @keyframes route-pulse{0%,100%{opacity:.45;transform:scale(1)}50%{opacity:1;transform:scale(1.45)}}
    @media (max-width:768px){.c-numbers__value{font-size:clamp(7rem,42vw,11rem)}}
