/*
Theme Name: Cross & Crown
Theme URI: https://crossandcrown.co.jp
Author: Cross & Crown
Author URI: https://crossandcrown.co.jp
Description: Cross & Crown コーポレートサイト用カスタムテーマ。AI コンサルティング + LLM セキュリティ。webmapro の管理機能を継承。
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cc-theme
*/

/* =====================================================
   Cross & Crown — Renewal Top Page
   Design System: Navy #061f3d / Blue #0b4d9d / Gold #c69b5d
   Typography:    Cormorant Garamond (serif) / Noto Sans JP
   ===================================================== */

:root {
  --navy-900: #04162e;
  --navy-800: #061f3d;
  --navy-700: #0a2a55;
  --navy-600: #0b4d9d;
  --blue-500: #2466c4;
  --gold-500: #c69b5d;
  --gold-600: #b08446;
  --gold-100: #f0e3cf;
  --rose-500: #b91146;
  --rose-600: #9a0e3a;

  --ink-900: #0b1d36;
  --ink-700: #2b3b54;
  --ink-500: #6a7891;
  --ink-300: #b9c4d4;

  --line: #dde5f0;
  --line-soft: #eef2f8;
  --bg: #f4f7fc;
  --bg-soft: #f9fbfe;
  --white: #ffffff;

  --shadow-sm: 0 4px 12px rgba(6, 31, 61, 0.06);
  --shadow-md: 0 14px 32px rgba(6, 31, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 31, 61, 0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --serif: "Cormorant Garamond", "Trajan Pro", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --serif-display: "Cinzel", "Trajan Pro", "Cormorant Garamond", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;

  --container: 1680px;
  --gutter: clamp(24px, 6vw, 120px);
  /* padding pattern: full-bleed bg, content centered up to --container */
  --pad-x: max(var(--gutter), calc((100% - var(--container)) / 2));
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  /* Reserve space for fixed header (sub pages without hero) */
  padding-top: 84px;
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
/* On hero pages, hero starts at y=0 (header overlays it) */
body:has(.hero) {
  padding-top: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
svg { display: block; }

/* ----- Page wrapper (full-bleed, no frame) ----- */
.page {
  max-width: none;
  margin: 0;
  background: var(--bg-soft);
  overflow-x: clip;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 84px;
  padding: 0 var(--pad-x);
  /* Default (sub pages): solid white header */
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .35s var(--smooth, ease), border-color .35s, backdrop-filter .35s;
}

/* HERO PAGES (top page): transparent header over hero, solidifies on scroll */
body:has(.hero) .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: blur(0px);
}
body:has(.hero) .site-header .brand-logo {
  filter: brightness(0) invert(1);
  transition: filter .35s var(--smooth, ease);
}
body:has(.hero) .site-header .global-nav a {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  transition: color .35s, text-shadow .35s;
}
body:has(.hero) .site-header .header-tel {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
body:has(.hero) .site-header .header-tel svg { color: var(--gold-500); }
body:has(.hero) .site-header .header-tel .tel-hours {
  color: rgba(255, 255, 255, .7);
}

/* Scroll-driven solidify (only on hero pages, modern browsers) */
@supports (animation-timeline: scroll()) {
  body:has(.hero) .site-header {
    animation: hdr-solidify linear both;
    animation-timeline: scroll(root);
    animation-range: 60vh 90vh;
  }
  body:has(.hero) .site-header .brand-logo {
    animation: hdr-logo-color linear both;
    animation-timeline: scroll(root);
    animation-range: 60vh 90vh;
  }
  body:has(.hero) .site-header .global-nav a,
  body:has(.hero) .site-header .header-tel {
    animation: hdr-text-dark linear both;
    animation-timeline: scroll(root);
    animation-range: 60vh 90vh;
  }
  body:has(.hero) .site-header .header-tel .tel-hours {
    animation: hdr-tel-hours-dark linear both;
    animation-timeline: scroll(root);
    animation-range: 60vh 90vh;
  }
}
@keyframes hdr-solidify {
  to {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--line);
    backdrop-filter: blur(8px);
  }
}
@keyframes hdr-logo-color {
  to { filter: none; }
}
@keyframes hdr-text-dark {
  to { color: var(--navy-800); text-shadow: none; }
}
@keyframes hdr-tel-hours-dark {
  to { color: var(--ink-500); text-shadow: none; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-crest {
  display: block;
  width: 38px;
  height: 48px;
}
.brand-crest svg { width: 100%; height: 100%; }

/* Real logo image — header (light bg) */
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--navy-800);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold-600);
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
}
.global-nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .25s, left .25s;
}
.global-nav a:hover { color: var(--navy-600); }
.global-nav a:hover::after { width: 100%; left: 0; }

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-family: var(--serif);
  white-space: nowrap;
}
.header-tel svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}
.header-tel .tel-num {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.header-tel .tel-hours {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.08em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #c51850 0%, var(--rose-500) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(185, 17, 70, 0.28);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(185, 17, 70, 0.34); }
.header-cta span { font-family: var(--serif); font-size: 18px; font-weight: 400; }

/* =====================================================
   HERO
   ===================================================== */
/* Full-bleed hero: slideshow background + overlaid content */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(80px, 8vw, 140px) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4, 16, 30, .80) 0%, rgba(6, 31, 61, .55) 45%, rgba(6, 31, 61, .15) 100%),
    linear-gradient(180deg, transparent 60%, rgba(4, 16, 30, .55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  padding-top: 6px;
}

/* Hero meta line above eyebrow */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.hero-meta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198, 155, 93, .25);
}

/* Hero quick stats below buttons */
.hero-quick-stats {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: clamp(28px, 3vw, 44px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  list-style: none;
}
.hero-quick-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: clamp(20px, 2.5vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, .15);
}
.hero-quick-stats li:last-child { border-right: 0; padding-right: 0; }
.hero-quick-stats strong {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-quick-stats strong em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.55em;
  font-weight: 800;
  margin-left: 2px;
  color: var(--gold-500);
}
.hero-quick-stats span {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
}

/* Vertical tagline on right edge */
.hero-side-text {
  position: absolute;
  right: clamp(20px, 2.5vw, 56px);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.62em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

/* Floating event card */
.hero-event-card {
  position: absolute;
  top: clamp(110px, 12vw, 180px);
  right: clamp(80px, 6vw, 120px);
  z-index: 3;
  width: clamp(260px, 22vw, 320px);
  padding: 22px 24px 20px;
  background: rgba(8, 22, 44, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(198, 155, 93, .35);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
  color: #fff;
}
.hero-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-500);
}
.hero-event-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #76d49b;
  box-shadow: 0 0 0 3px rgba(118, 212, 155, .25);
  animation: hero-pulse 1.8s ease infinite;
}
@keyframes hero-pulse {
  50% { box-shadow: 0 0 0 8px rgba(118, 212, 155, 0); }
}
.hero-event-date {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.hero-event-date small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  margin-left: 4px;
}
.hero-event-title {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.65;
  color: #fff;
  margin: 8px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(198, 155, 93, .35);
}
.hero-event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  transition: gap .25s var(--smooth, ease);
}
.hero-event-link:hover { gap: 14px; color: #f0d8aa; }

/* Bottom dark band: NOTICE only */
.hero-bottom-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .82) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(198, 155, 93, .35);
  color: #fff;
}

/* NOTICE block (full-width inside band) */
.hero-notice {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  padding: clamp(14px, 1.4vw, 22px) var(--pad-x);
  flex-wrap: wrap;
}
.hero-notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--gold-500);
  color: #0a0a0a;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  border-radius: 3px;
  white-space: nowrap;
}
.hero-notice-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  animation: hero-pulse 2s ease infinite;
}
.hero-notice-date {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-notice-text {
  flex: 1;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  letter-spacing: 0.02em;
  line-height: 1.55;
  min-width: 0;
}
.hero-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(198, 155, 93, .55);
  border-radius: 3px;
  color: var(--gold-500);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.hero-notice-link span { font-family: var(--serif); font-size: 14px; }
.hero-notice-link:hover { background: var(--gold-500); color: #0a0a0a; }

/* RIGHT: FEATURED IN with each media in its own cell */
.hero-media-cells {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  padding-right: var(--pad-x);
}
.hero-media-cells .hero-media-label {
  padding: clamp(14px, 1.4vw, 22px) clamp(16px, 1.8vw, 28px);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .1);
  white-space: nowrap;
}
.hero-media-cells ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-media-cells li {
  display: grid;
  place-items: center;
  padding: clamp(14px, 1.4vw, 22px) 8px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.hero-media-cells li:last-child { border-right: 0; }
.hero-media-cells li:hover {
  color: #fff;
  background: rgba(198, 155, 93, .08);
}

/* Legacy hero-media-strip (no longer used in hero, kept for compat) */
.hero-media-strip {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 76px;
  z-index: 3;
  display: none; /* superseded by hero-bottom-band */
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  right: clamp(20px, 2.5vw, 56px);
  bottom: clamp(76px, 8vw, 108px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero-scroll-label {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, .55);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--gold-500);
  animation: hero-scroll-pulse 2s ease infinite;
}
@keyframes hero-scroll-pulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 22px;
  border: 1px solid rgba(198, 155, 93, 0.7);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
.eyebrow::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-right: 10px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero .lead {
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn span { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.btn-primary {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 31, 61, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(6, 31, 61, 0.30); }
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(198, 155, 93, .55);
}
/* Original ghost variant for non-hero contexts */
.section .btn-ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--line);
  backdrop-filter: none;
}
.section .btn-ghost:hover { background: var(--bg); }
.btn-rose {
  background: linear-gradient(180deg, #c51850 0%, var(--rose-500) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 17, 70, 0.28);
}
.btn-rose:hover { transform: translateY(-2px); }

/* Slideshow: full-bleed background under .hero overlay */
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: hero-slideshow 30s infinite;
  will-change: opacity, transform;
}

/* Each slide visible ~5s with 1s crossfade. 5 slides × 6s = 30s total. */
@keyframes hero-slideshow {
  0%   { opacity: 0; transform: scale(1.06); }
  3.3% { opacity: 1; }
  16.7%{ opacity: 1; transform: scale(1); }
  20%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.06); }
}

