/* ====================================================================
   りぷらす コミュニティヘルス事業 LP — Styles
   Brand palette derived from REPLUS logo:
     - teal (land), aqua (water), coral (sun), mustard, ink
   ==================================================================== */

:root {
  /* Brand colors */
  --teal-900: #0d4f47;
  --teal-800: #14685e;
  --teal-700: #1a8c7e;  /* primary brand */
  --teal-600: #25a392;
  --teal-500: #3fbaa6;
  --teal-100: #d6ebe6;
  --teal-50:  #ecf5f2;

  --aqua-700: #1a93b8;
  --aqua-500: #2bb3d6;
  --aqua-100: #d6edf5;

  --coral:    #e5694b;
  --coral-soft:#f4a48e;
  --mustard:  #cba33f;

  --ink:      #1a3640;
  --ink-2:    #3a5260;
  --ink-soft: #6a7c87;

  --paper:    #faf7ef;
  --paper-2:  #f4ede0;
  --cream:    #fbf5e8;
  --line:     rgba(26, 54, 64, 0.10);
  --line-2:   rgba(26, 54, 64, 0.18);

  --shadow-card: 0 1px 2px rgba(13,79,71,.04), 0 8px 24px -8px rgba(13,79,71,.12);
  --shadow-lift: 0 4px 8px rgba(13,79,71,.06), 0 24px 48px -12px rgba(13,79,71,.18);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --container: 1240px;
  --container-narrow: 980px;

  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Type system ──────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-700);
}
.kicker.ink::before { background: var(--ink); }
.kicker.ink { color: var(--ink); }

.kicker-jp {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--teal-500);
  background: white;
}

h1, h2, h3, h4 {
  font-family: var(--font-jp);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
  text-wrap: pretty;
}

.h-display {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.h-section {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.35;
}
.h-card {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--teal-700);
  border-radius: 2px;
  margin-bottom: 20px;
}

.lead {
  font-size: 17px;
  line-height: 2.0;
  color: var(--ink-2);
  font-weight: 500;
}
.muted { color: var(--ink-soft); }

.serif-num {
  font-family: var(--font-en);
  font-feature-settings: "tnum" 1;
  font-weight: 700;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  min-width: 320px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--teal-700);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(26,140,126,.5);
}
.btn-primary:hover { background: var(--teal-800); box-shadow: 0 10px 24px -4px rgba(26,140,126,.55);}
.btn-outline {
  background: white;
  color: var(--aqua-700);
  border-color: var(--aqua-500);
}
.btn-outline:hover { background: var(--aqua-100); }
.btn-ghost {
  background: transparent;
  color: var(--teal-700);
  border-bottom: 1.5px solid var(--teal-700);
  border-radius: 0;
  padding: 8px 4px;
  min-width: 0;
  font-size: 15px;
}
.btn-ghost:hover { color: var(--teal-800); border-bottom-color: var(--teal-800); }

