/*
Theme Name: Cloud Dr. Business LP
Theme URI: https://cloud-dr.jp/business
Description: 法人向けオンライン診療ソリューション「どこでも診療所」LP（クラウドドクター）。HTML 正典（tools/lp/business-lp）から移植したカスタムクラシックテーマ。
Author: Cloud Dr Co., Ltd.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: clouddr-biz
*/

/* ============================================================
   以下はブランド正典 CSS（tools/lp/business-lp/css/style.css と同一）
   更新は HTML 正典側と同期すること
   ============================================================ */
/* ============================================================
   Cloud Dr. business LP — base / tokens / layout
   ブランド準拠：Noto Sans JP / Roboto / Cloud Dr. パレット
   ============================================================ */

:root {
  /* Brand colors */
  --brand-blue: #5EB7E8;
  --brand-blue-dark: #2F97D1;
  --brand-blue-soft: #C9E9F5;
  --text-primary: #2C2C2C;
  --text-secondary: #848484;
  --bg-base: #F1F0EE;
  --bg-subtle: #E7EEF1;
  --bg-muted: #C9E9F5;
  --border-subtle: #E7E5E4;
  --error-text: #C54444;
  --white: #FFFFFF;

  /* Layout */
  --max-width: 1200px;
  --gutter: 24px;
  --section-gap: 96px;
  --section-gap-sp: 64px;

  /* Typography */
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-base: var(--font-jp);

  /* Radius / Shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 44, 44, 0.08);
  --shadow-brand: 0 6px 16px rgba(94, 183, 232, 0.30);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-primary);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--brand-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.en { font-family: var(--font-en); }

.section { padding-block: var(--section-gap); }
@media (max-width: 767px) { .section { padding-block: var(--section-gap-sp); } }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-blue-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 16px;
  color: var(--text-primary);
}
@media (max-width: 767px) { .section-title { font-size: 24px; } }

.section-lead {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.95;
  margin: 0 auto 56px;
  max-width: 880px;
}
@media (max-width: 767px) { .section-lead { font-size: 14px; margin-bottom: 40px; } }

/* Placeholder（オーナー差し替え対象） */
.placeholder {
  background: var(--border-subtle);
  border: 1px dashed #B8B5B0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.placeholder--hero { aspect-ratio: 16 / 10; }
.placeholder--16x9 { aspect-ratio: 16 / 9; }
.placeholder--logo { aspect-ratio: 5 / 2; }

/* ============================================================
   Sub-pages 共通スタイル
   ============================================================ */
.subpage-hero {
  background: var(--bg-subtle);
  padding-block: 64px 56px;
}
.subpage-hero__inner { max-width: var(--max-width); margin-inline: auto; padding-inline: var(--gutter); }
.subpage-hero__breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 12px; color: var(--text-secondary); }
.subpage-hero__breadcrumb a { color: var(--text-secondary); }
.subpage-hero__breadcrumb .sep { color: var(--text-secondary); opacity: 0.6; }
.subpage-hero__breadcrumb .current { color: var(--brand-blue-dark); font-weight: 700; }
.subpage-hero__eyebrow { font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--brand-blue-dark); margin-bottom: 12px; display: inline-block; text-transform: uppercase; }
.subpage-hero__title { font-size: 36px; font-weight: 700; line-height: 1.4; margin: 0 0 16px; color: var(--text-primary); }
@media (max-width: 767px) { .subpage-hero__title { font-size: 28px; } }
.subpage-hero__lead { font-size: 15px; line-height: 1.95; color: var(--text-primary); max-width: 880px; margin: 0; }

/* List page common */
.list-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.list-toolbar__label { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-right: 4px; }
.chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border: 1px solid var(--border-subtle); border-radius: 999px;
  background: var(--white); color: var(--text-primary);
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: all 0.18s ease;
}
.chip:hover { border-color: var(--brand-blue); color: var(--brand-blue-dark); }
.chip--active { background: var(--brand-blue); color: var(--white); border-color: var(--brand-blue); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination__btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle); border-radius: 8px;
  background: var(--white); color: var(--text-primary);
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  text-decoration: none;
}
.pagination__btn:hover { border-color: var(--brand-blue); text-decoration: none; }
.pagination__btn--active { background: var(--brand-blue); color: var(--white); border-color: var(--brand-blue); }

