:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #173658;
  --text-strong: #0c2847;
  --muted: #5f7690;
  --line: rgba(15, 53, 92, 0.12);
  --primary: #0f4e97;
  --primary-dark: #0a3566;
  --accent: #f29a2e;
  --accent-soft: #ffe2bf;
  --success: #ffcc7a;
  --shadow-soft: 0 18px 46px rgba(15, 53, 92, 0.12);
  --shadow-card: 0 10px 28px rgba(18, 47, 87, 0.1);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1160px;
  --page-min-height-desktop: 1431px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(15, 53, 92, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 53, 92, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  line-height: 1.55;
}

main {
  flex: 1 0 auto;
}

@media (min-width: 1100px) {
  body {
    min-height: var(--page-min-height-desktop);
  }
}

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

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

p,
ul {
  margin-top: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 53, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: fit-content;
}

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

.brand-name {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.brand-watch {
  color: var(--primary);
}

.brand-core {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 78, 151, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(15, 78, 151, 0.06);
  transform: translateY(-1px);
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

.nav-link {
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(15, 78, 151, 0.08);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: rgba(15, 78, 151, 0.12);
  color: var(--primary-dark);
}

.nav-link.is-active:hover,
.nav-link.is-active:focus-visible {
  transform: none;
  background: rgba(15, 78, 151, 0.14);
}

.nav-cta.is-active {
  box-shadow:
    0 10px 24px rgba(236, 139, 22, 0.25),
    0 0 0 3px rgba(255, 226, 191, 0.9);
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #f8ab4a 0%, #ec8b16 100%);
  box-shadow: 0 10px 24px rgba(236, 139, 22, 0.25);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #f7b462 0%, #ea8410 100%);
}

.hero {
  position: relative;
}

.page-hero {
  padding: 30px 0 72px;
}

.page-shell,
.content-pair {
  background:
    radial-gradient(circle at top left, rgba(247, 188, 127, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(84, 151, 227, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.98));
  border: 1px solid rgba(15, 53, 92, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.page-shell {
  padding: 34px;
}

.page-shell.compact {
  padding-bottom: 28px;
}

.hero-showcase,
.content-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy.compact-copy .hero-actions {
  margin-top: auto;
}

.compact-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 1100px) {
  .hero-showcase {
    align-items: stretch;
  }

  .hero-copy.compact-copy {
    height: 100%;
  }
}

.eyebrow,
.section-kicker,
.mock-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 78, 151, 0.08);
  color: #6785ab;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-title,
.mock-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-shell.compact .hero-title,
.content-pair .mock-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.accent {
  color: var(--accent);
}

.hero-subtitle,
.mock-copy p,
.contact-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}

.hero-actions,
.form-actions,
.center-cta,
.mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-color: rgba(15, 78, 151, 0.16);
  box-shadow: inset 0 0 0 1px rgba(15, 78, 151, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.page-shell .mini-product-grid {
  margin-top: 28px;
}

.section.tight .mini-product-grid {
  margin-top: 28px;
}

.mini-product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 53, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.mini-product-thumb {
  width: 100%;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(15, 53, 92, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.mini-product-card strong {
  color: var(--primary-dark);
  font-size: 0.9rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-product-card span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

a.mini-product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.mini-product-card:hover,
a.mini-product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 78, 151, 0.18);
  box-shadow: 0 14px 34px rgba(15, 53, 92, 0.14);
}

.mock-browser {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 53, 92, 0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(15, 53, 92, 0.16);
}

.mock-browser.large {
  max-width: 100%;
}

.mock-browser.medium,
.mock-browser.compact,
.mock-browser.mini-browser {
  max-width: 100%;
}

.mock-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #0f4e97 0%, #0d427f 100%);
  color: #fff;
}

.mock-browser.screenshot-mode .mock-topbar {
  display: none;
}

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

.mock-brand img {
  width: 26px;
  height: 26px;
}

.mock-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
}

.mock-cta,
.mock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.mock-cta,
.mock-pill.primary {
  background: linear-gradient(180deg, #f7ac4e 0%, #ef9220 100%);
  color: #fff;
}

.mock-pill.secondary {
  background: rgba(15, 78, 151, 0.08);
  color: var(--primary);
}

.mock-stage {
  padding: 18px;
  background: linear-gradient(180deg, #fafdff 0%, #edf4fb 100%);
}

.mock-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.mock-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-shot {
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 53, 92, 0.08);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.product-shot.screenshot {
  grid-template-columns: 1fr;
}

.product-shot.screenshot .product-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot.wide,
.product-shot.tall {
  grid-template-columns: 76px 1fr;
}

.product-shot.compact-shot {
  grid-template-columns: 1fr;
  min-height: auto;
}

.product-sidebar {
  background: linear-gradient(180deg, #0d4a8e 0%, #0b3769 100%);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.product-sidebar span {
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.product-sidebar .active {
  background: linear-gradient(180deg, #f7b25b 0%, #ef9220 100%);
}

.product-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
}

.shot-toolbar,
.shot-summary,
.shot-grid,
.shot-table,
.shot-list,
.shot-checks {
  display: grid;
  gap: 12px;
}

.shot-toolbar {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.shot-tabs,
.shot-tools {
  display: flex;
  gap: 10px;
}

.shot-tabs span,
.shot-tools span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: #dbe7f3;
}

.shot-tabs span {
  width: 72px;
}

.shot-tools span {
  width: 24px;
}

.shot-summary {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.shot-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #4f86c6 0%, #2a63ab 100%);
}

.shot-lines {
  display: grid;
  gap: 8px;
}

.shot-lines span,
.shot-list span,
.shot-cell {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #dce7f3;
}

.shot-lines .w-80 {
  width: 80%;
}

.shot-lines .w-60 {
  width: 60%;
}

.shot-lines .w-40 {
  width: 40%;
}

.shot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 154, 46, 0.15);
  color: #d67f13;
  font-size: 0.82rem;
  font-weight: 800;
}

.shot-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.shot-panel {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 53, 92, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.shot-panel-title {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.shot-table {
  gap: 8px;
}

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

.shot-cell.highlight,
.shot-list .active {
  background: linear-gradient(180deg, #f7b25b 0%, #ef9220 100%);
}

.shot-list {
  gap: 10px;
}

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

.shot-checks span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 53, 92, 0.08);
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.section {
  padding: 64px 0;
}

.section.tight,
.section-tight {
  padding-top: 12px;
}

.section-cards {
  padding-top: 24px;
}

.section-title,
.contact-title,
.split-title,
.split-card-title,
.trust-title,
.page-h2,
.page-h3 {
  margin: 0 0 18px;
  color: var(--text-strong);
}

.section-title,
.trust-title {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.surface,
.contact-card,
.narrow-form-card,
.split-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 53, 92, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.surface,
.contact-card,
.split-card,
.narrow-form-card {
  padding: 28px;
}

.surface-compact {
  padding: 22px;
}

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

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 53, 92, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 78, 151, 0.06), rgba(242, 154, 46, 0.12));
}

.card-icon {
  max-width: 88px;
  max-height: 88px;
}

.card-title {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 1.18rem;
}

.card-text,
.page-text,
.split-subtitle,
.split-card-text,
.trust-text,
.form-hint,
.about-bullets,
.bullets,
.divider {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.split-text,
.footer-links {
  display: flex;
  flex-direction: column;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bullets,
.about-bullets {
  padding-left: 20px;
}

.bullets li,
.about-bullets li {
  margin-bottom: 10px;
}

.content-pair {
  padding: 32px;
  align-items: start;
}

.content-pair.single-column {
  grid-template-columns: 1fr;
  justify-items: center;
}

.content-pair.single-column .narrow-form-card {
  width: min(760px, 100%);
}

.narrow-form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--primary-dark);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 53, 92, 0.14);
  background: rgba(248, 251, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(15, 78, 151, 0.18);
  border-color: rgba(15, 78, 151, 0.3);
}

.hero-compact {
  min-height: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 154, 46, 0.18), rgba(15, 78, 151, 0.22)),
    url("../img/hero-mountains.png") center/cover;
  opacity: 0.75;
}

.hero-inner {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 72px 0;
}

.hero-split .hero-inner {
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 32px;
}

.hero-logo img {
  width: min(260px, 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.trust {
  padding-top: 10px;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(15, 53, 92, 0.1);
}

.site-footer {
  margin-top: 24px;
  color: #e9f2fb;
  background: linear-gradient(180deg, #0d3b73 0%, #0f4f97 100%);
}

.footer-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
}

.footer-brand,
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-link {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  width: fit-content;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  filter: brightness(1.05);
}

.footer-logo {
  width: 50px;
  height: 50px;
}

.footer-name {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.site-footer .brand-watch {
  color: #ffffff;
}

.site-footer .brand-core {
  color: var(--accent);
}

.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  gap: 12px;
}

.footer-links a,
.footer-nav a {
  color: rgba(233, 242, 251, 0.92);
}

.footer-copy,
.footer-meta {
  color: rgba(233, 242, 251, 0.82);
}

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

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(233, 242, 251, 0.92);
}

@media (max-width: 1100px) {
  .hero-showcase,
  .content-pair,
  .mock-hero,
  .split,
  .footer-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .mini-product-grid,
  .shot-grid,
  .shot-checks,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 10px;
  }

  .nav-link {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-open .nav {
    display: flex;
  }

  .page-hero,
  .section {
    padding: 20px 0 42px;
  }

  .page-shell,
  .content-pair,
  .surface,
  .contact-card,
  .narrow-form-card,
  .split-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-title,
  .mock-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mini-product-grid,
  .shot-grid,
  .shot-checks,
  .cards {
    grid-template-columns: 1fr;
  }

  .product-shot.wide,
  .product-shot.tall {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    flex-direction: row;
    padding: 16px;
  }

  .product-sidebar span {
    height: 10px;
  }

  .shot-summary,
  .shot-toolbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .hero-split .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .brand-name {
    font-size: 1.3rem;
  }

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

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .btn,
  .mock-pill,
  .mock-cta {
    width: 100%;
  }

  .hero-actions,
  .form-actions,
  .center-cta,
  .mock-actions {
    flex-direction: column;
  }
}
