:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --text: #101828;
  --muted: #667085;
  --line: #dce3ed;
  --dark: #0b1220;
  --dark-soft: #121d31;
  --accent: #ff5a36;
  --accent-dark: #e24424;
  --accent-soft: #fff0eb;
  --success: #12b76a;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow:
    0 24px 70px rgba(16, 24, 40, 0.11);
  --page: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 90, 54, 0.4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--dark);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 227, 237, 0.82);
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  text-decoration: none;
}

.wordmark-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--dark);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.wordmark-name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.button-secondary:hover {
  border-color: #bec8d6;
}

.button-ghost {
  color: var(--text);
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 15px;
  font-size: 16px;
}

.button-light {
  background: #ffffff;
  color: var(--dark);
}

.button-dark-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.maintenance-notice {
  position: relative;
  z-index: 110;
  border-bottom: 1px solid transparent;
  background: var(--dark);
  color: #ffffff;
}

.maintenance-notice[data-notice-mode="maintenance"] {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: var(--dark);
}

.maintenance-notice[data-notice-mode="sales-closed"] {
  border-bottom-color: rgba(255, 90, 54, 0.3);
  background: #fff4f0;
  color: var(--dark);
}

.maintenance-notice[hidden] {
  display: none;
}

.maintenance-notice .section-shell {
  min-height: 68px;
  padding-block: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.maintenance-notice strong {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
}

.maintenance-notice p {
  margin: 0;
  color: #c6d0de;
  font-size: 14px;
}

.maintenance-notice[data-notice-mode="sales-closed"] strong {
  color: var(--accent-dark);
}

.maintenance-notice[data-notice-mode="sales-closed"] p {
  color: #667085;
}

[data-sales-cta].is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

a[data-sales-cta].is-disabled {
  pointer-events: none;
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.mobile-menu-button:hover {
  background: rgba(11, 18, 32, 0.06);
}

.mobile-menu-button:active {
  transform: scale(0.95);
}

.mobile-menu-button span {
  width: 21px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: var(--dark);
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 140ms ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  width: min(var(--page), calc(100% - 40px));
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu:not([hidden]) {
  animation: mobile-menu-enter 180ms ease-out;
}

@keyframes mobile-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a:not(.button) {
  min-height: 48px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero {
  min-height: 760px;
  padding-block: 86px 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.white-label-section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 6vw, 78px);
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: #475467;
  font-size: 14px;
  font-weight: 750;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-height: 600px;
}

.product-glow {
  position: absolute;
  inset: 12% 5% 5%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 90, 54, 0.22),
      transparent 68%
    );
  filter: blur(30px);
}

.desktop-frame {
  position: absolute;
  left: 0;
  top: 40px;
  width: 90%;
  overflow: hidden;
  border: 1px solid #dce3ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.desktop-topbar {
  height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e8edf4;
  background: #f8fafc;
}

.desktop-topbar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.desktop-address {
  width: 55%;
  margin-left: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #94a3b8;
  font-size: 10px;
}

.dashboard-preview {
  min-height: 415px;
  display: grid;
  grid-template-columns: 64px 1fr;
}

.preview-sidebar {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--dark);
}

.preview-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.preview-nav {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-nav.active {
  background: rgba(255, 255, 255, 0.95);
}

.preview-workspace {
  padding: 30px;
  background: #f7f9fc;
}

.preview-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-heading small,
.preview-heading strong {
  display: block;
}

.preview-heading small {
  color: #98a2b3;
  font-size: 11px;
}

.preview-heading strong {
  margin-top: 3px;
  font-size: 19px;
}

.preview-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: #dcfae6;
  color: #067647;
  font-size: 10px;
  font-weight: 800;
}

.metric-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  padding: 16px;
  border: 1px solid #e5eaf1;
  border-radius: 15px;
  background: #ffffff;
}

.metric-card small,
.metric-card strong {
  display: block;
}

.metric-card small {
  color: #98a2b3;
  font-size: 10px;
}

.metric-card strong {
  margin-top: 5px;
  font-size: 23px;
}

.orders-preview {
  margin-top: 18px;
  padding: 6px 18px;
  border: 1px solid #e5eaf1;
  border-radius: 16px;
  background: #ffffff;
}

.order-line {
  min-height: 54px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.8fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #edf0f5;
  color: #667085;
  font-size: 11px;
}

.order-line:last-child {
  border-bottom: 0;
}

.order-line strong {
  justify-self: end;
  color: #344054;
}

.order-number {
  color: var(--accent);
  font-weight: 850;
}

