/* Call — landing page */

.wrap {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

/* ---------------- header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 36, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
}

.site-header .bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.scrolled .logo {
  color: var(--ink);
}

.logo .mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
  flex: none;
}

.logo .mark svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.nav {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.scrolled .nav a {
  color: var(--muted);
}

.scrolled .nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #6366f1 55%, var(--accent) 130%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.36);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.44);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.scrolled .btn-ghost {
  color: var(--ink-2);
  border-color: var(--line-strong);
}

.scrolled .btn-ghost:hover {
  background: var(--surface);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15.5px;
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-700);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: #fff;
}

.scrolled .nav-toggle {
  color: var(--ink);
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(6, 182, 212, 0.28), transparent 62%),
    radial-gradient(900px 480px at 12% 8%, rgba(99, 102, 241, 0.38), transparent 60%),
    linear-gradient(168deg, #070b24 0%, #0d1440 52%, #131a4a 100%);
  color: #fff;
  padding: 78px 0 108px;
  margin-top: -66px;
  padding-top: 144px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.05); }
}

.hero h1 {
  font-size: clamp(34px, 5.1vw, 58px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-weight: 800;
}

.hero h1 .grad {
  background: linear-gradient(100deg, #a5b4fc 0%, #67e8f9 60%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: clamp(15.5px, 1.65vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 15px;
  height: 15px;
  fill: #5eead4;
  flex: none;
}

/* live call card */

.call-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  padding: 8px;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.call-card .inner {
  background: rgba(9, 13, 40, 0.72);
  border-radius: 22px;
  padding: 20px;
}

.call-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.call-head .avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, #6366f1, #06b6d4);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

.call-head .meta {
  min-width: 0;
}

.call-head .who {
  font-weight: 600;
  font-size: 14.5px;
}

.call-head .sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.live-badge {
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.32);
  flex: none;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f87171;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 232px;
  font-size: 13.5px;
  line-height: 1.7;
}

.line {
  display: flex;
  gap: 10px;
  animation: rise 0.45s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.line .tag {
  flex: none;
  width: 34px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.line.ai .tag {
  background: rgba(99, 102, 241, 0.28);
  color: #c7d2fe;
}

.line.caller .tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
}

.line .text {
  color: rgba(255, 255, 255, 0.88);
}

.line.caller .text {
  color: rgba(255, 255, 255, 0.62);
}

.caret::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #67e8f9;
  margin-inline-start: 3px;
  vertical-align: -2px;
  animation: blink 1s step-end infinite;
}

.call-result {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.call-result.show {
  opacity: 1;
  transform: none;
}

.result-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.result-row .k {
  color: rgba(255, 255, 255, 0.5);
  width: 5.4em;
  flex: none;
}

.result-row .v {
  color: #fff;
  font-weight: 500;
}

.chip-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.34);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 600;
}

/* ---------------- generic section ---------------- */

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}

/* ---------------- problems ---------------- */

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

.problem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: attr(data-n);
  position: absolute;
  top: -14px;
  right: 8px;
  font-size: 82px;
  font-weight: 800;
  color: var(--surface-2);
  font-family: var(--font-num);
  line-height: 1;
  pointer-events: none;
}

.problem h3 {
  font-size: 17.5px;
  margin: 0 0 10px;
  position: relative;
  letter-spacing: -0.01em;
}

.problem p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  position: relative;
}

.problem .stat {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--bad);
  font-weight: 700;
  position: relative;
}

/* ---------------- features ---------------- */

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

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature .ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 17px;
  margin: 0 0 9px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------------- steps ---------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 46px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-num);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.32);
}

.step::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 42px;
  right: -18px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 6px, transparent 6px 12px);
}

.step:last-child::after {
  display: none;
}

.step h3 {
  font-size: 16.5px;
  margin: 0 0 8px;
}

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

.step .when {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-soft);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ---------------- industries ---------------- */

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

.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.industry .emoji {
  font-size: 26px;
  line-height: 1;
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 13px;
}

.industry h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

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

/* ---------------- metrics band ---------------- */

.metrics {
  background:
    radial-gradient(760px 380px at 84% 0%, rgba(6, 182, 212, 0.26), transparent 60%),
    linear-gradient(140deg, #0d1440, #1b2360);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 52px 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.metric .n {
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 800;
  font-family: var(--font-num);
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(120deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric .l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
}

.metrics-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  margin-top: 6px;
}

/* ---------------- pricing ---------------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.plan.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.plan h3 {
  font-size: 17px;
  margin: 0 0 4px;
}

.plan .who {
  color: var(--faint);
  font-size: 13px;
  margin: 0 0 18px;
}

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-num);
  margin-bottom: 4px;
}

.plan .price .yen {
  font-size: 19px;
  font-weight: 700;
}

.plan .price .amt {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan .price .per {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font);
}

.plan .tax {
  font-size: 12px;
  color: var(--faint);
  margin: 0 0 20px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.plan li {
  display: flex;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-2);
}

.plan li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 5px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan .btn {
  width: 100%;
}

.price-note {
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  margin-top: 28px;
}

/* ---------------- faq ---------------- */

.faq {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.faq details[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--faint);
  border-bottom: 2px solid var(--faint);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 30px;
}

.faq .body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------------- cta ---------------- */

.cta {
  background:
    radial-gradient(700px 340px at 20% 10%, rgba(99, 102, 241, 0.4), transparent 60%),
    linear-gradient(140deg, #070b24, #16205a);
  color: #fff;
  text-align: center;
  padding: 84px 0;
}

.cta h2 {
  font-size: clamp(25px, 3.4vw, 38px);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 30em;
  margin: 0 auto 30px;
}

.cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------------- footer ---------------- */

.site-footer {
  background: #050818;
  color: rgba(255, 255, 255, 0.6);
  padding: 52px 0 34px;
  font-size: 14px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-grid h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.foot-grid a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-grid a:hover {
  color: #fff;
}

.foot-about p {
  margin: 14px 0 0;
  max-width: 26em;
  font-size: 13.5px;
  line-height: 1.8;
}

.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

.demo-note {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-top: 26px;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------- reveal ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .line,
  .eyebrow .dot,
  .live-badge i {
    animation: none;
  }
}

/* ---------------- responsive ---------------- */

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .problem-grid,
  .feature-grid,
  .industry-grid,
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .step:nth-child(2)::after {
    display: none;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 40px 30px;
  }
  .plan.featured {
    transform: none;
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav,
  .header-cta .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: inline-grid;
    margin-inline-start: auto;
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
    box-shadow: var(--shadow);
  }
  .nav.open a {
    color: var(--ink);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .header-cta {
    margin-inline-start: 0;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 76px;
  }
  .section {
    padding: 66px 0;
  }
  .problem-grid,
  .feature-grid,
  .industry-grid,
  .plans,
  .steps {
    grid-template-columns: 1fr;
  }
  .step::after {
    display: none;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 34px 24px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
  }
}