/* Curated set: Tokyo / Japanese consulting aesthetic */
.hero-slide-1 {
  /* Modern Tokyo office interior — anchor (user-approved) */
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=2400&q=85&auto=format&fit=crop");
  animation-delay: 0s;
}
.hero-slide-2 {
  /* Tokyo gray concrete corporate building (golden-house era) */
  background-image: url("https://images.unsplash.com/photo-1565106387604-cf186f0c2987?w=2400&q=85&auto=format&fit=crop");
  animation-delay: 6s;
}
.hero-slide-3 {
  /* Modern open workspace */
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=2400&q=85&auto=format&fit=crop");
  animation-delay: 12s;
}
.hero-slide-4 {
  /* Bright modern office / consulting environment */
  background-image: url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?w=2400&q=85&auto=format&fit=crop");
  animation-delay: 18s;
}
.hero-slide-5 {
  /* Japanese-style boardroom strategy session */
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=2400&q=85&auto=format&fit=crop");
  animation-delay: 24s;
}

/* Pagination indicator (above the dark bottom band) */
.hero-pagination {
  position: absolute;
  bottom: clamp(90px, 7vw, 110px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-pagination span {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, .25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hero-pagination span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-500), #f0d8aa);
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-dot 30s infinite;
}
.hero-pagination span:nth-child(1)::after { animation-delay: 0s; }
.hero-pagination span:nth-child(2)::after { animation-delay: 6s; }
.hero-pagination span:nth-child(3)::after { animation-delay: 12s; }
.hero-pagination span:nth-child(4)::after { animation-delay: 18s; }
.hero-pagination span:nth-child(5)::after { animation-delay: 24s; }
@keyframes hero-dot {
  0%    { transform: scaleX(0); transform-origin: left; }
  3.3%  { transform: scaleX(0); }
  20%   { transform: scaleX(1); }
  20.01%{ transform-origin: right; }
  20.5% { transform: scaleX(1); }
  21%   { transform: scaleX(0); transform-origin: right; }
  100%  { transform: scaleX(0); transform-origin: left; }
}

.hero-visual .hero-globe { display: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-pagination span::after { animation: none; }
  .hero-slide-1 { opacity: 1; }
}

.hero-globe {
  position: absolute;
  left: 8%;
  bottom: 6%;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}
.globe-core {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #5b8ad6, var(--navy-700) 60%, var(--navy-900));
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  box-shadow: 0 18px 40px rgba(6, 31, 61, 0.45), inset 0 -8px 20px rgba(0, 0, 0, 0.4), inset 0 8px 20px rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.globe-core span { font-size: 30px; line-height: 1; }
.globe-core small { font-size: 11.5px; letter-spacing: 0.4em; opacity: .85; margin-top: 4px; }
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(198, 155, 93, 0.6);
}
.orbit-1 { width: 170px; height: 170px; transform: rotate(20deg); }
.orbit-2 { width: 200px; height: 200px; transform: rotate(-15deg); border-style: solid; border-color: rgba(36, 102, 196, .25); }
.orbit-3 { width: 230px; height: 230px; transform: rotate(45deg); border-color: rgba(198, 155, 93, .25); }


/* =====================================================
   STATS
   ===================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 var(--pad-x) 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat {
  position: relative;
  padding: 22px 24px 20px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }

.stat-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  color: var(--gold-500);
}
.stat small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}
.stat strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy-800);
}
.stat strong em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  margin-left: 4px;
  color: var(--ink-700);
}
.stat p {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section {
  padding: 64px var(--pad-x);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1px solid rgba(198, 155, 93, 0.55);
  border-radius: 999px;
  background: #fff;
  font-family: var(--serif-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  text-transform: uppercase;
}
.section-tag::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy-800);
}
.section-head h2 em {
  font-style: normal;
  color: var(--gold-500);
  margin: 0 4px;
  font-size: 1.1em;
}
.section-head p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--ink-700);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s, color .2s;
}
.link-arrow span { font-family: var(--serif); font-size: 18px; }
.link-arrow:hover { gap: 10px; color: var(--gold-600); }

/* =====================================================
   SERVICES
   ===================================================== */
.section-services {
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-feature {
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  border-color: rgba(198, 155, 93, 0.4);
  box-shadow: 0 18px 42px rgba(198, 155, 93, 0.18);
}

.service-num {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-500);
  letter-spacing: 0.06em;
}
.service-card h3 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy-800);
  letter-spacing: 0.04em;
}

.service-photo {
  height: 156px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.service-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.service-photo-1 { background: url(assets/img/service-consulting.png) center/cover no-repeat; }
.service-photo-2 { background: url(assets/img/ai-company-real.png) center/cover no-repeat; }
.service-photo-3 { background: url(assets/img/service-partner.png) center/cover no-repeat; }

.service-card ul {
  display: grid;
  gap: 9px;
}
.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.6;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198, 155, 93, 0.18);
}

.service-tag {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.service-tag-gold {
  background: linear-gradient(180deg, #d3ad73, var(--gold-600));
}

/* =====================================================
   ABOUT
   ===================================================== */
.section-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(48px, 5vw, 96px);
  align-items: center;
  padding: clamp(80px, 8vw, 140px) var(--pad-x);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(198, 155, 93, .05), transparent 55%),
    var(--bg-soft);
  position: relative;
}
/* Ornamental flourish at top */
.section-about::before {
  content: "";
  position: absolute;
  top: clamp(40px, 4vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: clamp(48px, 4vw, 72px);
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
}

.about-copy {
  position: relative;
  padding-right: clamp(0px, 2vw, 32px);
}
.about-copy .chapter-mark {
  margin-bottom: 28px;
}
.about-copy h2 {
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--navy-800);
  position: relative;
  padding-bottom: 24px;
}
.about-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.about-lead {
  color: var(--ink-700);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 2;
  letter-spacing: 0.02em;
}
.about-copy ul {
  display: grid;
  gap: 0;
  margin-bottom: 36px;
}
.about-copy li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.about-copy li:first-child { border-top: 1px solid var(--line); }
.about-copy li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.85em + 8px);
  width: 12px;
  height: 1px;
  background: var(--gold-500);
}
.about-copy li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: calc(0.85em + 4px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  transform: translateX(-50%);
  margin-top: 4px;
}
.about-copy .link-arrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* About diagram: AI hub with surrounding nodes */
.about-diagram {
  position: relative;
  height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 50%, rgba(36, 102, 196, .08), transparent 55%),
    #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
}
.about-diagram::before,
.about-diagram::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(36, 102, 196, .25);
}
.about-diagram::before { width: 220px; height: 220px; }
.about-diagram::after { width: 320px; height: 320px; border-color: rgba(198, 155, 93, .35); }

.diagram-center {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5b8ad6, var(--navy-700));
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(6, 31, 61, .35);
  z-index: 2;
}
.diagram-center small { font-size: 11.5px; opacity: .85; }

.diagram-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy-800);
}
.diagram-node::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-right: 8px;
}
.n1 { top: 12%; left: 50%; transform: translateX(-50%); }
.n2 { top: 26%; right: 8%; }
.n3 { bottom: 26%; right: 8%; }
.n4 { bottom: 12%; left: 50%; transform: translateX(-50%); }
.n5 { bottom: 26%; left: 8%; }
.n6 { top: 26%; left: 8%; }

/* =====================================================
   AI TOOLS
   ===================================================== */
