:root {
  --ink: #101624;
  --muted: #5d6677;
  --line: #d9e0ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #0b58d0;
  --blue-dark: #07327a;
  --teal: #0e9a9a;
  --gold: #bd8a2f;
  --danger: #c92929;
  --shadow: 0 18px 60px rgba(16, 22, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.motion-ready .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(217, 224, 234, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-header {
  transition:
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(16, 22, 36, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand-text {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  color: var(--blue-dark);
  font-weight: 900;
}

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 68px;
  padding: 0 34px;
  border: 1px solid rgba(255, 238, 166, 0.9);
  border-radius: 999px;
  color: #071b3b;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.46) 18%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffe487 0%, #d8ad3a 48%, #b98422 100%);
  box-shadow:
    0 16px 40px rgba(7, 27, 59, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -2px 0 rgba(99, 65, 9, 0.24);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.floating-cta::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -55%;
  width: 44%;
  height: 190%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg);
  animation: ctaGloss 3.8s ease-in-out infinite;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px rgba(7, 27, 59, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -2px 0 rgba(99, 65, 9, 0.24);
}

@keyframes ctaGloss {
  0%,
  42% {
    left: -55%;
    opacity: 0;
  }

  52% {
    opacity: 0.95;
  }

  70%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100svh - 72px);
  padding: 60px 56px 46px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 88, 208, 0.08), rgba(14, 154, 154, 0.08)),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.hero-image-fv {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.hero-image-fv::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 2.5%;
  z-index: 1;
  width: 42%;
  height: 32%;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 242, 168, 0.78) 54%, rgba(255, 255, 255, 0) 62%, transparent 100%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-140%) skewX(-12deg);
  animation: fvGoldShine 4.8s ease-in-out 0.8s infinite;
}

.hero-image-fv picture,
.hero-image-fv img {
  width: 100%;
}

.hero-image-fv picture {
  display: block;
}

.hero-image-fv img {
  height: auto;
  max-height: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

body.motion-ready .hero-image-fv img {
  animation: fvSettle 0.9s ease both;
}

@keyframes fvSettle {
  from {
    opacity: 0;
    transform: translateY(10px) scale(1.015);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fvGoldShine {
  0%,
  36% {
    opacity: 0;
    transform: translateX(-140%) skewX(-12deg);
  }

  44% {
    opacity: 0.85;
  }

  58% {
    opacity: 0.05;
    transform: translateX(165%) skewX(-12deg);
  }

  100% {
    opacity: 0;
    transform: translateX(165%) skewX(-12deg);
  }
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: #30384a;
  font-size: 19px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(11, 88, 208, 0.28);
}

.button-secondary {
  color: var(--blue-dark);
  border: 1px solid #b6c7dc;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(217, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(217, 224, 234, 0.95);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.section {
  padding: 86px 56px;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.mobile-title {
  display: none;
}

.problem {
  background: var(--white);
}

.problem-grid,
.plain-grid,
.usecase-grid,
.metric-grid,
.simulation-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-grid article,
.usecase-grid article,
.metric-grid article,
.simulation-grid article,
.proof-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid article,
.usecase-grid article,
.metric-grid article,
.simulation-grid article,
.proof-grid article,
.plain-grid p,
.check-list li,
.steps-list article,
details {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

@media (hover: hover) {
  .problem-grid article:hover,
  .usecase-grid article:hover,
  .simulation-grid article:hover,
  .proof-grid article:hover,
  .plain-grid p:hover,
  .check-list li:hover,
  .steps-list article:hover,
  details:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 46px rgba(16, 22, 36, 0.12);
    border-color: rgba(11, 88, 208, 0.22);
  }
}

.problem-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.problem-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}

.shift {
  color: var(--white);
  background: linear-gradient(135deg, #061b40 0%, #0b58d0 58%, #0e9a9a 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.shift .eyebrow {
  color: #9de4ff;
}

.asset-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.asset-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 20px;
  font-weight: 800;
}

.shift .message-band {
  margin-top: 0;
}

.message-band {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 28px 34px;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.missing {
  background: var(--paper);
}

.plain-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plain-grid p {
  min-height: 132px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.solution {
  background: var(--white);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.body-copy {
  color: #30384a;
  font-size: 18px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
}

.steps {
  background: linear-gradient(135deg, #061b40, #0b58d0);
  color: var(--white);
}

.steps .eyebrow {
  color: #d8ad3a;
}

.steps-list {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.steps-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d8ad3a;
  color: #071b3b;
  font-weight: 900;
}

.steps-list h3 {
  margin-bottom: 4px;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.role-table {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.role-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  min-height: 70px;
  border-top: 1px solid var(--line);
}

.role-row:first-child {
  border-top: 0;
}

.role-row > * {
  display: flex;
  align-items: center;
  padding: 16px 20px;
}

.role-head {
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.role-row strong {
  color: var(--blue);
  font-style: normal;
}

.role-row em {
  color: var(--muted);
  font-style: normal;
}

.role-mobile {
  display: none;
}

.note {
  max-width: 1040px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

#model .note,
.price .note {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.usecase {
  background: var(--paper);
}

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

.usecase-grid article {
  min-height: 150px;
}

.usecase-grid h3 {
  color: var(--blue-dark);
}

.curriculum {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 34px;
  align-items: center;
  max-width: 1292px;
  margin: 0 auto;
}

.curriculum-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.curriculum-visual img {
  width: 100%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 9px 14px;
  border: 1px solid #bdd0e5;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.market {
  background: linear-gradient(135deg, #061b40, #0b58d0);
  color: var(--white);
}

.market .eyebrow {
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.2;
  font-weight: 900;
}

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

.metric-grid article {
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid span {
  color: #9de4ff;
  font-weight: 900;
}

.metric-grid strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.market .note {
  color: rgba(255, 255, 255, 0.72);
}

.simulation {
  background: var(--white);
}

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

.simulation-grid article {
  min-height: 210px;
  background: var(--paper);
}

.simulation-grid strong {
  display: block;
  margin: 14px 0 6px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.2;
}

.simulation-grid small {
  color: var(--muted);
  font-weight: 700;
}

.proof {
  background: var(--paper);
}

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

.proof-grid article {
  min-height: 170px;
}

.proof-grid h3 {
  color: var(--blue);
  font-size: 25px;
}

.price {
  background: var(--white);
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4f8fc);
  box-shadow: var(--shadow);
}

.price-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  border-top: 1px solid var(--line);
}

.price-list div:first-child {
  border-top: 0;
}

.price-list dt,
.price-list dd {
  margin: 0;
  padding: 16px;
  font-weight: 900;
}

.price-list dt {
  color: var(--muted);
  background: var(--paper);
}

.price-list dd {
  color: var(--blue-dark);
}

.price-list dd.campaign-price {
  color: var(--danger);
  font-size: 30px;
}

.price-list dd span {
  margin-right: 10px;
  color: var(--muted);
  text-decoration: line-through;
}

.campaign-band {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 18px 24px;
  border: 2px solid rgba(201, 41, 41, 0.22);
  border-radius: 8px;
  color: var(--danger);
  background: #fff4f2;
  text-align: center;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.25;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 700;
}

.contact {
  padding: 90px 56px;
  color: var(--white);
  background: linear-gradient(135deg, #061b40, #0b58d0);
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  color: #9de4ff;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 34px;
  text-align: left;
}

.demo-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.demo-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.form-wide {
  grid-column: auto;
}

.demo-form button {
  grid-column: auto;
  align-self: end;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.demo-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  background: #f8fbff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
  color: var(--muted);
  background: #f0f3f7;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 20px;
  }

  .header-nav {
    display: none;
  }

  .hero,
  .solution-layout,
  .split,
  .curriculum,
  .price-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 46px 20px;
  }

  .hero-image-fv {
    min-height: auto;
    padding: 0;
  }

  .hero-image-fv img {
    max-height: none;
  }

  .hero-visual {
    max-width: 760px;
  }

  .section,
  .contact {
    padding: 64px 20px;
  }

  .problem-grid,
  .asset-list,
  .plain-grid,
  .usecase-grid,
  .metric-grid,
  .simulation-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-form {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
    padding-bottom: 94px;
  }

  .site-header {
    min-height: 60px;
    padding: 0 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    max-height: 38px;
  }

  .brand-text {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.36;
  }

  h3 {
    font-size: 18px;
  }

  .section,
  .contact {
    padding: 54px 16px;
  }

  .contact {
    padding-bottom: 128px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero {
    padding: 0;
  }

  .hero-image-fv {
    width: 100%;
    min-height: auto;
    align-items: center;
  }

  .hero-image-fv picture,
  .hero-image-fv img {
    width: 100%;
  }

  .hero-image-fv img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-image-fv::after {
    top: 18%;
    left: 0;
    width: 58%;
    height: 28%;
  }

  .message-band {
    padding: 22px 20px;
    font-size: 25px;
    line-height: 1.42;
  }

  .hero-stats,
  .problem-grid,
  .asset-list,
  .plain-grid,
  .usecase-grid,
  .metric-grid,
  .simulation-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .usecase-grid article,
  .metric-grid article,
  .simulation-grid article,
  .proof-grid article,
  .plain-grid p {
    min-height: auto;
    padding: 20px;
  }

  .asset-list p {
    min-height: auto;
    padding: 18px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
  }

  #model .section-heading h2 {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: 25px;
    line-height: 1.5;
  }

  .role-table {
    display: none;
  }

  .role-mobile {
    display: grid;
    gap: 14px;
  }

  .role-mobile-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(16, 22, 36, 0.08);
  }

  .role-mobile-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 30px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .role-mobile-card-client span {
    color: var(--white);
    background: var(--blue-dark);
  }

  .role-mobile-card-company span {
    color: var(--blue-dark);
    background: linear-gradient(180deg, #ffe487 0%, #d8ad3a 100%);
  }

  .role-mobile-card h3 {
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.38;
  }

  .role-mobile-card p,
  .role-mobile-card li {
    color: #30384a;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.6;
  }

  .role-mobile-card p {
    margin-bottom: 0;
  }

  .role-mobile-card ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
  }

  .role-mobile-card li {
    position: relative;
    padding-left: 20px;
  }

  .role-mobile-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }

  #model .note,
  .price .note {
    font-size: 14px;
    line-height: 1.65;
  }

  .price-box {
    padding: 24px;
  }

  .price-list dd {
    font-size: 22px;
  }

  .price-list div {
    grid-template-columns: 1fr;
  }

  .campaign-band {
    padding: 18px 16px;
    font-size: 20px;
    line-height: 1.45;
  }

  .steps-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .demo-form {
    gap: 12px;
    padding: 18px;
  }

  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .site-footer {
    display: grid;
    padding: 24px 20px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    width: calc(100vw - 24px);
    min-height: 58px;
    padding: 0 24px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready .reveal,
  body.motion-ready .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
