:root {
  --blue: #2563eb;
  --deep-blue: #172554;
  --green: #22c55e;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text: #334155;
  --muted: #64748b;
  --line: #dbe5f2;
  --soft-blue: #eff6ff;
  --soft-green: #ecfdf5;
  --warning: #f97316;
  --shadow: 0 24px 70px rgba(23, 37, 84, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 242, 0.72);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 37, 84, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  width: 214px;
  flex: 0 0 auto;
}

.brand img {
  width: 214px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: var(--deep-blue);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 12px 28px rgba(23, 37, 84, 0.08);
}

.btn-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--deep-blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 78%),
    var(--light-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  min-width: 0;
}

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

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

h1 {
  margin-bottom: 22px;
  color: var(--deep-blue);
  font-size: 3.5rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep-blue);
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-size: 1.06rem;
  line-height: 1.28;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--text);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  color: #166534;
  background: var(--soft-green);
  font-size: 0.88rem;
  font-weight: 700;
}

.dashboard-mockup {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(219, 229, 242, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-mockup::before {
  content: "";
  position: absolute;
  inset: -18px -16px auto auto;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
  z-index: -1;
}

.mockup-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mockup-topbar p,
.metric-panel span,
.alert-panel span,
.panel-title span,
.price-box span {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mockup-topbar strong {
  display: block;
  margin-top: 4px;
  color: var(--deep-blue);
  font-size: 1.05rem;
}

.live-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #166534;
  background: var(--soft-green);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.metric-panel {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.metric-panel.satisfaction {
  background: linear-gradient(135deg, var(--deep-blue), var(--blue));
}

.metric-panel.satisfaction span,
.metric-panel.satisfaction strong,
.metric-panel.satisfaction p {
  color: var(--white);
}

.metric-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--deep-blue);
  font-size: 2.15rem;
  line-height: 1;
}

.metric-panel p {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.alert-panel,
.chart-panel,
.reviews-panel {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.alert-panel {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.24);
}

.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--warning);
  font-weight: 900;
}

.alert-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--deep-blue);
  line-height: 1.28;
}

