:root {
  --pro-navy: #071b34;
  --pro-navy-soft: #0c2b50;
  --pro-blue: #0c6cfd;
  --pro-blue-dark: #0756c7;
  --pro-cyan: #35b9df;
  --pro-ink: #172230;
  --pro-muted: #5e6b78;
  --pro-bg: #f5f7fa;
  --pro-bg-alt: #edf2f7;
  --pro-card: #ffffff;
  --pro-border: #d8e0e9;
  --pro-success: #16895a;
}

.pro-page,
.pro-page * {
  box-sizing: border-box;
}

.pro-page {
  overflow: hidden;
  background: var(--pro-bg);
  color: var(--pro-ink);
  font-family: "Inter", sans-serif;
}

.pro-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.pro-top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 78px;
  padding: 8px 0;
  background: rgba(5, 22, 43, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    min-height 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pro-top-nav.sticky-top,
.pro-top-nav.pro-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(12, 43, 80, 0.1);
  box-shadow: 0 8px 28px rgba(12, 36, 65, 0.12) !important;
}

.pro-nav-shell {
  display: flex;
  align-items: center;
}

.pro-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  padding: 0 !important;
  line-height: 1;
}

.pro-brand-stack {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 44px;
}

.pro-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.pro-logo-light {
  opacity: 1;
}

.pro-logo-dark {
  opacity: 0;
}

.pro-top-nav.sticky-top .pro-logo-light,
.pro-top-nav.pro-scrolled .pro-logo-light {
  opacity: 0;
}

.pro-top-nav.sticky-top .pro-logo-dark,
.pro-top-nav.pro-scrolled .pro-logo-dark {
  opacity: 1;
}

.pro-nav-links {
  align-items: center;
  gap: 2px;
}

.pro-top-nav .pro-nav-links .nav-link {
  margin: 0;
  padding: 14px 12px !important;
  color: #ffffff !important;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.pro-top-nav .pro-nav-links .nav-link::before {
  display: none;
}

.pro-top-nav .pro-nav-links .nav-link:hover,
.pro-top-nav .pro-nav-links .nav-link:focus-visible {
  color: #cbe3ff !important;
}

.pro-top-nav.sticky-top .pro-nav-links .nav-link,
.pro-top-nav.pro-scrolled .pro-nav-links .nav-link {
  color: #16365f !important;
  text-shadow: none;
}

.pro-top-nav.sticky-top .pro-nav-links .nav-link:hover,
.pro-top-nav.pro-scrolled .pro-nav-links .nav-link:hover {
  color: var(--pro-blue) !important;
}

.pro-nav-toggler {
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.pro-nav-toggler .fa-bars {
  color: #ffffff;
}

.pro-top-nav.sticky-top .pro-nav-toggler,
.pro-top-nav.pro-scrolled .pro-nav-toggler {
  border-color: #b9c9db;
  background: #f1f6fc;
}

.pro-top-nav.sticky-top .pro-nav-toggler .fa-bars,
.pro-top-nav.pro-scrolled .pro-nav-toggler .fa-bars {
  color: #173c68;
}

.pro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

.pro-button:focus-visible,
.pro-text-link:focus-visible,
.pro-anchor-nav a:focus-visible,
.pro-final-contact:focus-visible,
.pro-top-nav .nav-link:focus-visible {
  outline: 3px solid rgba(53, 185, 223, 0.8);
  outline-offset: 3px;
}

.pro-button-primary,
.pro-button-nav {
  color: #ffffff;
  background: var(--pro-blue);
  box-shadow: 0 10px 24px rgba(12, 108, 253, 0.27);
}

.pro-button-primary:hover,
.pro-button-nav:hover {
  color: #ffffff;
  background: var(--pro-blue-dark);
  box-shadow: 0 13px 30px rgba(12, 108, 253, 0.34);
}

.pro-button-nav {
  min-height: 42px;
  padding: 10px 18px;
  white-space: nowrap;
}

.pro-button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.42);
}

.pro-button-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.68);
}

.pro-hero {
  position: relative;
  padding: 144px 0 88px;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 185, 223, 0.22), transparent 31%),
    radial-gradient(circle at 12% 76%, rgba(12, 108, 253, 0.2), transparent 36%),
    linear-gradient(135deg, #06182f 0%, #0a294e 58%, #0b386a 100%);
}

.pro-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 85%);
  pointer-events: none;
}

.pro-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 54px;
  align-items: center;
}

.pro-eyebrow {
  margin: 0 0 11px;
  color: #0759c9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pro-eyebrow-light {
  color: #92cdf4;
}

