:root {
  --ink: #172033;
  --muted: #5d697c;
  --subtle: #7b8494;
  --line: #dce3ed;
  --paper: #ffffff;
  --mist: #f6f8fb;
  --blue: #2563d8;
  --blue-dark: #1647a6;
  --mint: #30b58f;
  --mint-soft: #e7f6f1;
  --coral: #f4775e;
  --amber-soft: #fff5df;
  --shadow: 0 24px 70px rgba(41, 64, 96, 0.14);
  --radius: 8px;
  --header-height: 72px;
  font-family:
    Inter,
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "palt";
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(220, 227, 237, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  width: auto;
  height: 18px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344054;
  font-size: 14px;
  font-weight: 640;
}

.site-nav a,
.text-link {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 680;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 216, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 216, 0.28);
}

.button-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  border-color: rgba(37, 99, 216, 0.36);
}

.button-outline:hover {
  background: #fff;
  border-color: rgba(37, 99, 216, 0.58);
  box-shadow: 0 8px 20px rgba(37, 99, 216, 0.1);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-color: rgba(143, 157, 179, 0.46);
}

.button-secondary:hover {
  border-color: rgba(37, 99, 216, 0.46);
  box-shadow: 0 10px 26px rgba(41, 64, 96, 0.1);
}

.button-large {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  place-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f7faff;
  padding-top: var(--header-height);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 30%, rgba(255, 255, 255, 0.54) 55%, rgba(247, 250, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%, #ffffff 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  width: min(720px, 100%);
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 820;
}

.hero-lead {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: #364154;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.9;
}

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

.hero-trial-button {
  min-height: 62px;
  padding: 18px 30px;
  font-size: 17px;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #42506a;
  font-size: 13px;
  font-weight: 680;
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(207, 216, 229, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-flow span:not(:last-child)::after {
  content: "";
  width: 16px;
  height: 1px;
  margin-left: 2px;
  background: var(--mint);
}

.section,
.trust-band,
.final-cta {
  position: relative;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
}

.trust-grid p {
  margin: 0;
  color: #4a5568;
  font-weight: 680;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-items span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: #4a5568;
  font-size: 13px;
  font-weight: 720;
}

.section {
  padding: 104px 0;
}

.problem {
  background:
    radial-gradient(circle at 82% 0%, rgba(48, 181, 143, 0.12), transparent 34%),
    #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.solution-list {
  display: grid;
  gap: 18px;
}

.solution-list article {
  position: relative;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(41, 64, 96, 0.06);
}

.solution-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--mint);
  font-weight: 840;
}

.solution-list p,
.section-heading p,
.feature-card p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.solution-list p {
  margin: 12px 0 0;
}

.features {
  background: var(--mist);
}

.features .section-heading {
  width: 100%;
  text-align: center;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  font-size: 17px;
}

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card {
  min-height: 280px;
  padding: 28px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--mint-soft);
  color: #08745c;
  font-weight: 840;
}

.feature-card:nth-child(2) .feature-icon {
  background: #eaf1ff;
  color: var(--blue-dark);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--amber-soft);
  color: #8a5a00;
}

.feature-card p {
  margin: 14px 0 0;
}

.free-trial {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.free-trial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.free-trial-steps li {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 216, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(41, 64, 96, 0.06);
}

.free-trial-steps li:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 820;
}

.step-heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 820;
}

.free-trial-steps h3 {
  margin: 0;
  font-size: 18px;
}

.free-trial-steps p {
  margin: 0;
  color: var(--muted);
}

.code-box {
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(37, 99, 216, 0.18);
  border-radius: var(--radius);
  background: #eef5ff;
  color: var(--blue-dark);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-box {
  cursor: pointer;
  appearance: none;
  text-align: left;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.copy-box:hover,
.copy-box:focus-visible {
  border-color: rgba(37, 99, 216, 0.44);
  background: #eaf1ff;
  box-shadow: 0 8px 22px rgba(37, 99, 216, 0.1);
}

.copy-box span {
  display: block;
}

.copy-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family:
    Inter,
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    system-ui,
    sans-serif;
  font-size: 11px;
  font-weight: 760;
  text-align: right;
}

.copy-box.is-copied small {
  color: var(--mint);
}

.free-trial-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.free-trial-note {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 680;
  text-align: center;
}

.software-setup {
  width: 100%;
  margin-top: 24px;
  padding: 28px;
  background: #fff;
}

.software-setup h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.software-setup-list {
  border-top: 1px solid var(--line);
}

.software-setup-list details {
  scroll-margin-top: calc(var(--header-height) + 20px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.software-setup-list summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 4px;
}

.software-setup-list summary::after {
  margin-left: auto;
}

.software-setup-summary-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.software-setup-content {
  min-height: 32px;
  padding: 0 4px 20px;
  color: var(--muted);
}

.software-setup-content p {
  margin: 0 0 14px;
}

.software-setup-content ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.6em;
}

.software-setup-content li {
  padding-left: 4px;
  margin-bottom: 8px;
}

.software-setup-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 14px;
}