/* Article (detail page) */
.article { padding-block: 56px; }
.article__inner { max-width: 880px; margin-inline: auto; padding-inline: var(--gutter); }
.article__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.article__category {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--white); background: var(--brand-blue);
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase;
}
.article__date { font-family: var(--font-en); font-size: 12px; color: var(--text-secondary); }
.article__title { font-size: 32px; font-weight: 700; line-height: 1.5; margin: 0 0 32px; }
@media (max-width: 767px) { .article__title { font-size: 24px; } }
.article__eyecatch { margin-bottom: 40px; aspect-ratio: 16 / 9; border-radius: var(--radius-md); overflow: hidden; }
.article__eyecatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article__body { font-size: 15px; line-height: 1.95; color: var(--text-primary); }
.article__body h2, .article__body h3, .article__body h4 { font-size: 22px; margin: 40px 0 16px; padding-left: 14px; border-left: 4px solid var(--brand-blue); line-height: 1.5; }
.article__body p { margin: 0 0 20px; }
.article__body ul, .article__body ol, .article__body .wp-block-list { padding-left: 22px; margin: 0 0 20px; }
.article__body ul, .article__body ul.wp-block-list { list-style: disc; }
.article__body ol, .article__body ol.wp-block-list { list-style: decimal; }
.article__body li { margin-bottom: 6px; }
.article__body figure { margin: 24px 0; }
.article__body img { border-radius: var(--radius-md); }
.article__body strong { color: var(--brand-blue-dark); }
.article__body figure.wp-block-table { margin: 24px 0; overflow-x: auto; }
.article__body table,
.article__body .wp-block-table table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 14px; background: var(--white); }
.article__body th, .article__body td,
.article__body .wp-block-table th, .article__body .wp-block-table td { border: 1px solid var(--border-subtle); padding: 10px 12px; text-align: left; vertical-align: top; }
.article__body thead th, .article__body th,
.article__body .wp-block-table thead th, .article__body .wp-block-table th { background: var(--bg-base); font-weight: 700; }
.article__body table caption, .article__body .wp-block-table figcaption { caption-side: top; font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; text-align: left; }
.article__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
  margin: 32px 0;
}
@media (max-width: 767px) { .article__stats { grid-template-columns: 1fr; } }
.article__stats > div {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 28px 28px 30px;
}
.article__stat-num { font-family: var(--font-en); font-size: 40px; font-weight: 700; color: var(--brand-blue); line-height: 1.1; }
@media (max-width: 767px) { .article__stat-num { font-size: 32px; } }
.article__stat-label { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-top: 10px; }
.article__stat-note { font-size: 13px; color: var(--text-secondary); margin-top: 10px; line-height: 1.7; }
.article__back { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; }
.article__back a { color: var(--brand-blue-dark); font-weight: 700; font-size: 13px; }

/* ---------- Pagination（the_posts_pagination）---------- */
.pagination { margin-top: 56px; display: flex; justify-content: center; }
.pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border-subtle); border-radius: 10px;
  background: var(--white); color: var(--text-primary);
  font-family: var(--font-en); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.18s ease;
}
.pagination a.page-numbers:hover { border-color: var(--brand-blue); color: var(--brand-blue-dark); }
.pagination .page-numbers.current { background: var(--brand-blue); color: var(--white); border-color: var(--brand-blue); }
.pagination .page-numbers.dots { border: none; background: transparent; min-width: 20px; }

/* Form */
.form-page { padding-block: 56px 96px; }
.form-page__inner { max-width: 720px; margin-inline: auto; padding-inline: var(--gutter); }
.form-page__intro { background: var(--bg-base); border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 40px; font-size: 14px; line-height: 1.85; }
.form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text-primary);
}
.form-row__required {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--error-text); color: var(--white); font-weight: 700;
}
.form-row__optional {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--border-subtle); color: var(--text-secondary); font-weight: 700;
}
.form-row__input, .form-row__textarea, .form-row__select {
  width: 100%;
  font-family: var(--font-jp); font-size: 14px;
  padding: 12px 16px; border: 1px solid var(--border-subtle);
  border-radius: 8px; background: var(--white);
  color: var(--text-primary);
}
.form-row__input:focus, .form-row__textarea:focus, .form-row__select:focus { outline: 2px solid var(--brand-blue); outline-offset: 1px; border-color: var(--brand-blue); }
.form-row__textarea { min-height: 120px; resize: vertical; }
.form-row__help { font-size: 11.5px; color: var(--text-secondary); }
.form-row__checkbox-row { display: flex; gap: 10px; align-items: flex-start; padding: 12px; background: var(--bg-base); border-radius: 8px; }
.form-row__checkbox-row input { margin-top: 3px; }
.form-row__checkbox-row label { font-size: 12.5px; line-height: 1.8; }
.form-row__checkbox-row a { color: var(--brand-blue-dark); text-decoration: underline; }
.form-submit { display: flex; justify-content: center; margin-top: 24px; }
.form-submit .btn { min-width: 240px; }