.phone-frame {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 220px;
  height: 445px;
  padding: 8px;
  overflow: hidden;
  border: 7px solid #111827;
  border-radius: 38px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.25);
  transform: rotate(4deg);
}

.phone-island {
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 2;
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 32px 13px 16px;
  border-radius: 25px;
  background: #ffffff;
}

.store-header {
  height: 40px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}

.store-header strong {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-profile {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eceff4;
}

.store-notice {
  margin: 7px -13px 12px;
  padding: 10px 16px;
  background: var(--dark);
  color: #ffe45c;
  font-size: 9px;
  font-weight: 750;
}

.store-switch {
  height: 30px;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  background: #f1f3f6;
  font-size: 8px;
  font-weight: 800;
}

.store-switch span {
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.store-switch .active {
  background: var(--accent);
  color: #ffffff;
}

.store-card {
  height: 46px;
  margin-top: 9px;
  border-radius: 10px;
  background: #f4f5f7;
}

.store-products {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.store-products div span {
  height: 74px;
  display: block;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      #ffd9ca,
      #ffbea7
    );
}

.store-products div:nth-child(2) span {
  background:
    linear-gradient(
      135deg,
      #e6d4c6,
      #cba98f
    );
}

.store-products div:nth-child(3) span {
  background:
    linear-gradient(
      135deg,
      #f4d7aa,
      #e8ad59
    );
}

.store-products div:nth-child(4) span {
  background:
    linear-gradient(
      135deg,
      #f9e0c5,
      #efbf8e
    );
}

.store-products strong {
  margin-top: 4px;
  display: block;
  font-size: 8px;
}

.floating-proof {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6ebf2;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 35px rgba(16, 24, 40, 0.13);
  backdrop-filter: blur(14px);
}

.floating-proof > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.floating-proof small,
.floating-proof strong {
  display: block;
}

.floating-proof small {
  color: #98a2b3;
  font-size: 9px;
}

.floating-proof strong {
  margin-top: 2px;
  font-size: 11px;
}

.proof-domain {
  left: -20px;
  bottom: 60px;
}

.proof-pwa {
  right: 46px;
  top: 0;
}

.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.capability-track {
  min-height: 76px;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  white-space: nowrap;
}

.capability-track span {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.problem-section,
.industries-section,
.plans-section,
.faq-section {
  padding-block: 120px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.narrow-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.section-heading p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  gap: 22px;
}

.comparison-card {
  min-height: 330px;
  padding: 38px;
  border-radius: var(--radius-lg);
}

.fragmented-card {
  border: 1px solid var(--line);
  background: #ffffff;
}

.unified-card {
  background: var(--dark);
  color: #ffffff;
}

.card-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 18px 0 0;
  font-size: 30px;
  letter-spacing: -0.025em;
}

.comparison-card ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 28px;
  color: #667085;
}

.comparison-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #d92d20;
  font-weight: 900;
}

.comparison-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 34px;
}

.process-flow {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.process-flow span {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.process-flow i {
  color: var(--accent);
  font-style: normal;
}

.features-section {
  padding-block: 120px;
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  grid-column: span 4;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 24px;
  background: #f8fafc;
}

.feature-card-large {
  grid-column: span 8;
}

.feature-card-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 26px 0 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 480px;
  margin: 13px 0 0;
  color: var(--muted);
}

.mini-storefront {
  height: 118px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-storefront span {
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      #ffd9ca,
      #ffc2ac
    );
}

.mini-storefront span:nth-child(2) {
  background:
    linear-gradient(
      135deg,
      #e4d4c5,
      #c9ab90
    );
}

.mini-storefront span:nth-child(3) {
  background:
    linear-gradient(
      135deg,
      #f5d6a5,
      #e8b362
    );
}

.operations-visual {
  align-self: end;
  display: grid;
  gap: 10px;
}

.operations-visual div {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #e3e9f1;
  border-radius: 13px;
  background: #ffffff;
}

.operations-visual small {
  color: var(--muted);
}

.showcase-section {
  padding-block: 120px;
}

.showcase-tabs {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.showcase-tab.active {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

.showcase-panel {
  min-height: 520px;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 60px;
  border-radius: 32px;
  background: var(--dark);
  color: #ffffff;
}

.showcase-copy > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showcase-copy h3 {
  margin: 20px 0 0;
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.showcase-copy p {
  margin: 18px 0 0;
  color: #b9c2d0;
  font-size: 17px;
}

.showcase-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.showcase-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 900;
}

.visual-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.visual-window-bar {
  height: 42px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #edf1f6;
}

.visual-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c2cad6;
}

.visual-content {
  min-height: 350px;
  padding: 30px;
  color: var(--text);
  background: #f7f9fc;
}

.visual-mobile-card {
  height: 60px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: #ffffff;
}

.visual-mobile-card div {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
}

.visual-mobile-card span {
  width: 27px;
  height: 27px;
  justify-self: end;
  border-radius: 50%;
  background: #e7ebf1;
}

.visual-product-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.visual-product-grid span {
  height: 100px;
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      #ffd8ca,
      #ffbea5
    );
}

.visual-product-grid span:nth-child(2) {
  background:
    linear-gradient(
      135deg,
      #e5d5c8,
      #c6a487
    );
}

.visual-product-grid span:nth-child(3) {
  background:
    linear-gradient(
      135deg,
      #f5d7a8,
      #e8ac54
    );
}

.visual-product-grid span:nth-child(4) {
  background:
    linear-gradient(
      135deg,
      #d5dce9,
      #aebbd0
    );
}

.white-label-section {
  padding-block: 120px;
  background: var(--dark);
  color: #ffffff;
}

.white-label-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.light-eyebrow {
  color: #ff9b83;
}

.white-label-section h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.white-label-section p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b9c2d0;
  font-size: 18px;
}