.software-setup-table th,
.software-setup-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.software-setup-table th {
  width: min(42%, 240px);
  background: var(--mist);
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.software-setup-table td {
  overflow-wrap: anywhere;
}

.software-setup-image-trigger {
  display: block;
  width: 30%;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.software-setup-image {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(41, 64, 96, 0.14);
}

.software-setup-image-trigger:focus-visible {
  outline: 3px solid rgba(37, 99, 216, 0.55);
  outline-offset: 3px;
}

.image-modal {
  width: min(92vw, 1200px);
  max-width: none;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.image-modal::backdrop {
  background: rgba(23, 32, 51, 0.76);
}

.image-modal-content {
  position: relative;
  padding: 48px 20px 20px;
  background: #fff;
}

.image-modal img {
  width: 100%;
  max-height: calc(92vh - 112px);
  object-fit: contain;
}

.image-modal p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.pricing {
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.72), rgba(246, 248, 251, 0.96)),
    #f7f9fc;
}

.pricing-alert {
  width: min(calc(100% - 40px), 720px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(37, 99, 216, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(41, 64, 96, 0.05);
  text-align: center;
}

.pricing-alert strong {
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.25;
}

.pricing-alert p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(36px, 6vw, 72px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.legal-page {
  padding-top: var(--header-height);
  background: var(--mist);
}

.legal-hero {
  padding-bottom: 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.legal-hero h1 {
  width: min(840px, 100%);
  font-size: clamp(34px, 5vw, 56px);
}

.legal-lead {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-updated {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 720;
}

.legal-section {
  padding-top: 0;
}

.legal-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(41, 64, 96, 0.06);
}

.legal-card h2 {
  margin-bottom: 24px;
}

.legal-list {
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

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

.legal-list div:last-child {
  padding-bottom: 0;
}

.legal-list dt {
  color: var(--ink);
  font-weight: 820;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
}

.legal-list a {
  color: var(--blue-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-article {
  display: grid;
  gap: 30px;
}

.terms-article h2 {
  margin-bottom: 0;
}

.terms-article section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.terms-article h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

.terms-article p {
  margin: 10px 0 0;
  color: var(--muted);
}

.terms-article a {
  color: var(--blue-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #243047;
  font-weight: 780;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(244, 119, 94, 0.14), transparent 26%),
    linear-gradient(135deg, #102344 0%, #1f5f74 58%, #0f6b58 100%);
  color: #fff;
}

.final-cta .eyebrow {
  color: #b7f1df;
}

.final-cta h2 {
  width: min(680px, 100%);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.final-cta .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  padding: 44px 0;
  background: #0e1728;
  color: #d7deeb;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 12px 0 0;
  color: #9ea8bb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 680;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  margin-top: 36px;
  padding-top: 18px;
  color: #7f8ba1;
  letter-spacing: 0.03em;
  text-align: center;
}

.footer-copyright small {
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--mist);
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.38) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%);
  }

  .trust-grid,
  .two-column,
  .faq-layout,
  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-items,
  .final-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .free-trial-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-trial-steps li {
    min-height: 240px;
  }

  .pricing-alert {
    width: min(calc(100% - 28px), 620px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.64) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #ffffff 100%);
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 54px 0 90px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .desktop-break {
    display: none;
  }

  .hero-lead {
    font-size: 16px;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .hero-flow {
    display: grid;
    gap: 8px;
  }

  .hero-flow span {
    justify-content: center;
    border-radius: 8px;
  }

  .hero-flow span:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .solution-list article,
  .free-trial-steps li,
  .feature-card,
  .legal-card {
    padding: 22px;
  }

  .free-trial-steps {
    grid-template-columns: 1fr;
  }

  .free-trial-steps li {
    min-height: auto;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta {
    padding: 58px 0;
  }
}

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