.pro-hero h1 {
  max-width: 690px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.55rem, 4.6vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.pro-hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d9e6f4;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pro-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pro-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 8px 11px;
  color: #dceaf7;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 0.84rem;
}

.pro-hero-points i {
  color: #6fd6ed;
}

.pro-hero-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.pro-hero-visual::before {
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(101, 191, 255, 0.27);
  border-radius: 24px;
}

.pro-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 23px;
}

.pro-image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 36px);
  padding: 11px 14px;
  color: #ffffff;
  background: rgba(5, 24, 47, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 11px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  font-weight: 600;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pro-caption-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: #38d890;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(56, 216, 144, 0.16);
}

.pro-anchor-wrap {
  position: sticky;
  top: 66px;
  z-index: 20;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid #dbe4ed;
  box-shadow: 0 5px 16px rgba(20, 45, 73, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pro-anchor-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
}

.pro-anchor-nav a {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: #174b86;
  background: #edf5ff;
  border: 1px solid #c8dbf1;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.pro-anchor-nav a:hover {
  color: #073f80;
  background: #dfedff;
}

.pro-section {
  padding: 86px 0;
  scroll-margin-top: 126px;
}

.pro-section-alt {
  background: var(--pro-bg-alt);
}

.pro-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: center;
}

.pro-copy h2,
.pro-section-heading h2,
.pro-migration-copy h2,
.pro-final-cta h2 {
  margin: 0 0 17px;
  color: #101d2d;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.pro-copy p,
.pro-section-heading p,
.pro-migration-copy p {
  color: var(--pro-muted);
  font-size: 1.02rem;
  line-height: 1.76;
}

.pro-copy p {
  margin: 0 0 16px;
}

.pro-check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
}

.pro-check-list li {
  position: relative;
  margin: 0;
  padding-left: 31px;
  color: #344457;
  line-height: 1.55;
}

.pro-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "\2713";
  place-items: center;
  color: #ffffff;
  background: var(--pro-success);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.pro-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #075cce;
  font-weight: 700;
  text-decoration: none;
}

.pro-text-link:hover {
  color: #043f91;
}

.pro-text-link i {
  transition: transform 0.18s ease;
}

.pro-text-link:hover i {
  transform: translateX(3px);
}

.pro-seat-card {
  padding: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(53, 185, 223, 0.11), transparent 31%),
    #ffffff;
  border: 1px solid #d3dde8;
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(25, 52, 82, 0.13);
}

.pro-seat-card-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pro-seat-label {
  margin: 0 0 2px;
  color: #54708f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pro-seat-card h3 {
  margin: 0;
  color: #13243a;
  font-size: 1.55rem;
}

.pro-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #0e5c43;
  background: #e5f7ef;
  border: 1px solid #bde7d4;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.pro-seat-owner,
.pro-seat-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
}

.pro-seat-owner {
  margin-bottom: 13px;
  padding: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b315f, #0b5aa7);
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(9, 62, 119, 0.2);
}

.pro-seat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #195386;
  background: #e4f1fd;
  border: 1px solid #c5dff4;
  border-radius: 12px;
  font-weight: 700;
}

.pro-seat-avatar-owner {
  color: #0c417d;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.pro-seat-owner strong,
.pro-seat-owner span,
.pro-seat-row strong,
.pro-seat-row span {
  display: block;
}

.pro-seat-owner .pro-seat-avatar,
.pro-seat-row .pro-seat-avatar {
  display: grid;
  place-items: center;
}

.pro-seat-avatar i {
  font-size: 1.12rem;
  line-height: 1;
}

.pro-seat-owner span {
  color: #cde1f5;
  font-size: 0.85rem;
}

.pro-seat-owner > i {
  color: #97d9ff;
}

.pro-seat-list {
  display: grid;
  gap: 9px;
}

.pro-seat-row {
  padding: 14px 15px;
  background: #f7f9fc;
  border: 1px solid #e0e7ef;
  border-radius: 13px;
}

.pro-seat-row strong {
  color: #203247;
  font-size: 0.94rem;
}

.pro-seat-row div span {
  color: #6b7b8b;
  font-size: 0.82rem;
}

.pro-seat-status {
  color: #14744f !important;
  font-size: 0.75rem !important;
  font-weight: 700;
}

.pro-seat-row-open {
  border-style: dashed;
  background: #fbfcfe;
}

.pro-seat-note {
  margin: 18px 2px 0;
  color: #718091;
  font-size: 0.84rem;
  line-height: 1.5;
}

.pro-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.pro-section-heading p {
  margin: 0;
}

.pro-section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pro-browser-frame {
  width: min(100%, 800px);
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(21, 49, 79, 0.12);
}

.pro-browser-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: inherit;
}

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

