/* ============================================================
   合同会社リリナ — 共通スタイルシート
   Design: Editorial Minimal / Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&family=DM+Serif+Display&display=swap');

/* ── Root Variables ─────────────────────────────────────── */
:root {
  --bg:          #FAFAF8;
  --bg-alt:      #F3F2EF;
  --surface:     #FFFFFF;
  --ink:         #1C2B2B;
  --ink-mid:     #4A5A5A;
  --ink-light:   #8A9898;
  --accent:      #4E7C69;
  --accent-dark: #355548;
  --accent-pale: #D4E4DC;
  --line:        #E2DED9;
  --line-dark:   #C8C3BC;

  --font-serif:  'DM Serif Display', 'Noto Serif JP', serif;
  --font-sans:   'Noto Sans JP', sans-serif;

  --max-w:       1160px;
  --gap:         clamp(40px, 8vw, 96px);
  --section-pad: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 80px);

  --radius:      2px;
  --transition:  0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section {
  padding: var(--section-pad);
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--ink);
  color: var(--bg);
}
.text-center { text-align: center; }
.mt-xs  { margin-top: 8px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 48px; }
.mt-xl  { margin-top: 64px; }

/* ── Typography ─────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
}
.label--light {
  color: var(--accent-pale);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  margin-top: 12px;
}

.section-lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--ink-mid);
  max-width: 620px;
  margin-top: 20px;
  line-height: 1.95;
}

.divider {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-top: 20px;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(28,43,43,0.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.2;
}
.nav__logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

/* ── Hamburger ──────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px clamp(20px, 5vw, 60px);
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-family: var(--font-sans);
}
.nav__mobile.open { display: flex; }

/* ── Page Top Spacer ─────────────────────────────────────── */
.page-top { padding-top: 64px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeInBg 1.6s ease 0.3s forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(28,43,43,0.72) 0%,
    rgba(28,43,43,0.38) 100%
  );
}
@keyframes fadeInBg {
  to { opacity: 1; }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s ease 0.8s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 228, 220, 0.9);
  font-family: var(--font-sans);
  font-weight: 400;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 66px);
  font-weight: 400;
  color: #FAFAF8;
  line-height: 1.2;
  margin-top: 16px;
  letter-spacing: 0.04em;
}
.hero__subtitle {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(250,250,248,0.8);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.9;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 14px 32px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  font-family: var(--font-sans);
}
.btn--primary {
  background: var(--accent);
  color: #FAFAF8;
  border: 1px solid var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn--ghost {
  background: transparent;
  color: #FAFAF8;
  border: 1px solid rgba(250,250,248,0.5);
}
.btn--ghost:hover {
  background: rgba(250,250,248,0.1);
  border-color: rgba(250,250,248,0.8);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--accent:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── Pain Section ────────────────────────────────────────── */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
}
.pain__item {
  background: var(--bg);
  padding: 36px 40px;
}
.pain__item p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.85;
  position: relative;
  padding-left: 20px;
}
.pain__item p::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.85;
}

/* ── DX Benefit ─────────────────────────────────────────── */
.benefit {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: 'DX';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-serif);
  font-size: 240px;
  font-weight: 400;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.benefit__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.benefit__text .section-title {
  color: var(--bg);
}
.benefit__text .section-lead {
  color: rgba(250,250,248,0.7);
}
.benefit__text .divider {
  background: var(--accent-pale);
}
.benefit__highlight {
  border-left: 1px solid var(--accent);
  padding: 32px 40px;
}
.benefit__highlight .big-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--accent-pale);
  line-height: 1.3;
  font-weight: 400;
}
.benefit__highlight p {
  font-size: 13px;
  color: rgba(250,250,248,0.65);
  margin-top: 16px;
  line-height: 1.9;
}

/* ── Programme List ─────────────────────────────────────── */
.programmes {
  counter-reset: prog;
}
.programmes__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prog-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}
.prog-item:first-child { border-top: 1px solid var(--line); }
.prog-item:hover { background: var(--bg-alt); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.prog-item__num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--line-dark);
  line-height: 1;
}
.prog-item__name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
}
.prog-item__sub {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.prog-item__arrow {
  font-size: 18px;
  color: var(--accent);
  font-weight: 300;
}

/* ── Flow ────────────────────────────────────────────────── */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
/* 全体を貫く横ライン（中間） */
.flow__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: var(--line-dark);
  z-index: 0;
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px 0;
}
/* ステップ間の矢印 */
.flow__step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -10px;
  top: 16px;
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  z-index: 2;
}
.flow__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}
.flow__step:hover .flow__num {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.flow__name {
  font-family: var(--font-serif);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 16px;
  line-height: 1.4;
}
.flow__sub {
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 6px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
/* 最初と最後のステップ円を塗りつぶし */
.flow__step:first-child .flow__num {
  background: var(--accent);
  color: var(--bg);
}
.flow__step:last-child .flow__num {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
@media (max-width: 860px) {
  .flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
    row-gap: 40px;
    padding-bottom: 0;
  }
  .flow__steps::before { display: none; }
  .flow__step::after { display: none; }
}
@media (max-width: 540px) {
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── LMS ─────────────────────────────────────────────────── */
.lms__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
}
.lms__feature {
  background: var(--bg);
  padding: 40px;
}
.lms__feature .feat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--accent-pale);
  border: 1px solid var(--accent-pale);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}