.btn .arr { font-family: var(--font-en); font-weight: 500; font-size: 18px; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 239, 0.85);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img { height: 40px; width: auto; }
.nav-brand .brand-text { font-family: var(--font-jp); font-weight: 800; font-size: 15px; line-height: 1.2; }
.nav-brand .brand-sub  { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.05em; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--teal-700); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-700);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s;
}
.nav-cta:hover { background: var(--teal-800); }
.nav-corp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  margin-right: 4px;
  transition: color .15s, border-color .15s, background .15s;
}
.nav-corp:hover {
  color: var(--teal-700);
  border-color: var(--teal-700);
  background: rgba(26,140,126,.04);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--teal-500);
  background: white;
  margin-bottom: 36px;
}
.hero-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--teal-700);
  display: block;
}
.hero-sub {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Hero image — circular masked photo with subtle teal/aqua glow */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 640px;
  margin-left: auto;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 50% 48% 50% 48% / 48% 50% 48% 50%;
  overflow: hidden;
  background: var(--teal-100);
  box-shadow:
    0 24px 80px -16px rgba(13,79,71,.28),
    inset 0 0 0 1px rgba(255,255,255,.4);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Aqua water curve behind */
.hero-water {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 78%;
  height: 78%;
  background: linear-gradient(180deg, var(--aqua-100) 0%, var(--aqua-500) 100%);
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  opacity: .45;
  z-index: -1;
  filter: blur(2px);
}
.hero-sun {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 8px 24px rgba(229,105,75,.4);
}

/* Decorative dot row from logo reflection */
.hero-deco {
  position: absolute;
  left: -40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-deco span {
  width: 8px;
  height: 18px;
  background: var(--teal-500);
  border-radius: 4px;
  opacity: .25;
}

.hero-bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-bg-1 {
  top: -180px;
  left: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, var(--teal-50) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg-2 {
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43,179,214,.12) 0%, transparent 65%);
  border-radius: 50%;
}

/* ─── Stat strip under hero ─────────────────────────────── */
.hero-strip {
  margin-top: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip-item .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-family: var(--font-en);
}
.hero-strip-item .val {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

/* ─── Sections ────────────────────────────────────────────── */
section {
  position: relative;
  padding: 120px 0;
}
section.tight { padding: 80px 0; }
section.bg-paper-2 { background: var(--paper-2); }
section.bg-teal-50 { background: var(--teal-50); }
section.bg-cream { background: var(--cream); }
section.bg-ink {
  background: var(--ink);
  color: white;
}
section.bg-ink h2, section.bg-ink h3 { color: white; }
section.bg-ink .lead { color: rgba(255,255,255,.78); }
section.bg-ink .kicker { color: var(--teal-500); }
section.bg-ink .kicker::before { background: var(--teal-500); }

.section-head {
  margin-bottom: 64px;
  max-width: 880px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .kicker { justify-content: center; }
.section-head h2 {
  margin-top: 16px;
  margin-bottom: 24px;
}
.section-head .lead { max-width: 720px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ─── Problem (課題) ─────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-100);
}
.problem-card .num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.1em;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}
.problem-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--coral);
  background: linear-gradient(135deg, #f3b8a5 0%, var(--coral) 100%);
  opacity: .85;
  display: flex; align-items: center; justify-content: center;
  color: white;
}

/* ─── Practice (実践) ────────────────────────────────────── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.practice-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.practice-card .photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--teal-100);
  position: relative;
}
.practice-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.practice-card:hover .photo img { transform: scale(1.04); }
.practice-card .tag {
  position: absolute;
  top: 20px; left: 20px;
  background: white;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.practice-card .body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.practice-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}
.practice-card p {
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
}

/* ─── Stats (成果) ──────────────────────────────────────── */
.stats-band {
  background: linear-gradient(160deg, var(--teal-800) 0%, var(--teal-700) 60%, var(--aqua-700) 100%);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.stats-band .kicker { color: rgba(255,255,255,.9); }
.stats-band .kicker::before { background: rgba(255,255,255,.7); }
.stats-band h2 { color: white; }
.stats-band .lead { color: rgba(255,255,255,.82); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.78);
}
.stat .big {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}
.stat .unit {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.stat .plus {
  font-size: 28px;
  color: var(--coral-soft);
}
.stat .sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* Qualitative outcomes list */
.qual-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.qual-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.qual-item::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-soft);
  margin-top: 12px;
  flex-shrink: 0;
}
.qual-item span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

/* Decorative water shape in stats */
.stats-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.stats-band::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,179,214,.18) 0%, transparent 70%);
}

/* ─── Model essence ──────────────────────────────────────── */
.essence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.essence-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--teal-100);
}
.essence-image img { width: 100%; height: 100%; object-fit: cover; }
.essence-image .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.essence h2 .accent { color: var(--teal-700); }
.essence-quote {
  margin-top: 32px;
  padding: 32px 36px;
  background: var(--teal-50);
  border-left: 4px solid var(--teal-700);
  border-radius: 4px 16px 16px 4px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--teal-900);
}