.white-label-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.white-label-points span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d8dee8;
  font-size: 13px;
  font-weight: 750;
}

.domain-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: var(--dark-soft);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.27);
}

.domain-browser {
  height: 48px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 14px;
  background: #1d2a41;
}

.domain-browser > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #526079;
}

.domain-browser div {
  flex: 1;
  margin-left: 10px;
  padding: 7px 11px;
  border-radius: 8px;
  background: #101a2d;
  color: #98a7ba;
  font-size: 11px;
}

.domain-content {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.domain-logo {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--accent);
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.domain-content strong,
.domain-content span {
  display: block;
}

.domain-content strong {
  font-size: 30px;
}

.domain-content span {
  margin-top: 4px;
  color: #9daabd;
}

.domain-theme-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.domain-theme-row i {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: var(--accent);
}

.domain-theme-row i:nth-child(2) {
  background: #5b6cff;
}

.domain-theme-row i:nth-child(3) {
  background: #16a085;
}

.domain-theme-row i:nth-child(4) {
  background: #e0a21a;
}

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

.industry-grid article {
  min-height: 260px;
  padding: 28px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #ffffff;
}

.industry-grid article > span {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #c5ceda;
  font-size: 11px;
  font-weight: 900;
}

.industry-symbol {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.industry-grid h3 {
  margin: 34px 0 0;
  font-size: 25px;
}

.industry-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.workflow-section {
  padding-block: 120px;
  background: #ffffff;
}

.workflow-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: workflow;
}

.workflow-grid li {
  min-height: 240px;
  padding: 28px;
  border: 1px solid #e5eaf1;
  border-radius: 22px;
  background: #f8fafc;
}

.workflow-grid li > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.workflow-grid h3 {
  margin: 54px 0 0;
  font-size: 24px;
}

.workflow-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.workflow-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.launch-offer {
  margin: -18px 0 52px;
  padding: 30px;
  display: grid;
  grid-template-columns:
    minmax(240px, 0.8fr)
    minmax(480px, 1.2fr);
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255, 90, 54, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      #fff7f3,
      #ffffff 58%,
      #f7f9fc
    );
  box-shadow:
    0 20px 52px rgba(16, 24, 40, 0.08);
}

.launch-offer-copy {
  min-width: 0;
}