/* ---------- Contact Form 7 正規化（.form-row レイアウトに合わせる）---------- */
.form .wpcf7-form-control-wrap { display: block; }
.form .wpcf7-form-control.form-row__input,
.form .wpcf7-form-control.form-row__select,
.form .wpcf7-form-control.form-row__textarea { width: 100%; }
.form .form-row__checkbox-row .wpcf7-form-control-wrap { display: inline; }
.form .form-row__checkbox-row .wpcf7-list-item { margin: 0; display: inline; }
.form .form-row__checkbox-row .wpcf7-list-item-label { font-size: 12.5px; line-height: 1.8; }
.form .form-submit .wpcf7-spinner { margin-left: 12px; }
.wpcf7 .wpcf7-response-output { margin: 16px 0 0; border-radius: 8px; font-size: 13px; }
.wpcf7 .wpcf7-not-valid-tip { font-size: 11.5px; color: var(--error-text); margin-top: 4px; }

/* News list (サムネイルなしリスト型) */
.news-list-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}
.news-list-simple__item {
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: background 0.18s ease;
}
.news-list-simple__item:hover {
  background: var(--bg-base);
  text-decoration: none;
}
.news-list-simple__date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.news-list-simple__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  white-space: nowrap;
}
.news-list-simple__title {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}
.news-list-simple__item:hover .news-list-simple__title { color: var(--brand-blue-dark); }
@media (max-width: 767px) {
  .news-list-simple__item { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
  .news-list-simple__date { font-size: 12px; }
  .news-list-simple__title { font-size: 13.5px; }
}

/* Contact info card */
.contact-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 640px) { .contact-info { grid-template-columns: 1fr; } }
.contact-info__card { padding: 24px 28px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.contact-info__card-label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--brand-blue-dark); margin-bottom: 8px; }
.contact-info__card-value { font-family: var(--font-en); font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.contact-info__card-note { font-size: 11.5px; color: var(--text-secondary); line-height: 1.65; }

/* 実画像が入った placeholder（仮配置版） */
.placeholder--filled {
  background: var(--white);
  border: none;
  color: transparent;
  letter-spacing: 0;
}
.placeholder--filled img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
/* contain モード（ロゴやイラストで余白保持） */
.placeholder--filled.placeholder--contain {
  background: var(--bg-base);
}
.placeholder--filled.placeholder--contain img {
  object-fit: contain;
  padding: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-blue-dark); }

.btn--ghost {
  background: var(--white);
  color: var(--brand-blue-dark);
  border: 1.5px solid var(--brand-blue);
}
.btn--ghost:hover { background: var(--bg-subtle); }

.btn--sm { height: 40px; padding: 0 20px; font-size: 13px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
}
.site-logo:hover { text-decoration: none; }
.site-logo__img {
  width: auto;
  height: 36px;
  display: block;
}
.site-logo__divider {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
  display: inline-block;
  flex: none;
}
.site-logo__product {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .site-logo { gap: 10px; }
  .site-logo__img { height: 30px; }
  .site-logo__divider { height: 20px; }
  .site-logo__product { font-size: 13px; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.site-nav__list a:hover { color: var(--brand-blue-dark); }
.site-nav__actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) {
  .site-nav__list { display: none; }
}
@media (max-width: 540px) {
  .site-nav__actions .btn--ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(94, 183, 232, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 80%, rgba(82, 184, 186, 0.10) 0%, transparent 55%),
    var(--white);
  padding-block: 96px 88px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero { padding-block: 72px 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-blue-dark);
  background: var(--bg-subtle);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--text-primary);
}
@media (max-width: 1024px) { .hero__title { font-size: 44px; } }
@media (max-width: 540px) { .hero__title { font-size: 34px; } }