.section-tools {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(36, 102, 196, .06), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(198, 155, 93, .06), transparent 55%),
    var(--white);
}
.tool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tool-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tool-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
}
.tool-mark-claude {
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, #f0b477, #e06542, #c44b22, #e06542 270deg, #f0b477);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
}
.tool-mark-codex {
  background:
    linear-gradient(45deg, transparent 35%, #1a1a1a 35% 50%, transparent 50%) #fff,
    linear-gradient(-45deg, transparent 35%, #1a1a1a 35% 50%, transparent 50%);
  border: 1px solid #1a1a1a;
}
.tool-mark-gemini {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, #aac4ff 30%, #2a63c7 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}

/* Real AI logos (SVG) */
.tool-logo {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--smooth, ease), box-shadow .3s;
}
.tool-card:hover .tool-logo {
  transform: scale(1.06);
  box-shadow: var(--shadow-md);
}
.tool-logo svg,
.tool-logo img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}
.tool-logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-700);
}
.tool-logo-claude { background: #faf3eb; border-color: rgba(204, 120, 92, .25); }
.tool-logo-codex { background: #f5f5f5; border-color: rgba(10, 10, 10, .15); }
.tool-logo-gemini { background: #f0f6ff; border-color: rgba(66, 133, 244, .25); }

/* Vendor label above the title */
.tool-vendor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tool-vendor::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

.tool-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.tool-card p {
  min-height: 60px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.tool-badge {
  display: inline-flex;
  padding: 4px 14px;
  border: 1px solid rgba(198, 155, 93, 0.55);
  border-radius: 999px;
  background: #fff;
  color: var(--gold-600);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

/* =====================================================
   SERVICE STRIP
   ===================================================== */
.service-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 0 var(--pad-x) 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.service-strip a {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px 8px;
  border-right: 1px solid var(--line-soft);
  color: var(--ink-700);
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
  line-height: 1.55;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
}
.service-strip a:last-child { border-right: 0; }
.service-strip a:hover { background: var(--bg); color: var(--navy-800); }

/* =====================================================
   CASES
   ===================================================== */
.section-cases {
  background: var(--bg-soft);
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.case-photo {
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.case-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.case-photo-1 { background: url(assets/img/case-manufacturing.png) center/cover no-repeat; }
.case-photo-2 { background: url(assets/img/case-construction.png) center/cover no-repeat; }
.case-photo-3 { background: url(assets/img/case-service.png) center/cover no-repeat; }

.case-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--navy-800);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.case-card h3 {
  margin: 10px 0 14px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
  color: var(--ink-900);
}
.case-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.case-card dt {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.case-card dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-600);
  line-height: 1;
}
.case-card dd em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  margin-left: 2px;
  color: var(--ink-700);
}

/* =====================================================
   INFO GRID
   ===================================================== */
.section-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  background: transparent;
}
.info-card {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--gold-500);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 22px;
  position: relative;
}
.info-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}
.info-card h2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.info-card h2 .section-tag {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.info-card h2 .section-tag::before {
  background: var(--gold-500);
}
.info-card ul { display: grid; gap: 0; }
.info-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.info-card li:last-child { border-bottom: 0; }
.info-card time {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.info-card a {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  transition: color .2s, padding-left .25s var(--smooth, ease);
}
.info-card a:hover { color: var(--gold-600); padding-left: 4px; }

/* =====================================================
   CONTACT BAR
   ===================================================== */
.contact-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  padding: clamp(56px, 6vw, 96px) var(--pad-x);
  background:
    radial-gradient(circle at 0% 0%, rgba(198, 155, 93, .18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(36, 102, 196, .25), transparent 55%),
    linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* Decorative gold flourish at top center */
.contact-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 10vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.contact-bar p {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  padding-left: clamp(24px, 3vw, 48px);
}
.contact-bar p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  font-family: var(--serif);
  white-space: nowrap;
}
.contact-tel svg { width: 22px; height: 22px; color: var(--gold-500); }
.contact-tel .tel-num { display: block; font-size: 24px; font-weight: 600; line-height: 1.1; }
.contact-tel .tel-hours {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.08em;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding: 56px var(--pad-x) 40px;
  background: linear-gradient(180deg, var(--navy-900), #02101f);
  color: #d6deeb;
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
  /* Black-on-transparent logo → white for dark footer */
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 600;
  color: #99a8c0;
  line-height: 1.85;
  margin: 0;
}
/* Legacy SVG crest fallback (if any old markup remains) */
.footer-brand .brand-crest { width: 44px; height: 56px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 2px; }
.footer-brand-text .brand-name { color: #fff; font-size: 23px; }
.footer-brand-text .brand-tag { color: var(--gold-500); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-nav h4 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-500);
}
.footer-nav a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: #b8c4d8;
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }

.copyright {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: #6a7891;
}

/* =====================================================
   PAGE TITLE (sub pages)
   ===================================================== */
.page-title {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 64px var(--pad-x) 48px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(36, 102, 196, .08), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(198, 155, 93, .08), transparent 55%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-title-text { padding: 12px 0; }
.page-title-text .section-tag { margin-bottom: 18px; }
.page-title h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin-bottom: 26px;
}
.page-title p {
  color: var(--ink-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 32px;
}
.page-title-visual {
  display: grid;
  place-items: center;
  height: clamp(280px, 28vw, 460px);
}
.page-title-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.page-title-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), rgba(6, 31, 61, 0) 50%);
}
.page-title-photo-ai-company { background: url(assets/img/ai-company-real.png) center/cover no-repeat; }
.hero-globe-lg {
  width: 320px;
  height: 320px;
}
.hero-globe-lg .globe-core {
  width: 180px;
  height: 180px;
}
.hero-globe-lg .globe-core span { font-size: 42px; }
.hero-globe-lg .globe-core small { font-size: 12.5px; }
.hero-globe-lg .orbit-1 { width: 230px; height: 230px; }
.hero-globe-lg .orbit-2 { width: 270px; height: 270px; }
.hero-globe-lg .orbit-3 { width: 320px; height: 320px; }

.section-head p strong {
  font-weight: 800;
  color: var(--navy-700);
  background: linear-gradient(to top, rgba(198, 155, 93, .25) 0 30%, transparent 30%);
  padding: 0 4px;
}

/* =====================================================
   VALUE CARDS (5)
   ===================================================== */
.section-value { background: var(--white); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.value-card {
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 155, 93, .15), rgba(198, 155, 93, .04));
  border: 1px solid rgba(198, 155, 93, .35);
  color: var(--gold-600);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
}

/* =====================================================
   STRUCTURE DIAGRAM
   ===================================================== */
.section-structure {
  background:
    radial-gradient(circle at 50% 50%, rgba(36, 102, 196, .04), transparent 55%),
    var(--bg-soft);
}
.structure-diagram {
  position: relative;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  place-items: center;
  padding: 48px 0;
}
.structure-center { position: relative; z-index: 2; }
.globe-core-md { width: 160px; height: 160px; }
.globe-core-md span { font-size: 24px; letter-spacing: 0.08em; }
.globe-core-md small { font-size: 11.5px; }

.structure-nodes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
  padding-top: 220px;
}
.structure-node {
  position: relative;
  padding: 18px 14px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.structure-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(198, 155, 93, .6));
}
.node-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(36, 102, 196, .08);
  color: var(--navy-600);
}
.node-icon svg { width: 18px; height: 18px; }
.structure-node h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.structure-node p {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-500);
}

/* =====================================================
   TOOL CARDS — extended (lists)
   ===================================================== */
.tool-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 16px;
}
.tool-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
}
.tool-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* =====================================================
   SECURITY CARDS
   ===================================================== */
.section-security { background: var(--white); }
.security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fafcff);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.security-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  border-radius: 0 0 0 100px;
  background: linear-gradient(135deg, rgba(36, 102, 196, .1), transparent);
}
.security-num {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy-600);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.security-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.security-card > p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 16px;
}
.security-card ul { display: grid; gap: 6px; padding-top: 14px; border-top: 1px dashed var(--line); }
.security-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
}
.security-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .7em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* =====================================================
   STEPS
   ===================================================== */