/* ─── 6-step model flow ──────────────────────────────────── */
.steps-wrap {
  margin-top: 48px;
  position: relative;
}
.steps-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 20px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step .stepnum {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-700);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.step:nth-child(1) .circle { background: var(--teal-500); }
.step:nth-child(2) .circle { background: var(--teal-600); }
.step:nth-child(3) .circle { background: var(--teal-700); }
.step:nth-child(4) .circle { background: var(--teal-800); }
.step:nth-child(5) .circle { background: var(--aqua-700); }
.step:nth-child(6) .circle { background: var(--coral); }

.step .label-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.step h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--ink);
}
.step p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}

/* Connecting arrows */
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 44px;
  right: -16px;
  transform: translateY(-50%);
  font-family: var(--font-en);
  color: var(--teal-500);
  font-size: 16px;
  z-index: 3;
}

/* River line under steps */
.steps-river {
  position: absolute;
  left: 0; right: 0;
  bottom: -40px;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

/* ─── Applications (4 areas) ─────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.app-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--teal-100);
}
.app-card .topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.app-card .area-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.app-card .area-num {
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--teal-50);
  letter-spacing: -0.02em;
}
.app-card h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
}
.app-card p {
  color: var(--ink-2);
  line-height: 1.95;
  margin: 0 0 24px 0;
}
.app-card .examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-2);
}
.app-card .chip {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-800);
}

/* Coloring by index */
.app-card.app-1 .area-num { color: rgba(229,105,75,.18); }
.app-card.app-2 .area-num { color: rgba(43,179,214,.20); }
.app-card.app-3 .area-num { color: rgba(203,163,63,.22); }
.app-card.app-4 .area-num { color: rgba(26,140,126,.20); }

/* ─── Strengths (5) ──────────────────────────────────────── */
.strengths {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.strength {
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strength .icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.strength:nth-child(1) .icon-box { background: var(--teal-700); }
.strength:nth-child(2) .icon-box { background: var(--aqua-700); }
.strength:nth-child(3) .icon-box { background: var(--coral); }
.strength:nth-child(4) .icon-box { background: var(--mustard); }
.strength:nth-child(5) .icon-box { background: var(--teal-800); }

.strength .num-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.strength h4 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}
.strength p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}

/* ─── Collaboration menu ─────────────────────────────────── */
.collab {
  background: var(--ink);
  color: white;
  padding: 120px 0;
}
.collab h2 { color: white; }
.collab .lead { color: rgba(255,255,255,.78); }
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.collab-item {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s ease;
}
.collab-item:hover { background: #213e49; }
.collab-item .num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-500);
}
.collab-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.collab-item p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
  margin: 0;
}

/* ─── Final CTA ──────────────────────────────────────────── */
.final-cta {
  padding: 140px 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(43,179,214,.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(26,140,126,.10) 0%, transparent 50%),
    var(--paper);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .lead {
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 2.0;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact form-like section */
.contact-info {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact-info-item {
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-info-item .lbl {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 8px;
}
.contact-info-item .val {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.contact-info-item .sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.6); margin: 0; }
.footer-corp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.92);
  transition: background .2s, border-color .2s;
}
.footer-corp-link:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}
.footer-corp-link .arr {
  font-family: var(--font-en);
  font-size: 14px;
}
.footer h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-family: var(--font-jp);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer ul a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer ul a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ─── Reveal animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   AUTONOMY PROOF (inside .stats-band)
   ==================================================================== */
.autonomy-proof {
  margin-top: 88px;
  padding: 56px 56px 48px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.autonomy-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(229,105,75,.18) 0%, transparent 45%),
    radial-gradient(circle at 12% 85%, rgba(43,179,214,.22) 0%, transparent 45%);
  pointer-events: none;
}
.autonomy-head {
  position: relative;
  max-width: 720px;
  margin-bottom: 48px;
}
.kicker-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 18px;
}
.kicker-proof::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--coral-soft);
}
.autonomy-head h3 {
  font-family: var(--font-jp);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: white;
  margin: 0 0 18px 0;
}
.autonomy-head p {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,255,255,.82);
  margin: 0;
}