.hero__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-blue-dark);
  margin: 0 0 12px;
}
@media (max-width: 540px) { .hero__subtitle { font-size: 15px; } }

.hero__desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 0 28px;
  max-width: 540px;
}

.hero__patent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px dashed var(--brand-blue);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--text-primary);
}
.hero__patent-tag {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  letter-spacing: 0.12em;
  background: var(--bg-muted);
  padding: 3px 8px;
  border-radius: 4px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual { position: relative; }
.hero__visual .placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* ============================================================
   Stats band (3 KPI)
   ============================================================ */
.stats-band {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-subtle) 100%);
  padding-block: 72px;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .stats-band { padding-block: 56px; }
  .stats-band__grid { grid-template-columns: 1fr; gap: 16px; }
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-card__number {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat-card__unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-left: 2px;
}
.stat-card__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.stat-card__note {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 540px) { .stat-card__number { font-size: 44px; } }

/* ============================================================
   Section: 何屋さん（プラットフォーム事業者）
   ============================================================ */
.platform__header { text-align: center; }
.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .platform__grid { grid-template-columns: 1fr; }
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
.platform-card__tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  background: var(--bg-muted);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.platform-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--brand-blue);
}
.platform-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
}
.platform-card__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}

/* ============================================================
   Section: 5 つの課題
   ============================================================ */
.pains { background: var(--bg-base); }
.pains__header { text-align: center; }
.pains__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1180px) {
  .pains__grid { grid-template-columns: repeat(3, 1fr); }
  .pains__grid > :nth-child(4),
  .pains__grid > :nth-child(5) { grid-column: span 1; }
  .pains__grid > :nth-child(4) { grid-column: 1 / 2; }
}
@media (max-width: 768px) {
  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .pains__grid > :nth-child(4),
  .pains__grid > :nth-child(5) { grid-column: auto; }
}
@media (max-width: 480px) {
  .pains__grid { grid-template-columns: 1fr; }
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
}
.pain-card__icon {
  width: 36px;
  height: 36px;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.pain-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.pain-card__sub {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pain-card__body {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0 0 14px;
  flex: 1;
}
.pain-card__target {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 10px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pain-card__target-label {
  display: block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-blue-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pains__triggers {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
}
.pains__triggers-title {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  margin-right: 12px;
  vertical-align: middle;
}
.pains__triggers-body {
  display: inline;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .pains__triggers-title { display: block; margin-bottom: 6px; }
  .pains__triggers-body { display: block; }
}

/* ============================================================
   Section: 「医師シェアリング」の仕組み（図解）
   ============================================================ */
.sharing { background: var(--white); }
.sharing__header { text-align: center; }
.sharing__frame { margin-top: 8px; }
.sharing__stage {
  display: grid;
  grid-template-columns: 1fr 92px 1.05fr 92px 1.35fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .sharing__stage { grid-template-columns: 1fr; gap: 16px; }
}

/* BEFORE */
.sharing-before {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
}
.sharing-before__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.sharing-before__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0 0 14px;
}
.sharing-before__doctors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.sharing-before__doc {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1.5px solid var(--brand-blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
}
.sharing-before__doc svg { width: 26px; height: 26px; }
.sharing-before__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.sharing-before__tags span {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-secondary);
}

/* Arrow col */
.sharing-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 4px;
}
.sharing-arrow__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  text-align: center;
  line-height: 1.5;
}
.sharing-arrow svg { color: var(--brand-blue); }
@media (max-width: 1024px) {
  .sharing-arrow { flex-direction: row; padding: 8px 0; }
  .sharing-arrow svg { transform: rotate(90deg); }
}

/* PLATFORM (center) */
.sharing-platform {
  background: var(--brand-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-brand);
}
.sharing-platform__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.92;
}
.sharing-platform__logo {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 2px;
  letter-spacing: 0.02em;
}
.sharing-platform__caption {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.96;
}
.sharing-platform__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  width: 60%;
  margin: 16px 0;
}
.sharing-platform__pool {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.96;
}
.sharing-platform__num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin: 6px 0;
}
.sharing-platform__num small {
  font-size: 16px;
  font-weight: 700;
  margin-left: 2px;
}