.lms__feature h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}
.lms__feature p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ── Subsidy ─────────────────────────────────────────────── */
.subsidy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.subsidy__desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.95;
}
.subsidy__stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-item {
  background: var(--surface);
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.stat-item .stat-val {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 12px;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* ── Delivery Method ─────────────────────────────────────── */
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
}
.delivery__item {
  background: var(--bg);
  padding: 48px 44px;
}
.delivery__num {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.delivery__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  margin-top: 10px;
  color: var(--ink);
}
.delivery__desc {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 16px;
  line-height: 1.95;
}

/* ── Results ─────────────────────────────────────────────── */
.results__tabs {
  display: flex;
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
  flex-wrap: wrap;
}
.result-tab {
  flex: 1;
  min-width: 200px;
  background: var(--bg-alt);
  padding: 28px 32px;
}
.result-tab h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.result-tab__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.result-case {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}
.result-case__industry {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.result-case__text {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 6px;
  line-height: 1.85;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 60px);
}
.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text .label--light {
  color: rgba(212,228,220,0.8);
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  color: #FAFAF8;
  margin-top: 10px;
  line-height: 1.3;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--bg);
  color: var(--accent);
  border: 1px solid var(--bg);
}
.btn--white:hover {
  background: transparent;
  color: var(--bg);
}
.btn--white-outline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250,250,248,0.5);
}
.btn--white-outline:hover {
  border-color: var(--bg);
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 10vw, 100px) clamp(20px, 5vw, 60px) clamp(48px, 7vw, 80px);
}
.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-header .label { color: var(--accent-pale); }
.page-header .section-title { color: var(--bg); }

/* ── Curriculum ─────────────────────────────────────────── */
.curriculum__block {
  margin-top: 0;
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.curriculum__block:last-child { border-bottom: none; }
.curriculum__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.curriculum__num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--line);
  line-height: 1;
  margin-top: -8px;
}
.curriculum__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 12px;
}
.curriculum__subtitle {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 8px;
  letter-spacing: 0.06em;
}
.curriculum__badge {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  margin-top: 8px;
}
.curriculum__desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.95;
  margin-top: 28px;
}
.curriculum__modules {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
}
.module-item {
  background: var(--bg);
  padding: 24px 28px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.7;
}
.module-item__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.module-item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* ── Company ─────────────────────────────────────────────── */
.company__table {
  margin-top: 48px;
  width: 100%;
  border-collapse: collapse;
  max-width: 760px;
}
.company__table tr {
  border-bottom: 1px solid var(--line);
}
.company__table th {
  text-align: left;
  padding: 22px 32px 22px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
}
.company__table td {
  padding: 22px 0;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-section {
  max-width: 760px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group--full { grid-column: 1 / -1; }
.form__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.form__label .required {
  color: var(--accent);
  font-size: 10px;
  margin-left: 6px;
  letter-spacing: 0.1em;
}
.form__input,
.form__select,
.form__textarea {
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__select {
  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 d='M1 1l5 5 5-5' stroke='%234A5A5A' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__submit {
  margin-top: 40px;
}
.form__note {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 16px;
  line-height: 1.85;
}

/* ── Privacy ─────────────────────────────────────────────── */
.privacy__body {
  max-width: 760px;
  margin-top: 48px;
}
.privacy__body h2 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}
.privacy__body h2:first-child { margin-top: 0; }
.privacy__body p, .privacy__body li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.95;
  margin-top: 16px;
}
.privacy__body ul { padding-left: 16px; }
.privacy__body li { list-style: disc; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(250,250,248,0.6);
  padding: clamp(48px, 8vw, 72px) clamp(20px, 5vw, 60px) clamp(24px, 4vw, 40px);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,250,248,0.1);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.06em;
}
.footer__logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(250,250,248,0.4);
  margin-top: 4px;
  text-transform: uppercase;
}
.footer__nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__nav-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pale);
  margin-bottom: 16px;
}
.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-col a {
  font-size: 12px;
  color: rgba(250,250,248,0.55);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__nav-col a:hover { color: var(--bg); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pain__grid,
  .benefit__inner,
  .subsidy__grid,
  .delivery__grid,
  .lms__features { grid-template-columns: 1fr; }
  .benefit__inner { gap: 40px; }
  .benefit::before { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .form__grid { grid-template-columns: 1fr; }
  .form__group--full { grid-column: 1; }
  .footer__top { flex-direction: column; }
  .footer__nav { gap: 28px; }
  .results__tabs { flex-direction: column; }
  .result-tab { min-width: 100%; }
}
@media (max-width: 640px) {
  .prog-item { grid-template-columns: 40px 1fr; }
  .prog-item__arrow { display: none; }
  .curriculum__header { grid-template-columns: 1fr; }
  .curriculum__num { font-size: 40px; }
  .company__table, .company__table tbody, .company__table tr, .company__table th, .company__table td {
    display: block;
  }
  .company__table th { padding-bottom: 4px; width: 100%; }
  .company__table td { padding-top: 0; }
}