.alert-panel p {
  margin: 4px 0 0;
  font-size: 0.88rem;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.status.attention {
  color: #9a3412;
  background: #ffedd5;
}

.status.resolved {
  color: #166534;
  background: #dcfce7;
}

.status.new {
  color: #1d4ed8;
  background: #dbeafe;
}

.chart-panel,
.reviews-panel {
  padding: 16px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-title strong {
  color: var(--deep-blue);
  font-size: 0.88rem;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  height: 110px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--light-bg);
}

.chart-bars span {
  display: block;
  min-height: 18px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.review-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.review-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.review-row:last-child {
  padding-bottom: 0;
}

.score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.score.good {
  background: var(--green);
}

.score.neutral {
  background: var(--blue);
}

.score.bad {
  background: var(--warning);
}

.review-row strong {
  color: var(--deep-blue);
  font-size: 0.92rem;
  line-height: 1.24;
}

.review-row p {
  margin: 3px 0 0;
  font-size: 0.82rem;
}

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

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.info-card,
.feature-card,
.solution-grid article,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card {
  min-height: 150px;
  padding: 22px;
}

.info-card h3 {
  margin-bottom: 0;
}

.card-marker {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--blue);
}

.key-message {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: var(--deep-blue);
  background: var(--soft-blue);
  font-size: 1.08rem;
  font-weight: 800;
}

.key-message.compact {
  margin-top: 28px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.split-layout.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.solution-grid article {
  min-height: 210px;
  padding: 24px;
}

.solution-grid p,
.feature-card p,
.benefit-list p,
.step p {
  margin-bottom: 0;
}

.icon-pulse {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.icon-pulse::before {
  content: "";
  position: absolute;
  inset: 13px 8px;
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  transform: skewX(-25deg);
}

.icon-pulse::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 11px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.how {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.step {
  position: relative;
  min-height: 232px;
  padding: 24px;
}

.step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.audience {
  background: var(--deep-blue);
}

.audience .eyebrow {
  color: #93c5fd;
}

.audience h2,
.audience p {
  color: var(--white);
}

.audience p {
  opacity: 0.84;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(191, 219, 254, 0.24);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.audience-note {
  width: 100%;
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(34, 197, 94, 0.1);
  font-weight: 750;
}

.feature-card {
  min-height: 226px;
  padding: 26px;
}

.feature-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon.form::before {
  inset: 10px 12px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.feature-icon.form::after {
  left: 16px;
  top: 17px;
  width: 12px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 7px 0 var(--green);
}

.feature-icon.panel::before {
  left: 10px;
  top: 11px;
  width: 24px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.feature-icon.panel::after {
  left: 15px;
  bottom: 10px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.feature-icon.alert::before {
  left: 11px;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--warning);
}

.feature-icon.alert::after {
  left: 21px;
  top: 16px;
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 15px 0 -1px var(--white);
}

.feature-icon.question::before {
  left: 13px;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.feature-icon.question::after {
  left: 21px;
  top: 16px;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 16px 0 -1px var(--green);
}

.feature-icon.backup::before {
  left: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  border-right-color: transparent;
}

.feature-icon.backup::after {
  right: 9px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: rotate(18deg);
}

.feature-icon.export::before {
  left: 12px;
  bottom: 11px;
  width: 20px;
  height: 13px;
  border: 2px solid var(--blue);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.feature-icon.export::after {
  left: 18px;
  top: 10px;
  width: 9px;
  height: 16px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
}

.feature-icon.report::before {
  left: 11px;
  bottom: 10px;
  width: 5px;
  height: 13px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 9px -7px 0 var(--green), 18px -13px 0 var(--blue);
}

.feature-icon.report::after {
  left: 10px;
  bottom: 8px;
  width: 25px;
  height: 2px;
  background: var(--deep-blue);
}

.feature-icon.brandmark::before {
  left: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--blue);
}

.feature-icon.brandmark::after {
  left: 17px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
  box-shadow: 7px -10px 0 -4px var(--green);
}

.benefits {
  background: var(--light-bg);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-list article > span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--soft-green);
}

.benefit-list article > span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

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

.mvp-band {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.mvp-band h2 {
  margin-bottom: 0;
}

.mvp-copy p:last-child {
  margin-bottom: 0;
}

.plans {
  background: var(--light-bg);
}

.plan-panel {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 44px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-box {
  padding: 28px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: var(--radius);
  background: var(--soft-green);
}

.price-box strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--deep-blue);
  font-size: 2.45rem;
  line-height: 1;
}

.price-box p {
  margin-bottom: 10px;
  color: var(--text);
}

.price-box small {
  display: block;
  margin-bottom: 22px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 750;
}

.price-box .btn {
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  color: var(--deep-blue);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.final-cta {
  color: var(--white);
  background: var(--deep-blue);
}

.final-cta-inner {
  max-width: 860px;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  margin: 0 auto 28px;
  max-width: 700px;
  opacity: 0.84;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 36px 0;
  background: #0f172a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner img {
  width: 320px;
}

.footer-inner p {
  margin: 0;
  color: #cbd5e1;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .mobile-nav a:not(.btn) {
    padding: 12px;
    border-radius: var(--radius);
    color: var(--deep-blue);
    font-weight: 750;
  }

  .mobile-nav a:not(.btn):hover {
    background: var(--soft-blue);
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .plan-panel,
  .faq-grid,
  .mvp-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .cards-grid.four,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-panel {
    padding: 34px;
  }

  .price-box {
    max-width: 460px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand,
  .brand img {
    width: 206px;
  }

  .footer-inner img {
    width: 300px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .btn-large {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
  }

  .dashboard-mockup {
    padding: 16px;
  }

  .mockup-grid,
  .cards-grid.four,
  .cards-grid.three,
  .solution-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .mockup-topbar,
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .alert-panel {
    grid-template-columns: 42px 1fr;
  }

  .alert-panel .status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .review-row {
    grid-template-columns: 36px 1fr;
  }

  .review-row .status {
    grid-column: 2;
    justify-self: start;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }

  .info-card,
  .feature-card,
  .solution-grid article,
  .step {
    min-height: auto;
  }

  .mvp-band,
  .plan-panel {
    padding: 24px;
  }

  .tag-cloud span {
    width: 100%;
    border-radius: var(--radius);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand,
  .brand img {
    width: 196px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .metric-panel strong,
  .price-box strong {
    font-size: 2rem;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }
}