/* AFTER deliver */
.sharing-after {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sharing-deliver {
  background: var(--white);
  border: 1.5px solid var(--brand-blue);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.sharing-deliver__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
  flex-shrink: 0;
}
.sharing-deliver__icon svg { width: 24px; height: 24px; }
.sharing-deliver__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.sharing-deliver__when {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

/* Sharing bottom: message + patent */
.sharing__bottom {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 1024px) {
  .sharing__bottom { grid-template-columns: 1fr; }
}
.sharing-msg {
  background: var(--bg-base);
  border-left: 4px solid var(--brand-blue);
  border-radius: 6px;
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.85;
}
.sharing-msg strong { color: var(--brand-blue-dark); }
.sharing-patent {
  background: var(--white);
  border: 1.5px dashed var(--brand-blue);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.sharing-patent__badge {
  width: 70px;
  height: 70px;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1.1;
}
.sharing-patent__mark {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sharing-patent__no {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.sharing-patent__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
}
.sharing-patent__sub {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.55;
}

/* ============================================================
   Section: 5 つの基幹機能
   ============================================================ */
.features { background: var(--bg-subtle); }
.features__header { text-align: center; }
.features__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1180px) { .features__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .features__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features__row { grid-template-columns: 1fr; } }

.feature-cell {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.feature-cell__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: 50%;
  color: var(--brand-blue-dark);
  margin-bottom: 14px;
}
.feature-cell__icon svg { width: 26px; height: 26px; }
.feature-cell__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.feature-cell__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 14px;
  flex: 1;
}
.feature-cell__when {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 10px;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.feature-cell__when-label {
  display: block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-blue-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ============================================================
   Scroll reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.40s; }

.reveal--slide-l { transform: translateX(-32px); }
.reveal--slide-l.is-visible { transform: none; }
.reveal--slide-r { transform: translateX(32px); }
.reveal--slide-r.is-visible { transform: none; }
.reveal--zoom { transform: scale(0.94); }
.reveal--zoom.is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--slide-l, .reveal--slide-r, .reveal--zoom {
    opacity: 1; transform: none; transition: none;
  }
}

/* ============================================================
   Stats band (REDESIGN): 背景の大型タイポ + 前景の説明
   ============================================================ */
.stats-band {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-subtle) 100%);
  padding-block: 96px;
  overflow: hidden;
}
.stats-band__inner { position: relative; z-index: 1; }
.stats-band__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.stats-band__head h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}
.stats-band__head p {
  max-width: 460px;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.85;
}
@media (max-width: 768px) {
  .stats-band__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats-band__head h2 { font-size: 22px; }
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .stats-band__grid { grid-template-columns: 1fr; gap: 16px; } }

.stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
/* Background giant typography */
.stat-card__bg-num {
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: var(--font-en);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-blue-soft);
  opacity: 0.45;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 540px) { .stat-card__bg-num { font-size: 132px; } }
.stat-card__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
  margin-bottom: 18px;
  z-index: 1;
}
.stat-card__number {
  position: relative;
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  z-index: 1;
}
.stat-card__unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-left: 2px;
}
.stat-card__label {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  z-index: 1;
}
.stat-card__note {
  position: relative;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  z-index: 1;
}

/* ============================================================
   Platform (REDESIGN): ハブ＆スポーク（中央 Cloud Dr. + 3 satellite）
   ============================================================ */