.launch-offer-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.launch-offer-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-offer-heading time {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.launch-offer h3 {
  margin: 14px 0 0;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.launch-offer-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.launch-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.launch-price-item {
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.launch-price-item span,
.launch-price-item strong,
.launch-price-item small {
  display: block;
}

.launch-price-item span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-price-item strong {
  margin-top: 8px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.launch-price-item small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.launch-price-featured {
  border-color: var(--accent);
  background: var(--dark);
  box-shadow:
    0 16px 34px rgba(16, 24, 40, 0.14);
}

.launch-price-featured span,
.launch-price-featured small {
  color: #bdc7d5;
}

.launch-price-featured strong {
  color: #ffffff;
}

.launch-offer-benefits {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
}

.launch-offer-benefits li {
  position: relative;
  padding-left: 20px;
  color: #667085;
  font-size: 12px;
  font-weight: 750;
}

.launch-offer-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.standard-pricing-heading {
  margin: 0 0 30px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 34px rgba(16, 24, 40, 0.06);
  text-align: center;
}

.standard-pricing-heading > div:first-child {
  min-width: 0;
}

.standard-pricing-heading > div:first-child > span {
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
}

.standard-pricing-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  min-height: 720px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #ffffff;
}

.plan-top{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.billing-switcher {
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d5dce6;
  border-radius: 15px;
  background: #f3f5f8;
  box-shadow: none;
}

.billing-option {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.billing-option span {
  margin-left: 7px;
  color: var(--success);
  font-size: 11px;
  white-space: nowrap;
}

.billing-option.active {
  background: var(--dark);
  color: #ffffff;
}

.billing-option.active span {
  color: #8ff0bd;
}

.plan-price {
  min-height: 62px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}

.plan-price strong {
  color: var(--dark);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-currency {
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
}

.plan-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-saving {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.plan-saving[hidden] {
  visibility: hidden;
  display: block;
}

.featured-plan .plan-price strong,
.featured-plan .plan-currency {
  color: #ffffff;
}

.featured-plan .plan-price small {
  color: #bdc7d5;
}

.featured-plan .plan-saving {
  color: #8ff0bd;
}

.plan-badge{
  position:absolute;
  top:-12px;
  left:50%;

  transform:translateX(-50%);

  padding:8px 18px;

  border-radius:999px;

  background:var(--accent);

  color:#fff;

  font-size:12px;
  font-weight:800;

  box-shadow:
    0 10px 25px rgba(255,90,54,.25);
}

.plan-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 25px 0 0;
  font-size: 30px;
}

.plan-card > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.plan-card ul {
  margin: 30px 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #475467;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.plan-commission,
.plan-trial {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 11px;
  background: #f1f5f9;
  color: #344054;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.plan-trial {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.featured-plan .plan-commission {
  background: rgba(255, 255, 255, 0.08);
  color: #d8dee8;
}

.featured-plan .plan-trial {
  background: rgba(255, 90, 54, 0.17);
  color: #ffb7a6;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.enterprise-section {
  margin-top: 56px;
  padding: 42px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(320px, 0.7fr);
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f8fafc
    );
  box-shadow:
    0 18px 48px rgba(16, 24, 40, 0.08);
}

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

.enterprise-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.enterprise-section h3 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.enterprise-copy > p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
}

.enterprise-features {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  list-style: none;
}

.enterprise-features li {
  position: relative;
  padding-left: 24px;
  color: #475467;
}

.enterprise-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.enterprise-card {
  min-width: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  background: var(--dark);
  color: #ffffff;
}

.enterprise-price {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.enterprise-card p {
  margin: 18px 0 30px;
  color: #c6d0de;
}

.enterprise-card .button {
  width: 100%;
}

.addons-section {
  margin-top: 34px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 16px 42px rgba(16, 24, 40, 0.06);
}

.addons-heading {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.addons-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.addons-heading h3 {
  margin: 12px 0 0;
  color: var(--dark);
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.addons-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.addons-grid {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.addon-card {
  min-width: 0;
  margin: 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.addon-card dt {
  color: #344054;
  font-size: 15px;
  font-weight: 800;
}

.addon-card dd {
  min-width: 132px;
  margin: 0;
  text-align: right;
}

.addon-card dd strong,
.addon-card dd span {
  display: block;
}

.addon-card dd strong {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.15;
  white-space: nowrap;
}

.addon-card dd span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.addons-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.pricing-note {
  max-width: 720px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.featured-plan {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(16, 24, 40, 0.14);
}

.featured-plan > p,
.featured-plan li {
  color: #bdc7d5;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.faq-list summary {
  min-height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 26px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  padding-bottom: 120px;
}

.final-cta-card {
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-radius: 32px;
  background:
    linear-gradient(
      135deg,
      #111b2d,
      #09111f
    );
  color: #ffffff;
}

.final-cta h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.final-cta p {
  max-width: 630px;
  margin: 20px 0 0;
  color: #b9c2d0;
  font-size: 17px;
}

.final-cta-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding-block: 72px 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 340px;
  color: var(--muted);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #98a2b3;
  font-size: 13px;
}

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

  .header-shell {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-product {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .white-label-grid {
    grid-template-columns: 1fr;
  }

  .domain-card {
    max-width: 650px;
  }
}

@media (max-width: 820px) {

  .enterprise-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .enterprise-copy,
  .enterprise-card {
    min-width: 0;
    width: 100%;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
  }

  .launch-offer {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .launch-offer-benefits {
    grid-column: auto;
  }

  .standard-pricing-heading {
    padding: 18px;
  }

  .standard-pricing-heading .billing-switcher {
    width: min(100%, 440px);
  }

  .desktop-login,
  .desktop-start {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-block: 64px 80px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .feature-card,
  .feature-card-large,
  .feature-card-wide {
    grid-column: 1 / -1;
  }

  .industry-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-plan {
    transform: none;
  }

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

  .showcase-panel {
    padding: 40px;
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .header-shell,
  .mobile-menu {
    width: min(100% - 28px, var(--page));
  }

  .header-shell {
    min-height: 68px;
  }

  .wordmark-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-product {
    min-height: 510px;
  }

  .desktop-frame {
    width: 100%;
  }

  .dashboard-preview {
    grid-template-columns: 45px 1fr;
  }

  .preview-workspace {
    padding: 20px 14px;
  }

  .preview-sidebar {
    padding-inline: 7px;
  }

  .metric-grid {
    gap: 6px;
  }

  .metric-card {
    padding: 10px 8px;
  }

  .metric-card strong {
    font-size: 18px;
  }

  .phone-frame {
    right: -6px;
    width: 174px;
    height: 355px;
  }

  .proof-domain {
    left: 0;
    bottom: 34px;
  }

  .proof-pwa {
    right: 0;
  }

  .floating-proof {
    padding: 9px 10px;
  }

  .floating-proof > span {
    width: 27px;
    height: 27px;
  }

  .capability-track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .problem-section,
  .industries-section,
  .plans-section,
  .faq-section,
  .features-section,
  .showcase-section,
  .white-label-section,
  .workflow-section {
    padding-block: 84px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .comparison-card {
    min-height: auto;
    padding: 27px;
  }

  .feature-card,
  .feature-card-wide {
    min-height: auto;
    padding: 25px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .showcase-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .showcase-tab {
    flex: 0 0 auto;
  }

  .showcase-panel {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .showcase-copy h3 {
    font-size: 31px;
  }

  .visual-content {
    min-height: 280px;
    padding: 18px;
  }

  .industry-grid,
  .workflow-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid article,
  .workflow-grid li {
    min-height: 220px;
  }

  .white-label-section h2 {
    font-size: 40px;
  }

  .final-cta {
    padding-bottom: 84px;
  }

  .final-cta-card {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .final-cta-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {

  .enterprise-section {
    margin-top: 38px;
    padding: 22px;
    gap: 26px;
    border-radius: 22px;
    overflow: hidden;
  }

  .enterprise-section h3 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .enterprise-copy > p {
    font-size: 15px;
  }

  .enterprise-features {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .enterprise-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-radius: 18px;
  }

  .enterprise-price {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .enterprise-card p {
    margin: 16px 0 24px;
    font-size: 15px;
  }

  .enterprise-card .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .addons-section {
    padding: 22px;
    border-radius: 22px;
  }

  .addons-heading h3 {
    font-size: 25px;
  }

  .addon-card {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .addon-card dd {
    min-width: 0;
    text-align: left;
  }

  .addon-card dd strong {
    white-space: normal;
  }

  .addons-note {
    text-align: left;
  }

  .launch-offer {
    margin-bottom: 38px;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .launch-offer-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-offer h3 {
    font-size: 23px;
  }

  .launch-prices {
    grid-template-columns: 1fr;
  }

  .launch-price-item {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 14px;
    text-align: left;
  }

  .launch-price-item span {
    grid-column: 1;
  }

  .launch-price-item strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
    font-size: 22px;
  }

  .launch-price-item small {
    grid-column: 1;
    margin-top: 0;
  }

  .launch-offer-benefits {
    grid-column: auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .launch-offer-benefits li {
    width: 100%;
  }

  .standard-pricing-heading {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 18px;
  }

  .standard-pricing-heading .billing-switcher {
    width: 100%;
  }

  .billing-switcher {
    width: 100%;
    margin-bottom: 38px;
  }

  .billing-option {
    padding-inline: 10px;
    font-size: 13px;
  }

  .billing-option span {
    margin: 2px 0 0;
    display: block;
    font-size: 9px;
  }

  .plan-price strong {
    font-size: 34px;
  }

  .plan-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 560px) {
  .maintenance-notice .section-shell {
    min-height: 0;
    padding-block: 14px;
    flex-direction: column;
    gap: 4px;
  }

  .maintenance-notice strong,
  .maintenance-notice p {
    overflow-wrap: anywhere;
  }
}