.autonomy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.autonomy-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.autonomy-card.primary {
  background: linear-gradient(135deg, rgba(229,105,75,.22) 0%, rgba(229,105,75,.06) 100%);
  border-color: rgba(244,164,142,.4);
}
.autonomy-period {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.autonomy-period .period-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-soft);
}
.autonomy-card.primary .period-en { color: #ffd5c9; }
.autonomy-period .period-jp {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  letter-spacing: 0.04em;
}
.autonomy-numbers {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  padding: 16px 0 8px;
  flex-wrap: wrap;
}
.autonomy-numbers.single { justify-content: center; }
.autonomy-numbers .num-from,
.autonomy-numbers .num-to {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 82px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: white;
}
.autonomy-numbers .num-from { color: rgba(255,255,255,.55); font-size: 54px; }
.autonomy-numbers small {
  font-family: var(--font-en);
  font-size: 0.45em;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: 0.15em;
  color: rgba(255,255,255,.7);
}
.autonomy-numbers .num-to small { color: rgba(255,255,255,.85); }
.autonomy-numbers .arrow {
  width: 64px;
  height: 18px;
  color: var(--coral-soft);
  flex-shrink: 0;
}
.autonomy-cap {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin: 0;
  text-align: center;
  border-top: 1px dashed rgba(255,255,255,.18);
  padding-top: 16px;
}

/* ====================================================================
   PROJECT CARDS / 事業別実績
   ==================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.project-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--teal-100);
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal-700);
  opacity: 0.85;
}
.proj-1::before { background: var(--teal-700); }
.proj-2::before { background: var(--aqua-700); }
.proj-3::before { background: var(--mustard); }
.proj-4::before { background: var(--coral); }

.proj-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.proj-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.proj-2 .proj-tag { color: var(--aqua-700); }
.proj-3 .proj-tag { color: #a8862a; }
.proj-4 .proj-tag { color: var(--coral); }
.proj-period {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.project-card h3 {
  font-family: var(--font-jp);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 0 0;
}
.proj-desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 4px 0;
}
.proj-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.proj-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.proj-stats .k {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.proj-stats .v {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.proj-stats .v small {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  margin-left: 3px;
  color: var(--ink-2);
}
.proj-highlight {
  margin-top: 4px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,140,126,.10) 0%, rgba(26,140,126,.04) 100%);
  border: 1px solid rgba(26,140,126,.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proj-highlight.alt {
  background: linear-gradient(135deg, rgba(26,147,184,.10) 0%, rgba(26,147,184,.04) 100%);
  border-color: rgba(26,147,184,.18);
}
.proj-highlight.ochre {
  background: linear-gradient(135deg, rgba(203,163,63,.14) 0%, rgba(203,163,63,.05) 100%);
  border-color: rgba(203,163,63,.22);
}
.hl-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hl-value {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-700);
  letter-spacing: -0.01em;
}
.proj-highlight.alt .hl-value { color: var(--aqua-700); }
.proj-highlight.ochre .hl-value { color: #a8862a; }
.hl-text {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.75;
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.hl-arrow {
  font-family: var(--font-en);
  font-weight: 600;
  margin: 0 6px;
  color: var(--ink-soft);
  font-size: 0.85em;
}
.proj-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
}
.proj-areas .area {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(229,105,75,.10);
  color: var(--coral);
  letter-spacing: 0.04em;
}

/* ====================================================================
   RECOGNITION / 信頼性
   ==================================================================== */
#recognition { background: var(--paper); }
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.recognition-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.recognition-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.rec-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.rec-kind {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.recognition-item:nth-child(2) .rec-kind { color: var(--aqua-700); }
.recognition-item:nth-child(3) .rec-kind { color: var(--coral); }
.recognition-item:nth-child(4) .rec-kind { color: #a8862a; }
.recognition-item h4 {
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--ink);
  margin: 4px 0 6px 0;
  letter-spacing: -0.01em;
}
.recognition-item p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}
.recognition-refs {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.refs-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.refs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.refs-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.refs-list a:hover {
  transform: translateY(-2px);
  border-color: var(--teal-100);
  box-shadow: var(--shadow-card);
}
.ref-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.ref-sub {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.55;
}
.ref-arrow {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--teal-700);
  grid-row: span 2;
  align-self: center;
}

/* ====================================================================
   VOICE / 参加者の声
   ==================================================================== */
.voice-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  box-shadow: var(--shadow-card);
}
.voice-side {
  padding: 56px 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.voice-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.voice-headline {
  font-family: var(--font-jp);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.voice-summary {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}
.voice-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voice-bullets li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.voice-bullets li:last-child { border-bottom: 1px dashed var(--line); }
.voice-bullets li span {
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.02em;
  font-size: 12.5px;
}
.voice-link {
  margin-top: 8px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--teal-700);
  color: var(--teal-700);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, transform .2s;
}
.voice-link:hover {
  background: var(--teal-700);
  color: white;
  transform: translateY(-2px);
}
.voice-link .arr {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
}

.voice-quote-block {
  background: linear-gradient(155deg, var(--teal-700) 0%, var(--teal-800) 55%, var(--aqua-700) 100%);
  color: white;
  margin: 0;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.voice-quote-block::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,105,75,.18) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-family: "Georgia", serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 0.6;
  color: rgba(244,164,142,.55);
  margin-bottom: -32px;
}
.voice-quote {
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}
.voice-cite {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,.85);
  font-style: normal;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.22);
  position: relative;
  z-index: 1;
}
.voice-cite span {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .voice-card { grid-template-columns: 1fr; }
  .voice-side { padding: 40px 36px 36px; }
  .voice-quote-block { padding: 48px 36px; }
  .voice-quote { font-size: 26px; }
  .voice-bullets li { grid-template-columns: 120px 1fr; }
}
@media (max-width: 720px) {
  .voice-side { padding: 32px 24px; }
  .voice-quote-block { padding: 36px 24px; }
  .voice-headline { font-size: 22px; }
  .voice-quote { font-size: 22px; }
  .voice-bullets li { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding: 0 32px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-flow { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(3)::after, .step:not(:last-child)::after { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .strengths { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: repeat(2, 1fr); }
  .essence { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-list { grid-template-columns: 1fr; }
  .autonomy-proof { padding: 40px 32px 32px; }
  .autonomy-head h3 { font-size: 26px; }
  .autonomy-numbers .num-from { font-size: 42px; }
  .autonomy-numbers .num-to { font-size: 64px; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .container, .container-narrow { padding: 0 20px; }
  .hero { padding: 32px 0 64px; }
  .hero-grid { padding: 0 20px; gap: 40px; }
  .hero-strip { padding: 0 20px; gap: 20px; }
  .btn { min-width: 0; width: 100%; padding: 16px 24px; }
  .hero-ctas { width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat .big { font-size: 48px; }
  .steps-flow { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .strengths { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .qual-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .app-card { padding: 28px 24px; }
  .app-card .area-num { font-size: 44px; }
  .essence-quote { padding: 24px 28px; font-size: 17px; }
  .autonomy-grid { grid-template-columns: 1fr; }
  .autonomy-proof { padding: 32px 22px 24px; margin-top: 56px; }
  .autonomy-head h3 { font-size: 22px; }
  .autonomy-card { padding: 24px 22px; }
  .autonomy-numbers .num-from { font-size: 36px; }
  .autonomy-numbers .num-to { font-size: 56px; }
  .autonomy-numbers .arrow { width: 44px; }
  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-refs { padding: 24px 22px; }
  .project-card { padding: 28px 24px; }
  .project-card h3 { font-size: 22px; }
  .proj-stats .v { font-size: 18px; }
}