.platform {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(94, 183, 232, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.platform__inner { position: relative; }

.hub-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 480px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .hub-stage { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
}

.hub-stage__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media (max-width: 900px) { .hub-stage__lines { display: none; } }

.hub-stage__left,
.hub-stage__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hub-stage__left { padding-right: 12px; }
.hub-stage__right { padding-left: 12px; }
@media (max-width: 900px) {
  .hub-stage__left, .hub-stage__right { padding: 0; }
}

.hub-satellite {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hub-satellite:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
.hub-satellite__tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  background: var(--bg-muted);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.hub-satellite__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.hub-satellite__body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}

/* Center hub */
.hub-stage__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.hub-core {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7BC4EC, var(--brand-blue) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(94, 183, 232, 0.36);
  position: relative;
}
.hub-core::before, .hub-core::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(94, 183, 232, 0.28);
}
.hub-core::after { inset: -42px; border-color: rgba(94, 183, 232, 0.14); }
.hub-core__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.96;
}
.hub-core__logo {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.hub-core__caption {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}
.hub-core__num {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-top: 18px;
}
.hub-core__num small { font-size: 13px; font-weight: 700; margin-left: 2px; }
.hub-core__note { font-size: 11px; opacity: 0.92; margin-top: 4px; }

.hub-placeholder {
  width: 100%;
  max-width: 360px;
  margin-top: 0;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}

.platform-illust {
  width: 100%;
  max-width: 600px;
  margin: 12px auto 32px;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: none;
  box-shadow: none;
}
.placeholder--filled.placeholder--contain.platform-illust { background: transparent; }

/* ============================================================
   Pains (REDESIGN): 非対称 2 カラム
   ============================================================ */
.pains { background: var(--bg-base); position: relative; overflow: hidden; }
.pains::before {
  content: "";
  position: absolute;
  top: 0; left: -10%;
  width: 80%;
  height: 200px;
  background: linear-gradient(135deg, rgba(94, 183, 232, 0.10), transparent);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}
.pains__inner { position: relative; }

.pains__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .pains__layout { grid-template-columns: 1fr; gap: 32px; }
}

.pains__intro { position: sticky; top: 96px; }
@media (max-width: 1024px) { .pains__intro { position: static; } }

.pains__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-blue-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pains__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 16px;
}
.pains__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-primary);
  margin: 0 0 24px;
}
.pains__illust {
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
}

.pains__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 540px) { .pains__grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
.pain-card__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-blue-soft);
  letter-spacing: -0.02em;
}

.pains__triggers {
  grid-column: 1 / -1;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
}

/* ============================================================
   Sharing (微調整): 周囲に装飾 + 背景
   ============================================================ */
.sharing { position: relative; overflow: hidden; }
.sharing::before, .sharing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 183, 232, 0.10), transparent 70%);
  pointer-events: none;
}
.sharing::before { width: 360px; height: 360px; top: 5%; left: -120px; }
.sharing::after { width: 480px; height: 480px; bottom: -120px; right: -160px; }
.sharing__inner { position: relative; }

/* ============================================================
   Features (REDESIGN): フロー型ステップ
   ============================================================ */
.features { background: var(--bg-subtle); position: relative; overflow: hidden; }
.features__inner { position: relative; }

.features__illust {
  margin: 0 auto 40px;
  max-width: 720px;
  aspect-ratio: 16 / 6;
}

.features__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.features__flow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand-blue) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
@media (max-width: 1180px) {
  .features__flow { grid-template-columns: repeat(3, 1fr); }
  .features__flow::before { display: none; }
}
@media (max-width: 768px) { .features__flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features__flow { grid-template-columns: 1fr; } }

.flow-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
.flow-step__num {
  position: absolute;
  top: -16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
}
.flow-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
  margin: 0 auto 14px;
}
.flow-step__icon svg { width: 26px; height: 26px; }
.flow-step__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--text-primary);
  text-align: center;
}
.flow-step__desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 12px;
  flex: 1;
}
.flow-step__when {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 8px;
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.flow-step__when-label {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-blue-dark);
  margin-bottom: 3px;
  text-transform: uppercase;
}

/* ============================================================
   Integration (3 連携方法): 段差カード
   ============================================================ */
.integration { background: var(--white); position: relative; overflow: hidden; }
.integration::before {
  content: "";
  position: absolute;
  top: 10%; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 183, 232, 0.10), transparent 70%);
  pointer-events: none;
}
.integration__inner { position: relative; }

.integration__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
  align-items: start;
}
@media (max-width: 1024px) { .integration__grid { grid-template-columns: 1fr; gap: 24px; } }

.integ-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.integ-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
/* Step offset for visual rhythm */
.integ-card--step-1 { margin-top: 0; }
.integ-card--step-2 { margin-top: 0; }
.integ-card--step-3 { margin-top: 0; }
@media (max-width: 1024px) {
  .integ-card--step-1,
  .integ-card--step-2,
  .integ-card--step-3 { margin-top: 0; }
}

.integ-card__illust {
  margin: -36px -28px 24px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.integ-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}
.integ-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.04em;
}
.integ-card__lead {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  letter-spacing: 0.08em;
}

