:root {
  --ink: #111827;
  --navy: #0a1733;
  --navy-2: #122647;
  --slate: #4b5563;
  --muted: #6b7280;
  --line: #d8dee8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #ffffff;
  --soft: #f4f7fb;
  --steel: #e8edf4;
  --cyan: #0ea5c6;
  --cyan-dark: #077792;
  --amber: #d88a1f;
  --green: #277c64;
  --shadow: 0 20px 60px rgba(10, 23, 51, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font: "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  height: 72px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 28px;
}

.brand {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 21px;
  font-weight: 700;
  gap: 10px;
  margin-right: auto;
}

.brand-mark {
  background: var(--navy);
  border-radius: 4px;
  display: inline-block;
  height: 26px;
  position: relative;
  width: 26px;
}

.brand-mark::after {
  background: var(--cyan);
  content: "";
  height: 10px;
  position: absolute;
  right: -3px;
  top: 4px;
  width: 10px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 23px;
}

.nav-links a {
  color: #263247;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  color: var(--cyan-dark);
}

.header-cta {
  align-items: center;
  background: var(--navy);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  padding: 0 18px;
  white-space: nowrap;
}

.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  min-height: 680px;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: 72px 54px 78px max(54px, calc((100vw - var(--max)) / 2 + 28px));
  position: relative;
  z-index: 2;
}

.label {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 22px 0 26px;
  overflow-wrap: anywhere;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.95;
  margin: 0;
  max-width: 610px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  height: 48px;
  justify-content: center;
  padding: 0 22px;
}

