:root {
  --ink: #101a2e;
  --ink-soft: #566178;
  --paper: #f5f7fb;
  --card: #ffffff;
  --line: #dfe5ef;
  --blue: #1d4ed8;
  --blue-deep: #153a9d;
  --blue-dark: #102a67;
  --blue-tint: #eaf0ff;
  --green: #167547;
  --green-bg: #e9f7ef;
  --amber: #a55b06;
  --amber-bg: #fff4df;
  --radius: 18px;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow-sm: 0 1px 2px rgba(16, 26, 46, .04), 0 8px 24px rgba(16, 26, 46, .06);
  --shadow-md: 0 24px 70px rgba(16, 42, 103, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 229, 239, .9);
  background: rgba(245, 247, 251, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 0 0 4px var(--blue-tint);
}
.logo-mark-small { width: 25px; height: 25px; border-radius: 7px; font-size: 14px; box-shadow: none; }
.nav-links { display: flex; align-items: center; gap: 29px; list-style: none; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn-primary, .nav-links .btn-primary:hover { color: #fff; }
.nav .nav-mobile-cta { display: none; }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--card);
  cursor: pointer;
}
.burger span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: 700 15px/1 var(--body);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid rgba(29, 78, 216, .35);
  outline-offset: 3px;
}
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 7px 18px rgba(29, 78, 216, .22); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 24px rgba(29, 78, 216, .28); }
.btn-ghost { border-color: var(--line); background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #b8c7e7; }
.btn-white { color: var(--blue-deep); background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .16); }
.btn-nav { padding: 11px 19px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 94px;
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 78, 216, .12), transparent 31%),
    linear-gradient(180deg, #f9fbff 0%, var(--paper) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(29, 78, 216, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(29, 78, 216, .025), 0 0 0 120px rgba(29, 78, 216, .018);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.eyebrow, .section-kicker, .pilot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 2px; border-radius: 2px; background: var(--blue); }
h1, h2, h3 { font-family: var(--display); }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.lead { max-width: 61ch; margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 22px; }
.hero-note { max-width: 62ch; color: var(--ink-soft); font-size: 13.5px; }

.app-mockup { position: relative; min-width: 0; padding: 16px 0 28px; }
.mockup-window { overflow: hidden; border: 1px solid #d7deea; border-radius: 20px; background: var(--card); box-shadow: var(--shadow-md); transform: rotate(1deg); }
.mockup-bar { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid var(--line); background: #fbfcfe; }
.mockup-brand { display: flex; align-items: center; gap: 8px; font: 700 14px var(--display); }
.mockup-margin { padding: 6px 9px; border-radius: 999px; background: var(--green-bg); color: var(--green); font-size: 10px; font-weight: 800; }
.mockup-body { padding: 25px; }
.mockup-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.mockup-label { color: var(--ink-soft); font: 500 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.mockup-heading h2 { margin: 3px 0 1px; font-size: 22px; line-height: 1.2; }
.mockup-heading p { color: var(--ink-soft); font-size: 13px; }
.mockup-total { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 17px; padding: 17px 18px; border-radius: 13px; background: var(--blue-dark); color: #fff; }
.mockup-total span { color: rgba(255, 255, 255, .72); font-size: 12px; }
.mockup-total strong { font: 700 23px var(--display); white-space: nowrap; }
.expense-list { border: 1px solid var(--line); border-radius: 14px; }
.expense-row { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 11px; padding: 13px; }
.expense-row + .expense-row { border-top: 1px solid var(--line); }
.expense-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-tint); color: var(--blue); font-size: 11px; font-weight: 800; }
.expense-row div { min-width: 0; }
.expense-row div strong, .expense-row div span { display: block; }
.expense-row div strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.expense-row div span { color: var(--ink-soft); font-size: 11px; }
.expense-price { font-size: 12px; white-space: nowrap; }
.status { display: inline-flex; width: max-content; align-items: center; border-radius: 999px; font-size: 10px; font-weight: 700; line-height: 1; white-space: nowrap; }
.expense-row .status { grid-column: 2 / -1; margin-top: -6px; }
.status-ready { padding: 7px 10px; background: var(--green-bg); color: var(--green); }
.status-waiting { padding: 5px 8px; background: var(--amber-bg); color: var(--amber); }
.status-done { padding: 5px 8px; background: var(--green-bg); color: var(--green); }
.mockup-float {
  position: absolute;
  right: -22px;
  bottom: 0;
  min-width: 150px;
  padding: 14px 17px;
  border: 1px solid #d8e1f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 42, 103, .15);
}
.mockup-float span, .mockup-float strong { display: block; }
.mockup-float span { color: var(--ink-soft); font-size: 11px; }
.mockup-float strong { font: 700 17px var(--display); }

section { padding: 92px 0; }
.sec-head { max-width: 760px; margin-bottom: 48px; }
.sec-head.wide { max-width: 930px; }
h2 { margin-bottom: 16px; font-size: clamp(31px, 4vw, 44px); font-weight: 750; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.sec-head p, .benefits-copy p, .numbers-copy > p, .faq-heading p { color: var(--ink-soft); font-size: 16.5px; }

.problem { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.problem-card { min-width: 0; padding: 25px 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.problem-card-loss { border-color: #efd5ad; background: #fffaf1; }
.card-number { display: block; margin-bottom: 30px; color: var(--amber); font: 500 12px var(--mono); }
.problem-card h3, .audience-card h3 { margin-bottom: 9px; font-size: 18px; line-height: 1.25; }
.problem-card p, .audience-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.fit-section { background: var(--blue-tint); }
.fit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; }
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 19px 20px;
  border: 1px solid #cddaf5;
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 600;
}
.fit-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 52%; right: -19px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--blue); font-size: 18px; }
.step-no { display: block; margin-bottom: 18px; color: var(--blue); font: 500 11px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.step-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 13px; background: var(--blue-tint); color: var(--blue); }
.step-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { margin-bottom: 9px; font-size: 21px; line-height: 1.2; }
.step p { color: var(--ink-soft); font-size: 14.5px; }
.process-summary {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.audience { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #edf2fb; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.audience-card { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; align-items: start; padding: 25px; border: 1px solid #d9e2f2; border-radius: var(--radius); background: rgba(255, 255, 255, .78); }
.audience-card h3, .audience-card p { grid-column: 2; }
.audience-icon { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--blue); color: #fff; font: 500 12px var(--mono); }

.benefits { background: var(--blue-dark); color: #fff; }
.benefits-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.benefits .section-kicker { color: #9cb8ff; }
.benefits-copy p { color: rgba(255, 255, 255, .7); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; padding: 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; background: rgba(255, 255, 255, .06); font-size: 14px; font-weight: 600; line-height: 1.45; }
.benefit-list span { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #dff6e9; color: var(--green); font-weight: 800; }

.comparison { background: var(--card); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; }
.compare-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); }
.compare-muted { background: var(--paper); }
.compare-jopi { border-color: #b7c9f5; background: var(--blue-tint); box-shadow: var(--shadow-sm); }
.compare-label { display: inline-block; margin-bottom: 24px; padding: 6px 10px; border-radius: 7px; background: #e9edf3; color: var(--ink-soft); font: 500 11px var(--mono); text-transform: uppercase; }
.compare-jopi .compare-label { background: var(--blue); color: #fff; }
.compare-card h3 { margin-bottom: 18px; font-size: 23px; }
.compare-card ul { list-style: none; }
.compare-card li { position: relative; padding: 9px 0 9px 27px; border-top: 1px solid rgba(86, 97, 120, .14); color: var(--ink-soft); font-size: 14.5px; }
.compare-card li::before { content: "✓"; position: absolute; left: 2px; color: var(--blue); font-weight: 800; }

.not-fit { border-top: 1px solid var(--line); background: #f9f7f4; }
.not-fit-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.not-fit-copy p { color: var(--ink-soft); }
.not-fit-list { display: grid; gap: 10px; list-style: none; }
.not-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid #e4ded5;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 14px;
}
.not-fit-list span { color: #a44b3f; font-size: 20px; font-weight: 700; line-height: 1; }
.not-fit-summary { margin-top: 18px; padding-left: 17px; border-left: 3px solid var(--blue); font-size: 14px; font-weight: 700; }

.numbers { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbers-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.numbers-microcopy { margin-top: 17px; font-size: 13.5px !important; }
.honest-note { margin-top: 22px; padding-left: 17px; border-left: 3px solid var(--blue); font-size: 14px !important; font-weight: 600; }
.calculation { overflow: hidden; border: 1px solid #cdd9ef; border-radius: 22px; background: #fff; box-shadow: var(--shadow-md); }
.calculation-parts { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; padding: 28px 23px; }
.calculation-parts span { color: var(--ink-soft); font-size: 11px; text-align: center; }
.calculation-parts strong { display: block; color: var(--ink); font: 750 22px var(--display); white-space: nowrap; }
.calculation-parts b { color: #9aa6ba; font-size: 20px; }
.calculation-result { padding: 23px; background: var(--blue); color: #fff; text-align: center; }
.calculation-result span { margin-right: 5px; color: #a9c0ff; font-size: 24px; }
.calculation-result strong { font: 800 clamp(36px, 5vw, 54px) var(--display); letter-spacing: -.03em; }
.calculation-result small { display: block; margin-top: -4px; color: rgba(255, 255, 255, .7); }

.pilot { background: var(--blue-dark); }
.pilot-box { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; color: #fff; }
.pilot-kicker { color: #9cb8ff; }
.pilot-copy > p { max-width: 58ch; color: rgba(255, 255, 255, .72); }
.price-card { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; background: rgba(255, 255, 255, .06); }
.price-card div { padding: 22px; }
.price-card div + div { border-left: 1px solid rgba(255, 255, 255, .16); }
.price-card span, .price-card small, .price-card strong { display: block; }
.price-card span { margin-bottom: 5px; color: #a9c0ff; font-size: 12px; font-weight: 700; }
.price-card strong { font: 800 31px var(--display); }
.price-card small { color: rgba(255, 255, 255, .65); font-size: 11px; }
.pilot-note { font-size: 12.5px; font-weight: 600; }
.pilot-notes { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 12px; list-style: none; }
.pilot-notes li { color: rgba(255, 255, 255, .82); font-size: 12.5px; font-weight: 600; }
.pilot-notes li::before { content: "✓"; margin-right: 6px; color: #8ee0b2; }
.pilot-form-wrap { padding: 31px; border-radius: 20px; background: #fff; color: var(--ink); box-shadow: 0 30px 70px rgba(0, 0, 0, .24); }
.pilot-form-wrap h3 { margin-bottom: 5px; font-size: 25px; }
.pilot-form-wrap > p { margin-bottom: 22px; color: var(--ink-soft); font-size: 13.5px; }
.lead-form label { display: block; margin-bottom: 13px; }
.lead-form label > span:first-child { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 700; }
.lead-form input, .lead-form select { width: 100%; min-height: 47px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font: 14px var(--body); }
.lead-form select { cursor: pointer; }
.lead-form input::placeholder { color: #9ba4b5; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--blue); }
.field-error { display: block; min-height: 14px; margin-top: 3px; color: #b42318; font-size: 11px; font-weight: 600; }
.validation-summary { margin-bottom: 12px; color: #b42318; font-size: 12px; font-weight: 600; }
.validation-summary ul { list-style: none; }
.form-submit { width: 100%; margin-top: 2px; }
.form-note { margin-top: 11px; color: var(--ink-soft); font-size: 11.5px; text-align: center; }
.form-message { margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.form-message-success { border: 1px solid #bee4cc; background: var(--green-bg); color: var(--green); }

.faq { background: var(--card); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 22px 42px 22px 0; font-family: var(--display); font-size: 18px; font-weight: 700; line-height: 1.35; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 20px; right: 5px; color: var(--blue); font: 500 25px/1 var(--body); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 68ch; padding: 0 42px 22px 0; color: var(--ink-soft); font-size: 14.5px; }

.final-cta { padding-top: 30px; background: var(--card); }
.final-cta-box { position: relative; overflow: hidden; padding: 70px 40px; border-radius: 24px; background: linear-gradient(135deg, #12337f, #1d4ed8); color: #fff; text-align: center; box-shadow: var(--shadow-md); }
.final-cta-box::before { content: ""; position: absolute; top: -180px; left: 50%; width: 650px; height: 380px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 65%); }
.final-cta-box > * { position: relative; }
.section-kicker-light { color: #b9ccff; }
.final-cta-box h2 { max-width: 780px; margin: 0 auto 16px; }
.final-cta-box p { max-width: 650px; margin: 0 auto 28px; color: rgba(255, 255, 255, .78); }
.final-cta-box small { display: block; margin-top: 17px; color: rgba(255, 255, 255, .68); font-size: 12px; }

footer { padding: 35px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12.5px; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-logo { color: var(--ink); font-size: 18px; }
.footer-logo .logo-mark { width: 25px; height: 25px; border-radius: 7px; font-size: 13px; box-shadow: none; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .faq-item summary::after { transition: none; }
}

@media (max-width: 1000px) {
  .hero { padding-top: 78px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 750px; }
  .app-mockup { width: min(620px, 94%); margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid, .numbers-grid, .pilot-box, .not-fit-grid { grid-template-columns: 1fr; gap: 45px; }
  .benefits-copy { max-width: 700px; }
  .calculation { max-width: 620px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-heading { position: static; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 34px, 1160px); }
  .nav { height: 64px; }
  .nav .nav-mobile-cta { display: inline-flex; padding: 10px 13px; font-size: 12.5px; }
  .burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 14px 17px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 8px; }
  .nav-links .btn { display: flex; margin-top: 5px; }
  section { padding: 68px 0; }
  .hero { padding: 60px 0 64px; }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  h2 { font-size: clamp(29px, 9vw, 38px); }
  .lead { font-size: 16.5px; }
  .mockup-float { right: -6px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -19px; transform: translateX(50%); }
  .audience-grid, .compare-grid, .fit-list { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-cta { display: grid; }
  .hero-cta .btn { width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .mockup-window { transform: none; }
  .mockup-body { padding: 18px 14px; }
  .mockup-heading { display: block; }
  .mockup-heading .status { margin-top: 10px; }
  .mockup-total { padding: 14px; }
  .mockup-total strong { font-size: 20px; }
  .expense-row { grid-template-columns: 30px minmax(0, 1fr) auto; gap: 8px; padding: 11px 9px; }
  .expense-icon { width: 29px; height: 29px; }
  .expense-price { font-size: 11px; }
  .mockup-float { position: relative; right: auto; bottom: auto; width: 145px; margin: -8px 12px 0 auto; }
  .audience-card { grid-template-columns: 42px 1fr; padding: 20px 17px; }
  .audience-icon { width: 42px; height: 42px; }
  .price-card { grid-template-columns: 1fr; }
  .price-card div + div { border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; }
  .pilot-form-wrap { padding: 23px 18px; }
  .calculation-parts { grid-template-columns: 1fr; gap: 4px; padding: 22px; }
  .calculation-parts b { line-height: 1; }
  .calculation-result strong { font-size: 42px; }
  .final-cta-box { padding: 52px 20px; }
}