.integ-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
  margin-bottom: 16px;
}
.integ-card__icon svg { width: 30px; height: 30px; }
.integ-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.integ-card__target {
  font-size: 12px;
  color: var(--brand-blue-dark);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-subtle);
}
.integ-card__desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0 0 16px;
  flex: 1;
}
.integ-card__benefits-label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.integ-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.integ-card__benefits li {
  position: relative;
  font-size: 12.5px;
  line-height: 1.65;
  padding-left: 18px;
  color: var(--text-primary);
}
.integ-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: rotate(45deg);
}
.integ-card__recom {
  margin-top: auto;
  background: var(--bg-base);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-primary);
  line-height: 1.65;
}
.integ-card__recom-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  margin-right: 8px;
  text-transform: uppercase;
}

/* ============================================================
   Compliance (規制対応): 横長帯 4 段
   ============================================================ */
.compliance { background: var(--bg-base); position: relative; overflow: hidden; }
.compliance__inner { position: relative; }
.compliance__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}
@media (max-width: 1024px) { .compliance__layout { grid-template-columns: 1fr; gap: 32px; } }

.compliance__intro { position: sticky; top: 96px; }
@media (max-width: 1024px) { .compliance__intro { position: static; } }
.compliance__intro h2 { font-size: 28px; line-height: 1.45; margin: 0 0 16px; }
.compliance__intro p { font-size: 14px; line-height: 1.9; color: var(--text-primary); margin: 0 0 24px; }
.compliance__intro .placeholder { margin-top: 12px; }

.compliance__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compliance-row {
  display: grid;
  grid-template-columns: 64px 1fr 220px;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.compliance-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .compliance-row { grid-template-columns: 56px 1fr; }
  .compliance-row__merit { grid-column: 1 / -1; }
}
.compliance-row__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--brand-blue-dark);
  display: flex; align-items: center; justify-content: center;
}
.compliance-row__icon svg { width: 28px; height: 28px; }
.compliance-row__main h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}
.compliance-row__main p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
}
.compliance-row__merit {
  background: var(--bg-base);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 11.5px;
  color: var(--text-primary);
  line-height: 1.7;
}
.compliance-row__merit-label {
  display: block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ============================================================
   Partners / Track record
   ============================================================ */
.partners { background: var(--white); position: relative; overflow: hidden; }
.partners__inner { position: relative; }
.partners__logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-bottom: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 900px) { .partners__logo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .partners__logo-strip { grid-template-columns: repeat(2, 1fr); } }
.partners__logo-strip .placeholder {
  aspect-ratio: 5 / 2;
  font-size: 10px;
}

.partners__featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .partners__featured { grid-template-columns: 1fr; } }

.partner-feature {
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid var(--brand-blue-soft);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 540px) { .partner-feature { grid-template-columns: 1fr; } }

.partner-feature__logo .placeholder { aspect-ratio: 5 / 2; }
.partners__logo-strip .placeholder--filled.placeholder--contain img { padding: 0; }
.partner-feature__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.partner-feature__sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.partner-feature__body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}

.partners__industry-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  transition: border-color 0.18s ease;
}
.industry-row:hover { border-color: var(--brand-blue-soft); }
.industry-row__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  line-height: 1.5;
}
.industry-row__detail {
  font-size: 12.5px;
  color: var(--text-primary);
  line-height: 1.65;
}

/* ============================================================
   Cases (利用事例 4 ピックアップ)
   ============================================================ */
.cases { background: var(--bg-subtle); position: relative; overflow: hidden; }
.cases__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 40px; }
.cases__head-text { max-width: 760px; }
.cases__more { color: var(--brand-blue-dark); font-weight: 700; font-size: 13px; white-space: nowrap; }
.cases__more::after { content: "›"; margin-left: 6px; }
@media (max-width: 768px) { .cases__head { flex-direction: column; align-items: flex-start; } }

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1180px) { .cases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cases__grid { grid-template-columns: 1fr; } }