.section-steps { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 26px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.steps li::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-top: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
  transform: rotate(45deg);
  background: var(--bg-soft);
  z-index: 2;
}
.steps li:last-child::after { display: none; }
.step-num {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.steps p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.8;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.section-testimonials { background: var(--white); }
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 28px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  box-shadow: var(--shadow-sm);
}
.testimonial-photo {
  height: 160px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.testimonial-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.testimonial-photo-1 { background: url(assets/img/case-manufacturing.png) center/cover no-repeat; }
.testimonial-photo-2 { background: url(assets/img/case-construction.png) center/cover no-repeat; }
.testimonial-photo-3 { background: url(assets/img/case-service.png) center/cover no-repeat; }
.testimonial-card blockquote {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.testimonial-card blockquote::before {
  content: """;
  position: absolute;
  left: 0; top: -8px;
  font-family: var(--serif-display);
  font-size: 36px;
  color: var(--gold-500);
  line-height: 1;
}
.testimonial-card footer {
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card footer strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
}
.testimonial-card footer span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}

/* =====================================================
   PAGE TITLE — narrow variant (no visual)
   ===================================================== */
.page-title-narrow {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 64px var(--pad-x) 56px;
}
.page-title-narrow .page-title-text { padding: 0; }
.page-title-narrow p { max-width: 720px; margin: 0 auto; }
.page-title-narrow .section-tag { margin-bottom: 18px; }

/* =====================================================
   SERVICES LIST (services.html)
   ===================================================== */
.section-services-list { background: var(--bg-soft); }
.services-list { display: grid; gap: 28px; }
.services-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 360px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.services-list-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.services-list-item.is-reverse {
  grid-template-columns: 360px 1fr 110px;
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  border-color: rgba(198, 155, 93, 0.4);
}
.services-list-item.is-reverse .services-list-num { order: 3; text-align: right; }
.services-list-item.is-reverse .services-list-body { order: 2; }
.services-list-item.is-reverse .services-list-photo { order: 1; }

.services-list-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.04em;
  line-height: 1;
}
.services-list-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.services-list-body p {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 14px;
}
.services-list-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 22px;
}
.services-list-body li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
}
.services-list-body li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.services-list-photo {
  height: 200px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.services-list-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.services-photo-1 { background: url(assets/img/service-consulting.png) center/cover no-repeat; }
.services-photo-2 { background: url(assets/img/ai-company-real.png) center/cover no-repeat; }
.services-photo-3 { background: url(assets/img/service-partner.png) center/cover no-repeat; }

/* =====================================================
   COMPARE TABLE
   ===================================================== */
.section-compare { background: var(--white); }
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 17px;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--bg-soft);
  border-bottom: 2px solid var(--line);
  letter-spacing: 0.04em;
}
.compare-table thead th.is-feature {
  background: linear-gradient(180deg, rgba(198, 155, 93, .14), rgba(198, 155, 93, .05));
  color: var(--gold-600);
}
.compare-table tbody th {
  width: 160px;
  font-weight: 800;
  color: var(--ink-700);
  background: var(--bg-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.compare-table tbody td {
  font-weight: 700;
  color: var(--ink-700);
}
.compare-table tbody td.is-feature {
  background: rgba(198, 155, 93, .06);
  color: var(--navy-800);
  font-weight: 800;
}
.compare-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}
.compare-tag.gold { background: var(--gold-500); }
.stars {
  color: var(--gold-500);
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* =====================================================
   MENU MATRIX
   ===================================================== */
.section-menu { background: var(--bg-soft); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-col {
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.menu-col.is-feature {
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  border-color: rgba(198, 155, 93, 0.45);
  box-shadow: 0 18px 36px rgba(198, 155, 93, .14);
}
.menu-col h3 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
}
.menu-col ul { display: grid; gap: 8px; }
.menu-col li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
}
.menu-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

/* =====================================================
   SEMINAR CARDS
   ===================================================== */
.section-seminar-list { background: var(--white); }
.seminar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.seminar-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.seminar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seminar-photo {
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.seminar-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.seminar-photo-1 { background: url(assets/img/service-consulting.png) center/cover no-repeat; }
.seminar-photo-2 { background: url(assets/img/service-partner.png) center/cover no-repeat; }
.seminar-photo-3 { background: url(assets/img/case-construction.png) center/cover no-repeat; }
.seminar-card time {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
}
.seminar-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.7;
  margin-bottom: auto;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px var(--pad-x);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--ink-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--navy-600); }
.breadcrumb span[aria-current] { color: var(--navy-800); font-weight: 800; }
.breadcrumb > span:not([aria-current]) { color: var(--ink-300); font-size: 14px; }

/* =====================================================
   PAGE TITLE — detail variant (collage visual)
   ===================================================== */
.page-title-detail {
  grid-template-columns: 1fr 480px;
  gap: 36px;
}
.page-title-collage {
  position: relative;
  height: 400px;
}
.collage-photo {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.collage-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .3), transparent 60%);
}
.collage-photo-1 {
  top: 0; left: 0; width: 64%; height: 56%;
  background: url(assets/img/service-consulting.png) center/cover no-repeat;
}
.collage-photo-2 {
  top: 18%; right: 0; width: 50%; height: 60%;
  background: url(assets/img/case-construction.png) center/cover no-repeat;
}
.collage-photo-3 {
  bottom: 0; left: 14%; width: 60%; height: 44%;
  background: url(assets/img/service-partner.png) center/cover no-repeat;
}

/* =====================================================
   ISSUES (question cards)
   ===================================================== */
.section-issues { background: var(--white); }
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.issue-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fbfdff, #fff);
  box-shadow: var(--shadow-sm);
}
.issue-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(6, 31, 61, .25);
}
.issue-card p {
  margin: 0;
  padding-top: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.75;
}

/* =====================================================
   VALUE GRID 3x2 variant
   ===================================================== */
.value-grid-3x2 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-grid-3x2 .value-card { padding: 28px 24px; }
.value-grid-3x2 .value-card h3 { font-size: 20px; }
.value-grid-3x2 .value-card p { font-size: 14px; }

/* =====================================================
   LOGO GRID
   ===================================================== */
.section-tools-logos { background: var(--bg-soft); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.logo-cell {
  display: grid;
  place-items: center;
  height: 80px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  background: #fff;
  transition: background .2s, color .2s;
}
.logo-cell:hover { background: var(--bg-soft); color: var(--gold-600); }
.logo-cell:nth-child(6n) { border-right: 0; }
.logo-cell:nth-last-child(-n+6) { border-bottom: 0; }

/* =====================================================
   PLAN CARDS
   ===================================================== */
.section-plans { background: var(--white); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.is-feature {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-color: var(--gold-500);
  box-shadow: 0 22px 50px rgba(6, 31, 61, 0.32);
}
.plan-card.is-feature h3,
.plan-card.is-feature .plan-target,
.plan-card.is-feature .plan-price strong,
.plan-card.is-feature li { color: #fff; }
.plan-card.is-feature .plan-price em { color: var(--gold-500); }
.plan-card.is-feature li::before { background: var(--gold-500); }

.plan-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d3ad73, var(--gold-600));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 18px rgba(198, 155, 93, .35);
}
.plan-card h3 {
  font-family: var(--serif-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.plan-target {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.plan-price {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--serif);
  color: var(--navy-800);
}
.plan-card.is-feature .plan-price { border-bottom-color: rgba(255, 255, 255, .15); }
.plan-price strong { font-size: 38px; font-weight: 600; line-height: 1; }
.plan-price em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  margin-left: 4px;
  color: var(--ink-700);
}
.plan-card ul { display: grid; gap: 8px; }
.plan-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
}
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* 4-step variant */
.steps-4 { grid-template-columns: repeat(4, 1fr); }

/* =====================================================
   FAQ
   ===================================================== */
.section-faq { background: var(--bg-soft); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.faq[open] { box-shadow: var(--shadow-md); }
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 56px 18px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-800);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-500);
  transition: transform .25s;
}
.faq[open] summary::after { content: "−"; }
.faq p {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0 24px 22px 72px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
}

/* =====================================================
   TARGETS (3-col description cards)
   ===================================================== */
.section-targets { background: var(--bg-soft); }
.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.target-card {
  position: relative;
  padding: 32px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.target-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.target-num {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-family: var(--serif-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(6, 31, 61, .2);
}
.target-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.target-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
}

/* 3-col plan variant */
.plan-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* =====================================================
   PROCESS 6 (numbered cards)
   ===================================================== */
.section-process6 { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  position: relative;
  padding: 26px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fafcff);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.process-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process-num {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-500);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.process-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.process-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
}

/* =====================================================
   METRICS
   ===================================================== */
.section-metrics {
  background:
    radial-gradient(circle at 20% 20%, rgba(198, 155, 93, .08), transparent 55%),
    var(--bg-soft);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric-card {
  padding: 28px 24px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fafcff);
  box-shadow: var(--shadow-sm);
}
.metric-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-500);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.metric-value {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-700);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.metric-value em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-600);
  margin-left: 2px;
}
.metric-note {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-500);
}

/* =====================================================
   INDUSTRIES
   ===================================================== */
.section-industries { background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  padding: 24px 14px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s;
}
.industry-card:hover { transform: translateY(-3px); }
.industry-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  filter: grayscale(.2);
}
.industry-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.industry-card p {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-500);
  line-height: 1.6;
}

/* =====================================================
   FILTERS (chips)
   ===================================================== */
.filters {
  padding: 24px var(--pad-x);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-label {
  margin-right: 8px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.12em;
}
.filter-chip {
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-700);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-chip:hover {
  background: var(--bg-soft);
  color: var(--navy-800);
}
.filter-chip.is-active {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border-color: var(--navy-800);
  color: #fff;
}

/* =====================================================
   FEATURED CASE
   ===================================================== */
.section-case-feature { background: var(--bg-soft); padding-bottom: 24px; }
.case-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  align-items: center;
}
.case-feature-photo {
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.case-feature-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.case-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.case-tag-line {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.case-corp {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.case-feature h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.case-lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 22px;
}
.case-feature-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 24px;
  padding: 18px 22px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.case-feature-metrics dt {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}
.case-feature-metrics dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1;
}
.case-feature-metrics dd em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  margin-left: 2px;
  color: var(--ink-700);
}

/* =====================================================
   CASE GRID & PAGINATION
   ===================================================== */
.section-case-grid { background: var(--bg-soft); padding-top: 32px; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case-grid .case-card {
  display: flex;
  flex-direction: column;
}
.case-grid .case-card h3 { margin-bottom: auto; padding-bottom: 12px; }
.case-grid .case-card .link-arrow {
  align-self: flex-start;
  margin-top: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.page-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-700);
  transition: all .2s;
}
.page-link:hover {
  background: var(--bg-soft);
  color: var(--navy-800);
}
.page-link.is-active {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  border-color: var(--navy-800);
}

/* =====================================================
   DOWNLOAD BANNER (whitepaper)
   ===================================================== */
.download-banner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px var(--pad-x);
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 155, 93, .15), transparent 55%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
}
.download-content .section-tag {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(198, 155, 93, .6);
  margin-bottom: 16px;
}
.download-content h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.download-content > p {
  font-size: 14px;
  font-weight: 700;
  color: #b8c4d8;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.download-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.download-authors {
  display: flex;
}
.author-photo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-right: -10px;
}
.author-photo-1 { background: url(assets/img/case-manufacturing.png) center/cover no-repeat; }
.author-photo-2 { background: url(assets/img/case-construction.png) center/cover no-repeat; }
.author-photo-3 { background: url(assets/img/case-service.png) center/cover no-repeat; }
.download-meta p {
  font-size: 12.5px;
  font-weight: 700;
  color: #b8c4d8;
  letter-spacing: 0.06em;
}

.download-cover {
  display: grid;
  place-items: center;
}
.cover-book {
  display: grid;
  place-items: center;
  width: 240px;
  height: 320px;
  padding: 32px 24px;
  background:
    linear-gradient(180deg, #0a2547 0%, #04162e 100%);
  border: 1px solid rgba(198, 155, 93, .4);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  text-align: center;
  color: #fff;
  position: relative;
}
.cover-book::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 155, 93, .25);
  pointer-events: none;
}
.cover-mark {
  display: block;
  width: 60px;
  height: 80px;
  margin-bottom: 18px;
}
.cover-mark svg { width: 100%; height: 100%; }
.cover-name {
  display: block;
  font-family: var(--serif-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.cover-tag {
  display: block;
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-500);
}

/* =====================================================
   PAGE TITLE — crest variant (decorative crest image)
   ===================================================== */
.page-title-crest {
  display: grid;
  place-items: center;
  height: 380px;
}
.page-title-crest svg,
.page-title-crest img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  opacity: .85;
  filter: drop-shadow(0 12px 28px rgba(6, 31, 61, .14));
}

/* =====================================================
   FEATURED LOGOS (large)
   ===================================================== */
.section-featured-logos { background: var(--white); }
.logo-grid-large { grid-template-columns: repeat(6, 1fr); }
.logo-grid-large .logo-cell { height: 100px; font-size: 14px; }

/* =====================================================
   ARTICLES (media list)
   ===================================================== */
.section-articles { background: var(--bg-soft); }
.articles {
  display: grid;
  gap: 18px;
}
.article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.article-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.article-thumb {
  height: 130px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.article-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.article-thumb-1 { background: url(assets/img/ai-company-real.png) center/cover no-repeat; }
.article-thumb-2 { background: url(assets/img/service-consulting.png) center/cover no-repeat; }
.article-thumb-3 { background: url(assets/img/service-partner.png) center/cover no-repeat; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.article-meta time {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.55;
}
.article-body > p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 12px;
}

/* =====================================================
   BROADCAST GRID (TV/Radio/Web)
   ===================================================== */
.section-broadcast { background: var(--white); }
.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.broadcast-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fafcff);
  box-shadow: var(--shadow-sm);
}
.broadcast-cat {
  display: inline-flex;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.broadcast-card time {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.broadcast-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.65;
}

/* =====================================================
   MEDIA KIT (2-col CTA)
   ===================================================== */
.section-mediakit {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 48px var(--pad-x);
}
.mediakit-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.mediakit-card-rose {
  background: linear-gradient(135deg, #fff5f5, #ffe9ef);
  border-color: rgba(185, 17, 70, .25);
}
.mediakit-card .section-tag { margin-bottom: 8px; }
.mediakit-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.mediakit-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.75;
}

/* =====================================================
   SEARCH BOX
   ===================================================== */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  max-width: 320px;
  margin-left: auto;
}
.search-box svg {
  width: 16px;
  height: 16px;
  color: var(--ink-500);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  outline: 0;
}
.search-box input::placeholder { color: var(--ink-300); }

/* =====================================================
   NEWS LAYOUT
   ===================================================== */
.section-news { background: var(--bg-soft); }
.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.section-subtitle {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-thumb {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.news-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  flex: 1;
}
.news-card-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 6px;
}
.news-card-body p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: auto;
}
.news-card-body .link-arrow { align-self: flex-start; padding-top: 8px; }

/* =====================================================
   SIDEBAR
   ===================================================== */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 104px;
  align-self: start;
}
.sidebar-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sidebar-card ol,
.sidebar-card ul { display: grid; gap: 10px; }
.sidebar-card ol li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rank {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}
.sidebar-card ol li:nth-child(1) .rank { background: linear-gradient(180deg, #d3ad73, var(--gold-600)); }
.sidebar-card ol li:nth-child(2) .rank { background: linear-gradient(180deg, #b8c4d8, #6a7891); }
.sidebar-card ol li:nth-child(3) .rank { background: linear-gradient(180deg, #c69b5d, #8b6332); opacity: .8; }
.sidebar-card ol li > div { display: flex; flex-direction: column; gap: 2px; }
.sidebar-card ol a {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.55;
  transition: color .2s;
}
.sidebar-card ol a:hover { color: var(--gold-600); }
.sidebar-card time {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
}

.sidebar-cats li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  transition: color .2s;
}
.sidebar-cats li a:hover { color: var(--navy-600); }
.sidebar-cats em {
  font-style: normal;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-600);
  background: rgba(198, 155, 93, .08);
  padding: 2px 10px;
  border-radius: 999px;
}

.sidebar-archive li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  transition: color .2s;
}
.sidebar-archive li a:hover { color: var(--navy-600); }

/* =====================================================
   SECURITY PITCH v2 (CCSI-LLM-Security · Defense Stack)
   ===================================================== */
.section-security-pitch {
  position: relative;
  padding: clamp(72px, 7vw, 128px) var(--pad-x);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(36, 102, 196, .25) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(198, 155, 93, .12) 0%, transparent 55%),
    linear-gradient(135deg, #04162e 0%, #0a2a55 50%, #061f3d 100%);
  color: #fff;
  overflow: hidden;
  font-family: var(--sans);
}
.sec-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(198, 155, 93, .045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(198, 155, 93, .045) 1px, transparent 1px) 0 0 / 56px 56px;
  pointer-events: none;
  opacity: .55;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Section head — left aligned, asymmetric */
.sec-head {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: clamp(48px, 5vw, 80px);
}
.sec-tag {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 24px;
}
.sec-title em {
  font-style: italic;
  color: var(--gold-500);
}
.sec-lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #c5d2e6;
  margin: 0;
  max-width: 720px;
}
.sec-lead strong {
  color: var(--gold-500);
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Main grid: stack on left, side on right */
.sec-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
  align-items: start;
}

/* Left: Defense stack */
.sec-stack {
  border: 1px solid rgba(198, 155, 93, .25);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
  padding: 28px 32px;
}
.sec-stack-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(198, 155, 93, .25);
  margin-bottom: 20px;
}
.sec-stack-label {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-500);
}
.sec-stack-meta {
  font-family: var(--serif-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #c5d2e6;
}
.sec-layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.sec-layer {
  display: grid;
  grid-template-columns: auto 180px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 155, 93, .15);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .02) 0%, rgba(198, 155, 93, .03) 100%);
  transition: background .25s, border-color .25s;
}
.sec-layer:hover {
  border-color: rgba(198, 155, 93, .55);
  background: linear-gradient(90deg, rgba(255, 255, 255, .04) 0%, rgba(198, 155, 93, .08) 100%);
}
.sec-layer-num {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-500);
}
.sec-layer-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.sec-layer-en {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8aa0c0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec-layer-bar {
  display: block;
  width: clamp(80px, 8vw, 140px);
  height: 4px;
  background: rgba(198, 155, 93, .12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.sec-layer-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-500), #f0d8aa);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: sec-fill 1.2s var(--smooth, ease) forwards;
  animation-delay: calc(var(--i) * 100ms);
}
@keyframes sec-fill {
  to { transform: scaleX(1); }
}
.sec-layer-status {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #76d49b;
  padding: 3px 10px;
  border: 1px solid rgba(118, 212, 155, .35);
  border-radius: 3px;
  background: rgba(118, 212, 155, .08);
}

/* Right side: terminal + threats */
.sec-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sec-terminal {
  border: 1px solid rgba(198, 155, 93, .25);
  border-radius: 8px;
  background: #050d1c;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}
.sec-term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #0a1628 0%, #050d1c 100%);
  border-bottom: 1px solid rgba(198, 155, 93, .15);
}
.sec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sec-dot-r { background: #ff5f57; }
.sec-dot-y { background: #febc2e; }
.sec-dot-g { background: #28c840; }
.sec-term-name {
  margin-left: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6a7891;
}
.sec-term-body {
  margin: 0;
  padding: 18px 20px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12.5px;
  line-height: 1.85;
  color: #c5d2e6;
  white-space: pre-wrap;
}
.t-dim { color: #6a7891; }
.t-ok { color: #76d49b; font-weight: 700; }
.t-gold { color: var(--gold-500); font-weight: 700; }

.sec-threats {
  border: 1px solid rgba(185, 17, 70, .25);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(185, 17, 70, .04) 0%, rgba(0, 0, 0, .15) 100%);
  padding: 22px 24px;
}
.sec-threats .sec-stack-label { color: #ff7896; }
.sec-threats ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.sec-threats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #e3e9f3;
  letter-spacing: 0.02em;
}
.sec-threat-x {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: rgba(185, 17, 70, .15);
  border: 1px solid rgba(185, 17, 70, .55);
  color: #ff7896;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Bottom CTA bar */
.sec-cta-bar {
  position: relative;
  z-index: 1;
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: clamp(24px, 2.5vw, 36px);
  border-top: 1px solid rgba(198, 155, 93, .25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(198, 155, 93, .35);
  border-radius: 4px;
  background: rgba(0, 0, 0, .25);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-500);
}
.sec-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #76d49b;
  box-shadow: 0 0 0 2px rgba(118, 212, 155, .25);
  animation: sec-pulse 2s ease infinite;
}
@keyframes sec-pulse {
  50% { opacity: .4; }
}

.sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--gold-500);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(198, 155, 93, .12) 0%, rgba(198, 155, 93, .04) 100%);
  color: #fff;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.sec-cta:hover {
  background: linear-gradient(180deg, rgba(198, 155, 93, .25) 0%, rgba(198, 155, 93, .12) 100%);
  transform: translateY(-2px);
}
.sec-cta svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
}
.sec-cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.sec-cta-line {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8aa0c0;
}
.sec-cta-name {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.sec-cta-arrow {
  font-size: 18px;
  color: var(--gold-500);
  transition: transform .25s var(--smooth, ease);
}
.sec-cta:hover .sec-cta-arrow {
  transform: translateX(4px);
}

.security-pitch-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
}

.section-head-left { text-align: left; max-width: 480px; margin-bottom: 0; }
.section-head-left .section-tag {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(198, 155, 93, .55);
  color: var(--gold-500);
}
.section-head-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 18px 0 22px;
  position: relative;
  padding-bottom: 18px;
}
.section-head-left h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.section-head-left p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  color: #c5d2e6;
  max-width: none;
}
.section-head-left strong {
  color: var(--gold-500);
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: none;
  padding: 0;
}

.security-pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.security-pitch-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(198, 155, 93, .25);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(198, 155, 93, .02) 100%);
  backdrop-filter: blur(4px);
  transition: transform .25s var(--smooth, ease), border-color .25s, background .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-pitch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 155, 93, .55);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, rgba(198, 155, 93, .04) 100%);
}
.security-pitch-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 155, 93, .55) 50%, transparent);
}

.security-pitch-num {
  font-family: var(--serif-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.security-pitch-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 155, 93, .12);
  border: 1px solid rgba(198, 155, 93, .35);
  color: var(--gold-500);
}
.security-pitch-icon svg { width: 22px; height: 22px; }

.security-pitch-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}
.security-pitch-card ul {
  display: grid;
  gap: 8px;
}
.security-pitch-card li {
  position: relative;
  padding-left: 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  color: #cfd9e9;
}
.security-pitch-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-500);
  border-radius: 3px;
  background: rgba(198, 155, 93, .12);
}
.security-pitch-card li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.85em;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--gold-500);
  border-bottom: 1.5px solid var(--gold-500);
  transform: rotate(-45deg);
}

.security-pitch-card.is-cta { background: linear-gradient(180deg, rgba(198, 155, 93, .10) 0%, rgba(198, 155, 93, .04) 100%); }
.security-pitch-card.is-cta p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.85;
  color: #c5d2e6;
}
.security-pitch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.security-pitch-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(198, 155, 93, .55);
  border-radius: 4px;
  background: rgba(0, 0, 0, .25);
  font-family: var(--serif-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold-500);
}
.security-pitch-card.is-cta .btn-rose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

/* =====================================================
   TOP NOTICE BAR (重要なお知らせ)
   ===================================================== */
.top-notice {
  position: relative;
  background:
    linear-gradient(90deg, rgba(198, 155, 93, .08) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(198, 155, 93, .08) 100%),
    #fbf6ec;
  border-bottom: 1px solid rgba(198, 155, 93, .35);
  z-index: 49;
}
.top-notice::before,
.top-notice::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gold-500);
}
.top-notice::before { left: 0; }
.top-notice::after { right: 0; }
.top-notice-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--pad-x);
}
.top-notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--navy-800);
  color: var(--gold-500);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  border-radius: 3px;
  white-space: nowrap;
}
.top-notice-tag-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198, 155, 93, .25);
  animation: hero-pulse 2s ease infinite;
}
.top-notice-date {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.top-notice-text {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.top-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--gold-600);
  border-radius: 3px;
  background: transparent;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.top-notice-link span {
  font-family: var(--serif);
  font-size: 14px;
  transition: transform .25s var(--smooth, ease);
}
.top-notice-link:hover {
  background: var(--gold-600);
  color: #fff;
}
.top-notice-link:hover span { transform: translateX(3px); }

/* =====================================================
   JP CORPORATE REFINEMENTS
   scroll progress · right rail · vertical accent labels
   ===================================================== */

/* Scroll progress bar (top, gold gradient) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(198, 155, 93, .12);
  z-index: 200;
  pointer-events: none;
}
.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-500), #f0d8aa);
  transform-origin: left;
  transform: scaleX(var(--scroll, 0));
  animation: scroll-track linear;
  animation-timeline: scroll(root);
}
@keyframes scroll-track {
  to { transform: scaleX(1); }
}

/* Right-side fixed quick rail (JP corporate pattern) */
.quick-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(6, 31, 61, .14);
}
.quick-rail-item,
.quick-rail-back {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--navy-800);
  text-decoration: none;
  transition: background .25s, color .25s;
  position: relative;
}
.quick-rail-item span {
  position: absolute;
  bottom: 4px;
  font-family: var(--serif-display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-600);
}
.quick-rail-item svg,
.quick-rail-back svg {
  width: 18px;
  height: 18px;
  margin-top: -6px;
}
.quick-rail-back svg { margin-top: 0; }
.quick-rail-item:hover,
.quick-rail-back:hover {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
}
.quick-rail-item:hover span { color: var(--gold-500); }
.quick-rail-back {
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  border-radius: 0 0 999px 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.quick-rail-back:hover { background: var(--navy-800); border-color: var(--navy-800); }

/* Vertical English label (decorative side accent for sections) */
.section-services-list,
.section-cases-editorial {
  position: relative;
}
.section-services-list::before,
.section-cases-editorial::before {
  content: attr(data-vlabel, "");
  position: absolute;
  top: clamp(64px, 6vw, 120px);
  left: max(8px, calc((100% - var(--container)) / 2 - 28px));
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.62em;
  color: var(--gold-600);
  opacity: .55;
  pointer-events: none;
  text-transform: uppercase;
}
.section-services-list[data-vlabel]::before { content: attr(data-vlabel); }
.section-cases-editorial[data-vlabel]::before { content: attr(data-vlabel); }

/* =====================================================
   ENTERPRISE / EDITORIAL POLISH
   chapter marks · editorial stats · cases featured+archive
   diagonal accents · aligned CTAs · clipped corners
   ===================================================== */

/* ---------- Section head SPLIT (title + lead/index two-col) ---------- */
.section-head-split { max-width: none; }
.section-head-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-top: 6px;
}
.section-head-split-title { padding-right: 16px; }
.section-head-split-title h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.25;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.section-head-split-meta {
  position: relative;
  padding-left: 32px;
}
.section-head-split-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-500) 30%, var(--gold-500) 70%, transparent 100%);
}
.section-head-split-meta p {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  color: var(--ink-700);
  max-width: none;
}
.section-head-split-meta strong {
  color: var(--gold-600);
  font-family: var(--serif);
  font-weight: 600;
}

/* Section index — typographic TOC */
.section-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.section-index li {
  border-top: 1px solid var(--line);
}
.section-index li:last-child {
  border-bottom: 1px solid var(--line);
}
.section-index a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  transition: color .25s, padding .25s var(--smooth, ease);
}
.section-index a::after {
  content: "→";
  color: var(--gold-500);
  font-size: 16px;
  transition: transform .25s var(--smooth, ease);
}
.section-index a:hover {
  color: var(--gold-600);
  padding-left: 8px;
}
.section-index a:hover::after { transform: translateX(4px); }
.section-index a span {
  font-family: var(--serif-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  font-variant-numeric: tabular-nums;
}
.section-index a em {
  font-style: normal;
  font-weight: 700;
}

/* ---------- DIAGONAL accents (corner cuts, slanted rules) ---------- */

/* Service zigzag — photo (no corner cut, plain rounded) */

/* Diagonal stripe accent at section-end */
.section-services-list,
.section-cases-editorial {
  position: relative;
}
.section-services-list::after,
.section-cases-editorial::after {
  content: "";
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  height: 1px;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 6px,
      rgba(198, 155, 93, .35) 6px,
      rgba(198, 155, 93, .35) 8px
    );
  opacity: .55;
}

/* ---------- Service Strip — integrated into Services section ---------- */
.service-strip-wrap {
  margin-top: clamp(48px, 5vw, 80px);
  padding-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line);
  position: relative;
}
.service-strip-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.service-strip-head {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: clamp(16px, 2vw, 32px);
}
.strip-label {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  text-transform: uppercase;
  padding-bottom: 6px;
}
.service-strip-head h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  white-space: nowrap;
}
.service-strip-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  line-height: 1.7;
  text-align: right;
  padding-bottom: 4px;
}

/* Override the default service-strip in this context */
.service-strip-wrap .service-strip {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.service-strip-wrap .service-strip a {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  align-items: start;
  justify-items: start;
  padding: 22px 18px 20px;
  border-right: 1px solid var(--line-soft);
  background: transparent;
  color: var(--ink-700);
  font-size: 12.5px;
  font-weight: 800;
  text-align: left;
  line-height: 1.55;
  letter-spacing: 0.02em;
  min-height: 140px;
  transition: background .25s, color .25s;
  overflow: hidden;
}
.service-strip-wrap .service-strip a:last-child { border-right: 0; }
.service-strip-wrap .service-strip a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  transition: width .35s var(--smooth, ease);
}
.service-strip-wrap .service-strip a:hover {
  background: var(--bg-soft);
  color: var(--navy-800);
}
.service-strip-wrap .service-strip a:hover::before { width: 100%; }
.strip-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-600);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.strip-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.strip-arrow {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-500);
  align-self: end;
  justify-self: end;
  transition: transform .25s var(--smooth, ease);
}
.service-strip-wrap .service-strip a:hover .strip-arrow {
  transform: translateX(4px);
}

/* ---------- Services Editorial (magazine spread style) ---------- */
.services-editorial {
  display: grid;
  gap: clamp(80px, 8vw, 140px);
  margin-top: clamp(36px, 4vw, 60px);
}

.srv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
  position: relative;
}
.srv-row.is-reverse .srv-photo { order: 2; }
.srv-row.is-reverse .srv-body { order: 1; }

/* Photo with floating big number — number escapes via overflow:visible */
.srv-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  /* no overflow:hidden so .srv-photo-num can extend beyond */
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 60px rgba(6, 31, 61, .14);
}
.srv-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6, 31, 61, .15) 0%, transparent 50%);
  pointer-events: none;
}
.srv-photo-num {
  position: absolute;
  top: clamp(-72px, -5.5vw, -40px);
  left: clamp(-18px, -1.4vw, -10px);
  font-family: var(--serif);
  font-size: clamp(80px, 8vw, 140px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--gold-500);
  text-shadow:
    0 6px 24px rgba(6, 31, 61, .35),
    0 1px 0 rgba(255, 255, 255, .6);
  z-index: 10;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.srv-row.is-reverse .srv-photo-num {
  left: auto;
  right: clamp(-18px, -1.4vw, -10px);
}
.srv-photo-flag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d3ad73 0%, var(--gold-600) 100%);
  color: #fff;
  font-family: var(--serif-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  box-shadow: 0 6px 18px rgba(198, 155, 93, .4);
  z-index: 3;
}

/* Body editorial typography */
.srv-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(8px, 1vw, 16px) 0;
}
.srv-kicker {
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.srv-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}
.srv-body h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin: 0;
  position: relative;
  padding-bottom: 18px;
}
.srv-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.srv-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
  color: var(--ink-700);
}

/* Meta tabular grid */
.srv-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.srv-meta > div {
  border-right: 1px solid var(--line);
  padding-right: 14px;
}
.srv-meta > div:last-child { border-right: 0; padding-right: 0; }
.srv-meta dt {
  display: block;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.srv-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
}

/* CTA — minimalist bordered link */
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--navy-800);
  border-radius: 4px;
  background: var(--navy-800);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  align-self: flex-start;
  transition: background .25s, color .25s, gap .25s var(--smooth, ease);
}
.srv-link .srv-arrow {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-500);
  transition: transform .25s var(--smooth, ease);
}
.srv-link:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  gap: 16px;
}
.srv-link:hover .srv-arrow {
  color: #fff;
  transform: translateX(4px);
}

/* (decorative diagonal removed for tighter alignment) */

/* ---------- CTA aligned across info-card list (consistency) ---------- */
.info-card {
  display: flex;
  flex-direction: column;
}
.info-card ul { margin-top: 4px; flex: 1; }

/* ---------- Plan card CTA alignment ---------- */
.plan-card { display: flex; flex-direction: column; }
.plan-card ul { flex: 1; }



/* ---------- Chapter mark (§ 0X / hairline / page indicator) ---------- */
.chapter-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(198, 155, 93, .35);
  max-width: 100%;
}
.chapter-mark.chapter-mark-inline {
  margin-bottom: 16px;
  padding-bottom: 12px;
}
.chapter-mark.chapter-mark-dark {
  border-bottom-color: rgba(198, 155, 93, .35);
}
.chapter-num {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--gold-600);
  text-transform: uppercase;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.chapter-mark-dark .chapter-num { color: var(--gold-500); }
.chapter-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 155, 93, .55) 0%, rgba(198, 155, 93, .15) 100%);
}
.chapter-mark-dark .chapter-rule {
  background: linear-gradient(90deg, rgba(198, 155, 93, .55) 0%, rgba(198, 155, 93, .15) 100%);
}
.chapter-page {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--ink-500);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.chapter-mark-dark .chapter-page { color: #8aa0c0; }

/* Section head with corporate / editorial treatment */
.section-head-corp {
  text-align: left;
  max-width: 920px;
  margin-left: 0;
}
/* Split layout uses full section width */
.section-head-corp.section-head-split,
.section-head-split {
  max-width: none;
}
.section-head-corp h2 {
  margin-top: 16px;
}
.section-head-corp p {
  margin: 18px 0 0;
  max-width: 720px;
  text-align: left;
}

/* Section-head-row inside section-head-corp */
.section-head-corp .section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 6px;
}

/* ---------- STATS — editorial refinement ---------- */
.stats {
  position: relative;
  border: 0;
  border-top: 1px solid rgba(198, 155, 93, .35);
  border-bottom: 1px solid rgba(198, 155, 93, .35);
  border-radius: 0;
  background: var(--bg-soft);
  margin: 0 0 64px;
  padding: 40px var(--pad-x) 36px;
  box-shadow: none;
}
.stats::before {
  content: "§ Our Impact";
  position: absolute;
  left: var(--pad-x);
  top: -10px;
  background: var(--bg-soft);
  padding: 0 14px;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  text-transform: uppercase;
}
.stats .stat {
  border-right: 1px solid rgba(198, 155, 93, .15);
  padding: 12px 28px 8px;
  background: transparent;
}
.stats .stat:first-child { padding-left: 0; }
.stats .stat:last-child { border-right: 0; padding-right: 0; }
.stats .stat-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  color: var(--gold-500);
  opacity: .85;
}
.stats .stat small {
  display: block;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stats .stat strong {
  display: block;
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums lining-nums;
}
.stats .stat strong em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.34em;
  font-weight: 800;
  margin-left: 4px;
  color: var(--gold-600);
}
.stats .stat p {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* ---------- CASES editorial (featured + archive) ---------- */
.section-cases-editorial {
  background: var(--bg-soft);
}
.cases-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.case-feature-corp {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.case-feature-corp .case-feature-photo {
  height: clamp(280px, 30vw, 420px);
  border-radius: 0;
  margin: 0;
}
.case-feature-corp .case-feature-body {
  padding: clamp(28px, 3vw, 40px);
}
.case-feature-corp h3 {
  margin: 12px 0 14px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}
.case-feature-corp .case-corp {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-600);
}
.case-feature-corp .case-lead {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.95;
  color: var(--ink-700);
}

/* Archive list */
.cases-archive {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.case-archive-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 140px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--smooth, ease), box-shadow .25s, border-color .25s;
}
.case-archive-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 155, 93, .45);
}
.case-archive-num {
  font-family: var(--serif-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-600);
}
.case-archive-photo {
  height: 84px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.case-archive-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 31, 61, .25), transparent 60%);
}
.case-archive-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.case-archive-body h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.case-archive-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin: 0;
}
.case-archive-body dt {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}
.case-archive-body dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.case-archive-body dd em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65em;
  font-weight: 800;
  margin-left: 2px;
  color: var(--gold-600);
}
.case-archive-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  color: var(--navy-700);
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}
.case-archive-item:hover .case-archive-arrow {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}

/* ---------- WHY US (4 differentiator cards) ---------- */
.section-why-us {
  background: var(--white);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(40px, 4vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  overflow: hidden;
}
.why-card {
  position: relative;
  padding: clamp(28px, 2.6vw, 40px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s var(--smooth, ease);
}
.why-card:last-child { border-right: 0; }
.why-card:hover { background: var(--bg-soft); }
.why-card-feature {
  background: linear-gradient(180deg, rgba(198, 155, 93, .08) 0%, rgba(198, 155, 93, .02) 100%);
}
.why-card-feature:hover {
  background: linear-gradient(180deg, rgba(198, 155, 93, .15) 0%, rgba(198, 155, 93, .04) 100%);
}
.why-num {
  font-family: var(--serif);
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-500);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  position: relative;
  padding-bottom: 14px;
}
.why-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}
.why-card h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}
.why-card p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0;
  flex: 1;
}
.why-card p strong {
  color: var(--gold-600);
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.why-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-top: auto;
}
.why-tag-gold {
  border-color: rgba(198, 155, 93, .55);
  background: linear-gradient(180deg, #fffaf2, #fff);
  color: var(--gold-600);
}

/* ---------- Info Wrap ---------- */
.section-info-wrap {
  background: var(--white);
}
.section-info-wrap .section-info {
  padding: 0;
  background: transparent;
  margin-top: clamp(28px, 3vw, 48px);
}

/* ---------- Process Flow (Tech-corp 5 step horizontal) ---------- */
.section-process-flow {
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(36, 102, 196, .25) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(198, 155, 93, .12) 0%, transparent 55%),
    linear-gradient(135deg, #04162e 0%, #0a2a55 50%, #061f3d 100%);
  color: #fff;
  overflow: hidden;
}
.section-process-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(198, 155, 93, .045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(198, 155, 93, .045) 1px, transparent 1px) 0 0 / 56px 56px;
  pointer-events: none;
  opacity: .55;
}
.section-process-flow .section-head-corp h2 { color: #fff; }
.section-process-flow .section-head-corp .section-tag {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(198, 155, 93, .55);
  color: var(--gold-500);
}
.section-process-flow .section-head-split-meta p { color: #c5d2e6; }
.section-process-flow .section-head-split-meta strong { color: var(--gold-500); }
.section-process-flow .section-head-split-meta::before {
  background: linear-gradient(180deg, transparent 0%, var(--gold-500) 30%, var(--gold-500) 70%, transparent 100%);
}

.process-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pf;
}
.process-flow-item {
  position: relative;
  padding: 28px 24px 24px;
  border-right: 1px solid rgba(198, 155, 93, .15);
  text-align: left;
}
.process-flow-item:last-child { border-right: 0; }

.process-flow-num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  background: rgba(198, 155, 93, .08);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-500);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
}

/* Connecting line between steps — at vertical center of circles */
.process-flow-line {
  position: absolute;
  top: calc(28px + 28px); /* padding-top + half-circle */
  left: calc(24px + 56px + 12px); /* padding-left + circle width + 12px gap after */
  right: calc(-1 * (24px - 12px)); /* end 12px BEFORE next circle's left edge */
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(198, 155, 93, .55) 0,
    rgba(198, 155, 93, .55) 6px,
    transparent 6px,
    transparent 10px
  );
  transform: translateY(-0.5px);
  z-index: 1;
  pointer-events: none;
}

.process-flow-item h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.process-flow-item p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
  color: #c5d2e6;
  margin-bottom: 14px;
}
.process-flow-meta {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(198, 155, 93, .35);
  border-radius: 4px;
  background: rgba(0, 0, 0, .25);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-500);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  :root { --gutter: 36px; }
  .hero h1 { font-size: 42px; }
  .global-nav { gap: 20px; font-size: 13px; }
  .header-tel .tel-num { font-size: 20px; }
  .stats { grid-template-columns: repeat(5, 1fr); }
  .stat strong { font-size: 28px; }
  .section-about { grid-template-columns: 1fr; }
  .page-title { grid-template-columns: 1fr; }
  .page-title-visual { height: 280px; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-card:nth-child(4),
  .value-card:nth-child(5) { grid-column: span 1; }
  .structure-nodes {
    position: relative;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 40px;
  }
  .structure-diagram { padding: 24px 0 0; }
  .structure-node::before { display: none; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li:nth-child(3)::after { display: none; }
  .services-list-item,
  .services-list-item.is-reverse { grid-template-columns: 80px 1fr; }
  .services-list-photo { grid-column: 1 / -1; height: 180px; order: 0 !important; }
  .services-list-num { font-size: 48px; }
  .menu-grid,
  .seminar-cards { grid-template-columns: 1fr; }

  .page-title-detail { grid-template-columns: 1fr; }
  .page-title-collage { height: 280px; }
  .issues-grid { grid-template-columns: 1fr; }
  .value-grid-3x2 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(6n) { border-right: 1px solid var(--line-soft); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:nth-last-child(-n+6) { border-bottom: 1px solid var(--line-soft); }
  .logo-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid-3 { grid-template-columns: 1fr; }
  .steps-4 { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .case-feature { grid-template-columns: 1fr; }
  .case-feature-photo { min-height: 220px; }
  .case-feature-metrics { grid-template-columns: 1fr 1fr; padding: 14px 16px; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .download-banner { grid-template-columns: 1fr; padding: 40px 20px; }
  .download-cover { order: -1; }
  .article-row { grid-template-columns: 1fr; }
  .article-thumb { height: 160px; }
  .broadcast-grid { grid-template-columns: 1fr 1fr; }
  .section-mediakit { grid-template-columns: 1fr; }
  .mediakit-card { grid-template-columns: 1fr; text-align: center; }
  .page-title-crest { height: 240px; }
  .news-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .search-box { max-width: none; margin-left: 0; }
  .security-pitch-shell { grid-template-columns: 1fr; }
  .security-pitch-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .sec-layer { grid-template-columns: auto 1fr auto; gap: 12px; }
  .sec-layer-en { display: none; }
  .sec-layer-bar { width: 60px; }
  .sec-threats ul { grid-template-columns: 1fr; }
  .sec-cta-bar { flex-direction: column; align-items: stretch; }

  /* Editorial polish responsive */
  .cases-editorial { grid-template-columns: 1fr; }
  .stats { padding: 32px 20px; }
  .stats .stat { padding: 12px 12px 8px; border-right: 0; border-bottom: 1px solid rgba(198, 155, 93, .12); }
  .case-archive-item { grid-template-columns: auto 1fr auto; }
  .case-archive-item .case-archive-photo { display: none; }
  .section-head-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head-split-meta { padding-left: 0; }
  .section-head-split-meta::before { display: none; }
  .section-services-list::before,
  .section-cases-editorial::before { display: none; }
  .quick-rail {
    flex-direction: row;
    top: auto;
    bottom: 14px;
    right: 14px;
    transform: none;
    border-radius: 999px;
  }
  .quick-rail-back { margin-top: 0; border-top: 0; border-left: 1px solid var(--line); padding-top: 0; padding-left: 8px; border-radius: 0 999px 999px 0; }

  /* Top notice — wrap on small screens */
  .top-notice-inner { flex-wrap: wrap; gap: 8px 14px; padding-block: 10px; }
  .top-notice-text { flex-basis: 100%; order: 4; font-size: 12.5px; }
  .top-notice-link { order: 5; margin-left: auto; }

  /* Process flow stack on small screens */
  .process-flow { grid-template-columns: 1fr; }
  .process-flow-item { border-right: 0; border-bottom: 1px solid rgba(198, 155, 93, .15); padding: 22px 16px; }
  .process-flow-line { display: none; }

  /* Why-Us 2x2 on tablet, 1col mobile */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .why-card:nth-child(2n) { border-right: 0; }
  .why-card:nth-last-child(-n+2) { border-bottom: 0; }

  /* Service strip stack on small screens */
  .service-strip-head { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .service-strip-head p { text-align: left; }
  .service-strip-wrap .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip-wrap .service-strip a { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .service-strip-wrap .service-strip a:nth-child(2n) { border-right: 0; }

  /* Services Editorial: stack rows */
  .srv-row { grid-template-columns: 1fr; gap: 28px; }
  .srv-row.is-reverse .srv-photo,
  .srv-row.is-reverse .srv-body { order: 0; }
  .srv-photo-num { font-size: 64px; }
  .srv-meta { grid-template-columns: 1fr 1fr; }
  .srv-meta > div:nth-child(2) { border-right: 0; }
  .srv-meta > div:nth-child(3) { grid-column: 1 / -1; padding-top: 14px; border-top: 1px solid var(--line); border-right: 0; }
  .services-editorial { gap: 64px; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }
  .page { box-shadow: none; }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    height: auto;
    padding: 14px 20px;
  }
  .global-nav { display: none; }
  .header-tel { grid-column: 1 / -1; justify-self: start; }
  .header-cta { grid-column: 1 / -1; width: 100%; justify-content: center; }

  .hero {
    min-height: 70vh;
    padding: 80px 20px 120px;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 38px; }
  .hero .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-pagination span { width: 32px; }
  .hero-event-card,
  .hero-side-text,
  .hero-scroll { display: none; }
  .hero-media-strip {
    bottom: 64px;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
  }
  .hero-media-strip ul { gap: 16px; flex-wrap: wrap; }
  .hero-media-strip li { font-size: 12.5px; }
  .hero-quick-stats { gap: 16px; padding-top: 20px; margin-top: 24px; }
  .hero-quick-stats li { padding-right: 16px; }
  .hero-quick-stats strong { font-size: 26px; }

  .stats {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px 32px;
  }
  .stat { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:last-child { grid-column: 1 / -1; }

  .section { padding: 48px 20px; }
  .service-cards,
  .tool-cards,
  .case-cards,
  .section-info { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }

  .service-strip {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px 24px;
  }
  .service-strip a { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .service-strip a:nth-child(2n) { border-right: 0; }

  .about-diagram { height: 320px; }
  .diagram-node { font-size: 11.5px; padding: 0 10px; height: 28px; }

  .contact-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
  }
  .contact-bar p { font-size: 20px; }
  .contact-tel { justify-content: center; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 60px;
  }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 20px; }

  .page-title { padding: 40px 20px 32px; }
  .page-title h1 { font-size: 32px; }
  .value-grid,
  .security-cards,
  .testimonial-cards { grid-template-columns: 1fr; }
  .structure-nodes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li::after { display: none; }
}

/* =====================================================
   トンマナ統一: 二次ページ用 追加コンポーネント
   page-content(本文プロース)/ archive-hero / post-nav /
   news-main / section 背景修飾  ※全ページのデザイン統一用に追記
   ===================================================== */

/* --- 記事・固定ページ 本文プロース --- */
.page-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 2.0;
  font-weight: 500;
  color: var(--ink-700);
}
.page-content > *:first-child { margin-top: 0; }
.page-content p { margin: 1.2em 0 0; }
.page-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin: 2em 0 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--line);
}
.page-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-800);
  margin: 1.8em 0 0.6em;
  padding-left: 14px;
  border-left: 3px solid var(--gold-500);
  line-height: 1.5;
}
.page-content h4 { font-size: 17px; font-weight: 800; color: var(--navy-700); margin: 1.6em 0 0.5em; }
.page-content a { color: var(--navy-600); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(198,155,93,.5); transition: color .2s; }
.page-content a:hover { color: var(--gold-600); }
.page-content strong { font-weight: 800; color: var(--navy-800); }
.page-content ul, .page-content ol { margin: 1.2em 0 0; padding-left: 1.5em; }
.page-content li { margin-top: 0.5em; line-height: 1.9; }
.page-content ul li::marker { color: var(--gold-500); }
.page-content ol li::marker { color: var(--gold-600); font-weight: 700; }
.page-content blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-700);
}
.page-content blockquote p:first-child { margin-top: 0; }
.page-content img, .page-content iframe { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.page-content img { box-shadow: var(--shadow-sm); }
.page-content figure { margin: 1.6em 0; }
.page-content figcaption { margin-top: 8px; font-size: 13px; color: var(--ink-500); text-align: center; }
.page-content hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 14.5px; }
.page-content th, .page-content td { padding: 12px 16px; border: 1px solid var(--line); text-align: left; line-height: 1.7; }
.page-content th { background: var(--bg-soft); font-weight: 800; color: var(--navy-800); }
.page-content code { background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; color: var(--rose-600); }
.page-content pre { background: var(--navy-900); color: #f4f7fc; padding: 18px 20px; border-radius: var(--radius-md); overflow-x: auto; margin: 1.6em 0; }
.page-content pre code { background: none; color: inherit; padding: 0; }

/* --- 記事カラム(カード) --- */
.news-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3.5vw, 56px);
  max-width: 880px;
  margin: 0 auto;
}

/* --- アーカイブ見出し --- */
.archive-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding: 64px var(--pad-x) 48px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(36,102,196,.08), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(198,155,93,.08), transparent 55%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.archive-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  line-height: 1.2;
}
.archive-hero-jp {
  display: block;
  margin-top: 12px;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold-600);
}
.archive-hero-text .lead { margin-top: 18px; max-width: 640px; }
.archive-hero-meta { display: flex; gap: clamp(20px, 3vw, 40px); }
.archive-hero-meta dt {
  font-family: var(--serif-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.archive-hero-meta dd {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
}
.archive-hero-meta small { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink-500); margin-left: 4px; }

/* --- 記事下ナビ --- */
.post-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.post-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy-700);
  transition: border-color .2s, color .2s, background .2s;
}
.post-nav-link:hover { border-color: var(--gold-500); color: var(--gold-600); background: var(--bg-soft); }

/* --- セクション背景修飾 --- */
.section-why { background: var(--white); }
.section-support { background: var(--bg-soft); }

@media (max-width: 720px) {
  .archive-hero { grid-template-columns: 1fr; align-items: start; }
}

/* =====================================================
   グローバルナビ ドロップダウン(下層メニュー)
   wp_nav_menu depth=0 で出力される .sub-menu を装飾
   ===================================================== */
.global-nav li { list-style: none; position: relative; }
.global-nav > li { display: flex; align-items: center; }

/* 子ありの親項目にキャレット */
.global-nav .menu-item-has-children > a {
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8'%3E%3Cpath fill='none' stroke='%23c69b5d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1.5 2 5.5 6 9.5 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 11px 8px;
  transition: background-position .2s;
}
/* ホバー時にキャレットがわずかに沈む（シャープな印象） */
.global-nav .menu-item-has-children:hover > a { background-position: right top 62%; }

/* ドロップダウン本体 */
.global-nav .sub-menu {
  position: absolute;
  display: block;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 60;
}
/* 第1階層: 親の真下・中央寄せ */
.global-nav > li > .sub-menu {
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.global-nav > li:hover > .sub-menu,
.global-nav > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* 第2階層以降: 右側にフライアウト */
.global-nav .sub-menu .sub-menu {
  top: -11px;
  left: 100%;
  transform: translateX(8px);
}
.global-nav .sub-menu li:hover > .sub-menu,
.global-nav .sub-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ドロップダウン内リンク */
.global-nav .sub-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink-700);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.global-nav .sub-menu a::after { display: none; }
.global-nav .sub-menu a:hover { background: var(--bg-soft); color: var(--gold-600); }
.global-nav .sub-menu .menu-item-has-children > a {
  background-position: right 12px center;
  padding-right: 26px;
}

/* ヒーロー上(白文字/スクロール演出)でもドロップダウン内は濃色で固定 */
.global-nav .sub-menu a,
body:has(.hero) .site-header .global-nav .sub-menu a {
  color: var(--ink-700);
  text-shadow: none;
  animation: none;
}
body:has(.hero) .site-header .global-nav .sub-menu a:hover { color: var(--gold-600); }

/* =====================================================
   モバイルナビ(ハンバーガー + ドロワー + 下層アコーディオン)
   nav.js: .nav-toggle で body.is-nav-open / .is-sub-open を制御
   ===================================================== */
.nav-toggle { display: none; }

@media (max-width: 820px) {
  /* ハンバーガーボタン */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 11px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 20;
    justify-self: end;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    border-radius: 2px;
    background: var(--navy-800);
    transition: transform .3s ease, opacity .2s ease, background .3s;
  }
  body:has(.hero) .nav-toggle span { background: #fff; }
  /* 開いた時は X・ヘッダーは白に戻すのでバーは濃色 */
  body.is-nav-open .nav-toggle span,
  body.is-nav-open:has(.hero) .nav-toggle span { background: var(--navy-800); }
  body.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ドロワー本体(既存 display:none を上書き) */
  .global-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0; right: 0;
    width: min(84vw, 360px);
    height: 100vh; height: 100dvh;
    padding: 88px 22px 36px;
    background: var(--navy-900);
    box-shadow: -24px 0 60px rgba(0,0,0,.45);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.32,.72,0,1);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 10;
  }
  body.is-nav-open .global-nav { transform: translateX(0); }

  /* オーバーレイ & ヘッダー最前面化(X タップ可能に) */
  body.is-nav-open::before {
    content: "";
    position: fixed; inset: 0;
    background: rgba(4,22,46,.55);
    backdrop-filter: blur(2px);
    z-index: 190;
  }
  body.is-nav-open { overflow: hidden; }
  body.is-nav-open .site-header {
    z-index: 200;
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--line);
    backdrop-filter: blur(8px);
  }

  /* メニュー項目(縦積み) */
  .global-nav li { width: 100%; display: block; position: relative; }
  .global-nav > li { display: block; }
  .global-nav a {
    display: block;
    padding: 15px 6px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .global-nav a::after { display: none; }
  body:has(.hero) .site-header .global-nav a { color: rgba(255,255,255,.92); text-shadow: none; animation: none; }

  /* 親キャレット(白基調・開閉で上下反転) */
  .global-nav .menu-item-has-children > a {
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c69b5d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 2.5 6 6.5 10 2.5'/%3E%3C/svg%3E");
    background-position: right 6px center;
    transition: none;
  }
  .global-nav .menu-item-has-children.is-sub-open > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c69b5d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 5.5 6 1.5 10 5.5'/%3E%3C/svg%3E");
  }

  /* 下層 = アコーディオン(ホバーflyoutを無効化) */
  .global-nav .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .global-nav .menu-item-has-children.is-sub-open > .sub-menu { max-height: 1000px; }
  .global-nav .sub-menu a { color: rgba(255,255,255,.66); font-size: 14.5px; padding: 12px 6px; }
  .global-nav .sub-menu a:hover { background: transparent; color: var(--gold-500); }
}

/* =====================================================
   サイドバー CTA カード(sidebar-cta-*)
   single-ex 等のサイドバー「無料相談」ボックス
   ===================================================== */
.sidebar-cta-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(198,155,93,.20), transparent 60%),
    linear-gradient(125deg, var(--navy-900), var(--navy-700));
  border-color: transparent;
  color: #fff;
}
.sidebar-cta-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--serif-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.sidebar-cta-card h3 { color: #fff; font-size: 17px; line-height: 1.6; margin-bottom: 10px; }
.sidebar-cta-card p { color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.85; margin-bottom: 16px; }
.sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold-500);
  color: #0a0a0a;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: gap .2s, filter .2s;
}
.sidebar-cta-btn:hover { gap: 14px; filter: brightness(1.05); }