.btn-primary {
  background: var(--cyan);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.hero-media {
  min-height: 680px;
  position: relative;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media::before {
  background: linear-gradient(90deg, var(--navy) 0%, rgba(10, 23, 51, 0.72) 20%, rgba(10, 23, 51, 0) 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.metric-stack {
  bottom: 54px;
  display: grid;
  gap: 12px;
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  width: 276px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: var(--navy);
  padding: 16px;
}

.metric-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.metric-head strong {
  font-size: 13px;
}

.metric-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.metric-value {
  color: var(--cyan-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.spark {
  align-items: end;
  display: flex;
  gap: 3px;
  height: 30px;
  margin-top: 12px;
}

.spark i {
  background: var(--cyan);
  display: block;
  flex: 1;
  min-width: 5px;
}

.quick-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 28px;
}

.quick-item {
  border-left: 1px solid var(--line);
  display: block;
  min-height: 138px;
  padding: 28px 26px;
}

.quick-item:last-child {
  border-right: 1px solid var(--line);
}

.quick-item strong {
  color: var(--navy);
  display: block;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.quick-item:hover strong {
  color: var(--cyan-dark);
}

.quick-item p,
.card p,
.section-lead,
.scope-row p,
.timeline-card p,
.compact p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.section {
  padding: 96px 28px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--navy);
  color: #fff;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  margin-bottom: 42px;
}

.section h2,
.page-hero h1 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 12px 0 0;
  overflow-wrap: anywhere;
}

.dark .section h2,
.section.dark h2,
.section.dark .section-lead {
  color: #fff;
}

.section-lead {
  font-size: 16px;
  line-height: 1.9;
}

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

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

.loop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 30px;
  position: relative;
}

.loop-card::after {
  background: var(--amber);
  content: "";
  height: 3px;
  left: 30px;
  position: absolute;
  right: 30px;
  top: 78px;
}

.loop-card span {
  color: var(--cyan-dark);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 54px;
}

.loop-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.loop-card p,
.matrix-cell p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: 26px;
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  color: #fff;
}

.card-number {
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 42px;
}

.card h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.dark-card h3,
.dark-card p {
  color: #fff;
}

.process {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 22px;
  overflow: hidden;
}

.process-step {
  border-right: 1px solid var(--line);
  min-height: 118px;
  padding: 24px 18px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--cyan-dark);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-step strong {
  color: var(--navy);
  font-size: 16px;
}

.split {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.media-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-frame img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.list-item {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 150px 1fr;
  padding-top: 18px;
}

.list-item strong {
  color: var(--navy);
  line-height: 1.5;
}

.list-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 86px 28px 72px;
}

.page-hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  margin: 0 auto;
  max-width: var(--max);
}

.page-hero-inner > * {
  min-width: 0;
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.95;
  margin: 0;
  max-width: 680px;
}

.page-panel {
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.page-panel img {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  width: 100%;
}

.panel-data {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  bottom: 22px;
  color: var(--navy);
  left: 22px;
  padding: 18px;
  position: absolute;
  width: 260px;
}

.panel-data strong {
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
}

.panel-data b {
  color: var(--cyan-dark);
  font-size: 28px;
  line-height: 1;
}

.matrix {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.matrix-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.matrix-cell h3 {
  color: var(--navy);
  font-size: 21px;
  margin: 0 0 10px;
}

.spec-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.75fr 1fr 1.25fr;
  padding: 22px 26px;
}

.spec-row + .spec-row {
  border-top: 1px solid var(--line);
}

.spec-head {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

.spec-row strong {
  color: var(--navy);
}

.spec-head strong {
  color: #fff;
}

.spec-row span {
  color: var(--slate);
  font-size: 14px;
}

.matrix-cell ul,
.deliverables ul {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.scope {
  border-top: 1px solid var(--line);
}

.scope-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 220px 1fr 180px;
  padding: 24px 0;
}

.scope-row strong {
  color: var(--navy);
  font-size: 18px;
}

.scope-row span {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
  justify-self: end;
}

.report-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(450px, 1.08fr) minmax(0, 0.92fr);
}

.deliverables {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.deliverables h3 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.risk-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.08fr 0.92fr;
}

.risk-map,
.note-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.risk-map h3,
.note-panel h3 {
  color: var(--navy);
  margin: 0 0 18px;
}

.heat {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(5, 1fr);
}

.heat i {
  aspect-ratio: 1.45;
  border-radius: 3px;
  display: block;
}

.h1 { background: #d9efe7; }
.h2 { background: #a8dccd; }
.h3 { background: #f1cf74; }
.h4 { background: #e89b45; }
.h5 { background: #c94d3f; }

.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.timeline-card span {
  color: var(--amber);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 36px;
}

.timeline-card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.ops-board {
  background: #071124;
  border: 1px solid #20304c;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 24px;
}

.ops-board h3 {
  color: #fff;
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.ops-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  min-height: 120px;
  padding: 18px;
}

.ops-cell span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ops-cell strong {
  color: var(--cyan);
  display: block;
  font-size: 28px;
  line-height: 1;
}

.bars {
  align-items: end;
  display: flex;
  gap: 4px;
  height: 48px;
  margin-top: 18px;
}

.bars i {
  background: var(--cyan);
  display: block;
  flex: 1;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 28px;
}

.cta-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  margin: 0 0 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer {
  background: #071124;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  padding: 28px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.compact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.compact strong {
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.compact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.app-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.app-shot {
  background: var(--steel);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.app-shot img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.app-copy {
  padding: 28px;
}

.app-copy span {
  color: var(--cyan-dark);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.app-copy h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.app-copy p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.platform-actions {
  margin-top: 28px;
}

.tool-split {
  display: grid;
  gap: 14px;
}

.tool-split img {
  aspect-ratio: 16 / 7;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.platform-panel img {
  object-position: top left;
}

.platform-feature {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(500px, 1.1fr) minmax(0, 0.9fr);
}

.platform-feature.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
}

.feature-list {
  display: grid;
  gap: 16px;
}

@media (max-width: 980px) {
  .nav {
    height: auto;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .nav,
  .nav-links {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .page-hero-inner,
  .section-head,
  .split,
  .report-layout,
  .risk-grid,
  .app-showcase,
  .platform-feature,
  .platform-feature.reverse,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100vw;
    padding: 58px 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(32px, 6.6vw, 46px);
    line-height: 1.2;
    word-break: break-all;
  }

  .section h2 {
    font-size: clamp(30px, 6vw, 42px);
    word-break: break-all;
  }

  .hero-lead,
  .page-hero p,
  .section-lead {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-media,
  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .metric-stack {
    left: 28px;
    right: auto;
  }

  .quick-inner,
  .cards,
  .timeline,
  .loop-grid,
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .scope-row {
    grid-template-columns: 1fr;
  }

  .scope-row span {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 13px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(29px, 8.2vw, 32px);
    line-height: 1.2;
    word-break: break-all;
  }

  .section h2 {
    font-size: clamp(28px, 8vw, 34px);
    word-break: break-all;
  }

  .hero-lead,
  .page-hero p,
  .section-lead,
  .quick-item p,
  .card p,
  .list-item p,
  .scope-row p,
  .timeline-card p {
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .section {
    padding: 70px 20px;
  }

  .page-hero {
    padding: 64px 20px;
  }

  .quick-inner,
  .cards,
  .timeline,
  .loop-grid,
  .compact-grid,
  .app-showcase,
  .matrix,
  .process,
  .ops-board,
  .spec-row {
    grid-template-columns: 1fr;
  }

  .quick-item,
  .quick-item:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .metric-stack {
    bottom: 24px;
    width: calc(100% - 56px);
  }
}

/* ===== integration additions (prices / plans / form / footer / pills) ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 2px 14px; font-size: 12.5px; color: var(--slate); background: var(--paper); }
.spec-kv { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.spec-kv .kv { display: grid; grid-template-columns: 160px 1fr; border-top: 1px solid var(--line); }
.spec-kv .kv:first-child { border-top: 0; }
.spec-kv .kv strong { background: var(--soft); padding: 10px 14px; font-size: 13px; }
.spec-kv .kv span { padding: 10px 14px; font-size: 13.5px; color: var(--slate); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 26px 22px; position: relative; display: flex; flex-direction: column; }
.plan.rec { border-color: var(--cyan-dark); box-shadow: var(--shadow); }
.plan.rec::before { content: "推奨"; position: absolute; top: -12px; left: 22px; background: var(--cyan-dark); color: #fff; font-size: 11px; letter-spacing: .18em; padding: 2px 12px; border-radius: 999px; }
.plan .p-name { font-weight: 700; font-size: 15px; }
.plan .p-price { font-size: 30px; font-weight: 700; color: var(--navy); margin: 8px 0 0; }
.plan .p-price small { font-size: 13px; font-weight: 500; }
.plan .p-unit { font-size: 11.5px; color: var(--muted); margin-bottom: 14px; }
.plan ul { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--slate); }
.plan li { padding: 8px 0; border-top: 1px dashed var(--line); }
.plan li::before { content: "✓ "; color: var(--cyan-dark); font-weight: 700; }
.plan li.no { color: var(--muted); }
.plan li.no::before { content: "— "; color: var(--line); }
.menu-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.menu-row { display: grid; grid-template-columns: 190px 1fr 200px; border-top: 1px solid var(--line); background: var(--paper); }
.menu-row:first-child { border-top: 0; }
.menu-row.head { background: var(--navy); color: #fff; font-size: 12.5px; letter-spacing: .06em; }
.menu-row > * { padding: 12px 16px; font-size: 13.5px; }
.menu-row strong { background: var(--soft); font-size: 13px; }
.menu-row.head strong { background: transparent; color: #fff; }
.menu-row span { color: var(--slate); }
.menu-row b { color: var(--cyan-dark); font-weight: 700; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; background: var(--paper); }
.price-card .tagline { font-size: 11px; letter-spacing: .16em; color: var(--cyan-dark); text-transform: uppercase; }
.price-card h3 { margin: 6px 0 4px; font-size: 16.5px; }
.price-card .amount { font-size: 22px; font-weight: 700; color: var(--navy); }
.price-card .amount small { font-size: 12px; font-weight: 500; color: var(--muted); }
.price-card p { font-size: 13px; color: var(--slate); margin: 10px 0 0; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; font-size: 12.5px; font-weight: 700; margin: 14px 0 4px; }
.contact-form label em { color: #b4232a; font-style: normal; font-size: 11px; margin-left: 6px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; font: inherit; font-size: 14px; background: var(--soft); }
.contact-form .consent { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--slate); margin-top: 14px; }
.contact-form .consent input { margin-top: 4px; }
.contact-form button { margin-top: 18px; width: 100%; border: 0; cursor: pointer; }
.cta-band .cta-inner { align-items: flex-start; }
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 44px 0 30px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: block; }
.footer-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line-dark); }
.footer-cols h4 { color: #fff; font-size: 13px; margin: 0 0 10px; letter-spacing: .08em; }
.footer-cols a, .footer-cols p { display: block; font-size: 12.5px; color: rgba(255,255,255,.7); margin: 0 0 8px; }
.footer-cols a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 12px; padding-top: 18px; font-size: 12px; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.note-fine { font-size: 11.5px; color: var(--muted); margin-top: 14px; line-height: 1.7; }
.company-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.company-table th { background: var(--soft); width: 130px; text-align: left; font-size: 13px; padding: 11px 14px; border-top: 1px solid var(--line); }
.company-table td { font-size: 13.5px; color: var(--slate); padding: 11px 14px; border-top: 1px solid var(--line); }
.company-table tr:first-child th, .company-table tr:first-child td { border-top: 0; }
@media (max-width: 860px) { .plans, .price-cards { grid-template-columns: 1fr; } .menu-row { grid-template-columns: 1fr; } .contact-form .row { grid-template-columns: 1fr; } .footer-cols { grid-template-columns: 1fr; } .spec-kv .kv { grid-template-columns: 120px 1fr; } }

/* faq */
.faq-list { margin-top: 8px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: 10px; padding: 0 18px; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 14px; padding: 14px 0; list-style-position: inside; }
.faq-item summary::marker { color: var(--cyan-dark); }
.faq-item p { font-size: 13.5px; color: var(--slate); margin: 0 0 14px; }