.pro-feature-card {
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pro-border);
  border-radius: 16px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pro-feature-card:hover {
  transform: translateY(-4px);
  border-color: #b5cae1;
  box-shadow: 0 14px 30px rgba(23, 51, 80, 0.1);
}

.pro-feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 18px;
  place-items: center;
  color: #075fcf;
  background: #e5f1ff;
  border: 1px solid #c9def8;
  border-radius: 13px;
  font-size: 1.05rem;
}

.pro-feature-card h3 {
  margin: 0 0 8px;
  color: #1b2c41;
  font-size: 1.1rem;
}

.pro-feature-card p {
  margin: 0;
  color: var(--pro-muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.pro-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pro-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.pro-workflow::before {
  position: absolute;
  top: 65px;
  right: 17%;
  left: 17%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #b6d7fb, #51a8ec, #b6d7fb);
}

.pro-workflow-step {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--pro-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(24, 53, 83, 0.08);
}

.pro-step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #d9e3ee;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.pro-step-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0d6bf1, #0b4e9a);
  border: 7px solid #edf5fd;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(10, 82, 166, 0.2);
  font-size: 1.35rem;
}

.pro-workflow-step h3 {
  margin: 0 0 10px;
  color: #182b41;
  font-size: 1.3rem;
}

.pro-workflow-step p {
  margin: 0;
  color: var(--pro-muted);
  line-height: 1.65;
}

.pro-field-banner {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
  background-image: url("/img/header-business.jpg");
  background-position: center;
  background-size: cover;
  scroll-margin-top: 126px;
}

.pro-field-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 39, 0.92) 0%, rgba(6, 32, 60, 0.75) 54%, rgba(7, 33, 55, 0.28) 100%);
}

.pro-field-banner-content {
  position: relative;
  z-index: 1;
}

.pro-field-banner-content h2 {
  max-width: 720px;
  margin: 0 0 15px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.pro-field-banner-content p:last-child {
  max-width: 650px;
  margin: 0;
  color: #dbe7f2;
  font-size: 1.08rem;
  line-height: 1.72;
}

.pro-migration-section {
  background:
    radial-gradient(circle at 8% 100%, rgba(12, 108, 253, 0.08), transparent 30%),
    #f8fafc;
}

.pro-migration-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 58px;
  padding: 52px;
  background: #ffffff;
  border: 1px solid #d5dee8;
  border-left: 6px solid var(--pro-blue);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(23, 51, 81, 0.11);
}

.pro-migration-copy p {
  margin: 0 0 16px;
}

.pro-migration-copy .pro-button {
  margin-top: 10px;
}

.pro-migration-steps {
  display: grid;
  gap: 13px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-migration-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  padding: 17px;
  background: #f5f8fc;
  border: 1px solid #dde6ef;
  border-radius: 14px;
}

.pro-migration-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: #0a5dca;
  border-radius: 50%;
  font-weight: 700;
}

.pro-migration-steps h3 {
  margin: 0 0 4px;
  color: #19304a;
  font-size: 1rem;
}

.pro-migration-steps p {
  margin: 0;
  color: #657588;
  font-size: 0.88rem;
  line-height: 1.55;
}

.pro-faq-section {
  padding-top: 74px;
}

.pro-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pro-faq-grid article {
  padding: 25px;
  background: #ffffff;
  border: 1px solid var(--pro-border);
  border-radius: 15px;
}

.pro-faq-grid h3 {
  margin: 0 0 8px;
  color: #1a3048;
  font-size: 1.12rem;
}

.pro-faq-grid p {
  margin: 0;
  color: var(--pro-muted);
  line-height: 1.65;
}

.pro-final-cta {
  padding: 68px 0 78px;
  background: #edf2f7;
}

.pro-final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 43px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0, rgba(53, 185, 223, 0.2), transparent 38%),
    linear-gradient(135deg, #071c36, #0c3766);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(7, 31, 59, 0.24);
}

.pro-final-cta h2 {
  max-width: 670px;
  margin-bottom: 10px;
  color: #ffffff;
}

.pro-final-cta-card > div > p:last-child {
  margin: 0;
  color: #d6e5f3;
}

.pro-final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 235px;
}

.pro-final-contact {
  color: #cce4fa;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pro-final-contact:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .pro-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro-feature-card {
    min-height: 190px;
  }
}