.case-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
}
.case-card__thumb { aspect-ratio: 16 / 9; border-radius: 0; }
.case-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.case-card__tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-blue-dark);
  background: var(--bg-muted);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  align-self: flex-start;
}
.case-card__industry {
  font-size: 11px;
  color: var(--text-secondary);
}
.case-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 4px 0 6px;
  color: var(--text-primary);
}
.case-card__excerpt {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.case-card__stat {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
  font-size: 11.5px;
  color: var(--brand-blue-dark);
  font-weight: 700;
}

/* ---------- 事例詳細: 業種別CTA（軽量ボックス）＋関連事例 ---------- */
.case-cta { padding-block: 8px var(--section-gap); }
@media (max-width: 767px) { .case-cta { padding-block: 8px var(--section-gap-sp); } }
.case-cta__box {
  background: var(--bg-base);
  border: 1px solid var(--brand-blue-soft);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
@media (max-width: 767px) { .case-cta__box { padding: 36px 22px; } }
.case-cta__title { font-size: 22px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; }
@media (max-width: 767px) { .case-cta__title { font-size: 19px; } }
.case-cta__lead { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin: 0 auto 28px; max-width: 680px; }
.case-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.related-cases { padding-block: 0 var(--section-gap); }
@media (max-width: 767px) { .related-cases { padding-block: 0 var(--section-gap-sp); } }
.related-cases__title { font-size: 28px; font-weight: 700; color: var(--text-primary); margin: 0 0 28px; }
@media (max-width: 767px) { .related-cases__title { font-size: 24px; } }
.related-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .related-cases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-cases__grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-blue-soft); }
.related-card__thumb { aspect-ratio: 16 / 9; }
.related-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.related-card__label { font-size: 12px; font-weight: 700; color: var(--brand-blue-dark); letter-spacing: 0.02em; }
.related-card__label .en { font-family: var(--font-en); letter-spacing: 0.06em; }
.related-card__title { font-size: 16px; font-weight: 700; line-height: 1.55; color: var(--text-primary); margin: 0; }
@media (max-width: 767px) { .related-card__title { font-size: 15px; } }

/* ============================================================
   News (お知らせ 3 ピックアップ)
   ============================================================ */
.news { background: var(--white); }
.news__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 40px; }
.news__head-text { max-width: 760px; }
.news__more { color: var(--brand-blue-dark); font-weight: 700; font-size: 13px; white-space: nowrap; }
.news__more::after { content: "›"; margin-left: 6px; }
@media (max-width: 768px) { .news__head { flex-direction: column; align-items: flex-start; } }

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .news__list { grid-template-columns: 1fr; } }

.news-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-soft);
  text-decoration: none;
}
.news-card__thumb { aspect-ratio: 4 / 3; border-radius: 0; }
.news-card__body { padding: 16px 20px 20px; }
.news-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}
.news-card__category {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--brand-blue);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.news-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: var(--text-primary);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-base); }
.faq__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) { .faq__layout { grid-template-columns: 1fr; gap: 24px; } }
.faq__intro { position: sticky; top: 96px; }
@media (max-width: 1024px) { .faq__intro { position: static; } }
.faq__intro h2 { font-size: 28px; line-height: 1.45; margin: 0 0 12px; }
.faq__intro p { font-size: 14px; line-height: 1.85; color: var(--text-primary); margin: 0; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-blue-dark);
  line-height: 1;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0 24px 20px 66px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-primary);
}

/* ============================================================
   CTA band (資料請求 + 30 分相談)
   ============================================================ */
.cta-band {
  position: relative;
  background:
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: var(--white);
  padding-block: 80px;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  pointer-events: none;
}
.cta-band::before { width: 480px; height: 480px; top: -200px; left: -120px; }
.cta-band::after  { width: 360px; height: 360px; bottom: -160px; right: -100px; }
.cta-band__inner {
  position: relative;
  text-align: center;
}
.cta-band h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
}
@media (max-width: 768px) { .cta-band h2 { font-size: 24px; } }
.cta-band p {
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.9;
  opacity: 0.96;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band__actions .btn--primary {
  background: var(--white);
  color: var(--brand-blue-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.cta-band__actions .btn--primary:hover { background: var(--bg-subtle); }
.cta-band__actions .btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-band__actions .btn--ghost:hover { background: rgba(255, 255, 255, 0.10); }

.cta-band__corporate {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.88;
}
.cta-band__corporate a { color: var(--white); text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--text-primary);
  color: var(--white);
  padding-block: 56px 32px;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .site-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__main { grid-template-columns: 1fr; } }

.site-footer__brand img {
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.site-footer__brand p {
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.site-footer__badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 12px;
}
.site-footer__badges img {
  width: auto;
  height: 56px;
  filter: none;
  margin: 0;
}

.site-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-footer__col a:hover { color: var(--white); text-decoration: none; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
}