@media (max-width: 991.98px) {
  .pro-top-nav,
  .pro-top-nav.sticky-top,
  .pro-top-nav.pro-scrolled {
    min-height: 68px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(12, 43, 80, 0.1);
    box-shadow: 0 7px 22px rgba(15, 40, 69, 0.11) !important;
  }

  .pro-nav-shell {
    flex-wrap: wrap;
  }

  .pro-brand-stack {
    width: 170px;
    height: 42px;
  }

  .pro-top-nav .pro-logo-light {
    opacity: 0;
  }

  .pro-top-nav .pro-logo-dark {
    opacity: 1;
  }

  .pro-nav-toggler,
  .pro-top-nav.sticky-top .pro-nav-toggler,
  .pro-top-nav.pro-scrolled .pro-nav-toggler {
    border-color: #b9c9db;
    background: #f1f6fc;
  }

  .pro-nav-toggler .fa-bars,
  .pro-top-nav.sticky-top .pro-nav-toggler .fa-bars,
  .pro-top-nav.pro-scrolled .pro-nav-toggler .fa-bars {
    color: #173c68;
  }

  .pro-top-nav .navbar-collapse {
    width: 100%;
    margin: 8px calc((92vw - 100%) / 2 * -1) 0;
    padding: 10px 4vw 16px;
    background: #ffffff;
    border-top: 1px solid #e0e7ef;
  }

  .pro-nav-links {
    align-items: stretch;
  }

  .pro-top-nav .pro-nav-links .nav-link,
  .pro-top-nav.sticky-top .pro-nav-links .nav-link,
  .pro-top-nav.pro-scrolled .pro-nav-links .nav-link {
    padding: 10px 2px !important;
    color: #16365f !important;
    text-shadow: none;
  }

  .pro-hero {
    padding: 116px 0 72px;
  }

  .pro-hero-grid,
  .pro-team-grid,
  .pro-migration-card,
  .pro-final-cta-card {
    grid-template-columns: 1fr;
  }

  .pro-hero-grid {
    gap: 48px;
  }

  .pro-hero-copy {
    max-width: 760px;
  }

  .pro-hero-visual {
    transform: none;
  }

  .pro-anchor-wrap {
    top: 68px;
  }

  .pro-section {
    padding: 70px 0;
  }

  .pro-team-grid {
    gap: 45px;
  }

  .pro-workflow {
    grid-template-columns: 1fr;
  }

  .pro-workflow::before {
    top: 60px;
    bottom: 60px;
    left: 64px;
    width: 2px;
    height: auto;
  }

  .pro-workflow-step {
    padding-left: 118px;
  }

  .pro-step-icon {
    position: absolute;
    top: 24px;
    left: 23px;
    margin: 0;
  }

  .pro-migration-card {
    gap: 36px;
  }

  .pro-final-actions {
    width: min(420px, 100%);
  }
}

@media (max-width: 620px) {
  .pro-shell {
    width: min(100% - 30px, 1180px);
  }

  .pro-brand-stack {
    width: 154px;
    height: 39px;
  }

  .pro-top-nav .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .pro-hero {
    padding-top: 108px;
  }

  .pro-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .pro-actions,
  .pro-final-actions {
    width: 100%;
  }

  .pro-actions .pro-button,
  .pro-final-actions .pro-button,
  .pro-centered-action .pro-button,
  .pro-migration-copy .pro-button {
    width: 100%;
  }

  .pro-hero-points {
    align-items: stretch;
  }

  .pro-hero-points li {
    width: 100%;
  }

  .pro-hero-visual::before {
    display: none;
  }

  .pro-image-caption {
    position: static;
    max-width: none;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0 0 22px 22px;
  }

  .pro-hero-visual img {
    border-radius: 22px 22px 0 0;
  }

  .pro-anchor-nav {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .pro-section {
    padding: 58px 0;
  }

  .pro-copy h2,
  .pro-section-heading h2,
  .pro-migration-copy h2,
  .pro-final-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .pro-seat-card {
    padding: 19px;
  }

  .pro-seat-card-head {
    flex-direction: column;
  }

  .pro-seat-owner,
  .pro-seat-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pro-seat-owner > i,
  .pro-seat-status {
    display: none !important;
  }

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

  .pro-feature-card {
    min-height: auto;
  }

  .pro-workflow::before {
    display: none;
  }

  .pro-workflow-step {
    padding: 24px;
  }

  .pro-step-icon {
    position: static;
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }

  .pro-field-banner {
    min-height: 470px;
    background-position: 42% center;
  }

  .pro-field-banner-overlay {
    background: rgba(4, 21, 41, 0.76);
  }

  .pro-migration-card {
    padding: 28px 22px;
    border-left-width: 4px;
  }

  .pro-migration-steps li {
    padding: 14px;
  }

  .pro-final-cta {
    padding: 50px 0 60px;
  }

  .pro-final-cta-card {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-page *,
  .pro-top-nav,
  .pro-logo {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
