@font-face {
  font-family: "Font Awesome 7 Duotone";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fontawesome/webfonts/fa-duotone-thin-100.woff2");
}

.fa-duotone.fa-thin {
  --fa-style: 100;
}

:root {
  --brand: #7f5cc2;
  --brand-dark: #6f4fa8;
  --brand-light: #efe7ff;
  --brand-hover: #8f6bc7;
  --yellow: #f2bd44;
  --text: #35264d;
  --muted: #7d6a9e;
  --soft: #fbf8ff;
  --aura-bg: #f6f0ff;
  --aura-accent-light: #ece2fb;
  --line: #d8c8f0;
  --menu-bg: #fbf8ff;
  --menu-border: #d8c8f0;
  --menu-text: #35264d;
  --menu-muted: #7d6a9e;
  --menu-accent: #8f6bc7;
  --menu-accent-light: #ece2fb;
  --linear: linear-gradient(90deg, #7f5cc2 0%, #8f6bc7 100%);
  --shadow: none;
}

body[data-theme="original"] {
  --brand: #4d71f1;
  --brand-hover: #405ed1;
  --yellow: #f2bd44;
  --text: #151827;
  --muted: #5f6678;
  --soft: #f5f6fb;
  --line: #e7e9f2;
  --linear: linear-gradient(90deg, #8e52c5 0%, #d26b82 100%);
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Geist", Inter, Arial, sans-serif;
  background: #fff;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 1.5rem + 2.5vw, 3.375rem);
}

h2 {
  font-size: clamp(2rem, 1.4286rem + 1.4286vw, 2.5rem);
}

p {
  line-height: 1.65;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.cssContainer {
  width: min(91.666%, 80rem);
  margin: 2rem auto;
}

.section-tight {
  padding-top: 0;
}

#info .cssContainer {
  padding-top: 5rem;
}

.linearText {
  color: transparent;
  background: var(--linear);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-header,
.hero-header,
.insights-header {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header p,
.hero-header p,
.insights-header p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
}

.btn,
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  padding: 0.8rem 1.8rem;
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0.6rem 1rem;
  color: #7f5cc2;
  box-shadow: 0 6px 18px rgba(31, 41, 55, 0.08);
}

.btn:hover,
.btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.12);
}

.btn-brand {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

.btn-soft {
  background: #f8fafc;
}

.btn-outline-light {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.full-width {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  font-size: 1.4rem;
  line-height: 1;
}

.icon svg,
.icon i {
  width: 100%;
  height: 100%;
}

.icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 1em;
  line-height: 1;
}

.icon.star svg {
  fill: currentColor;
  stroke: currentColor;
}

.icon.star i {
  font-size: 0.95em;
}

.icon.large {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 3.1rem;
}

.purple {
  color: var(--brand-dark);
}

.violet {
  color: var(--brand-dark);
}

.red {
  color: #ef4444;
}

.green {
  color: #10b981;
}

.orange {
  color: #fb923c;
}

.pink {
  color: #f472b6;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 5rem;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.pricing-nav:not(.is-scrolled):not(.is-open) .desktop-menu > a,
.pricing-nav:not(.is-scrolled):not(.is-open) .menu-trigger,
.pricing-nav:not(.is-scrolled):not(.is-open) .login-link,
.pricing-nav:not(.is-scrolled):not(.is-open) .nav-toggle {
  color: var(--text);
}

.pricing-nav:not(.is-scrolled):not(.is-open) .brand img,
.pricing-nav:not(.is-scrolled):not(.is-open) .brand svg {
  filter: none;
}

.nav-inner {
  width: min(91.666%, 80rem);
  min-height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img,
.brand svg {
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.brand .brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  aspect-ratio: 445 / 394;
}

.brand .brand-text {
  width: 6.4rem;
  height: auto;
  aspect-ratio: 641 / 139;
}

.desktop-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.desktop-menu {
  flex: 1;
  justify-content: center;
}

.desktop-menu > a,
.menu-trigger,
.login-link {
  border: 0;
  background: transparent;
  color: #374151;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

.menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem;
}

.menu-group {
  position: relative;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  min-width: 15rem;
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-panel a {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  color: #4b5563;
  font-size: 0.92rem;
}

.menu-panel a:hover {
  background: var(--soft);
  color: var(--brand);
}

.menu-group:hover .menu-panel,
.menu-group:focus-within .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-menu .nav-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #374151;
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.site-nav.is-open .nav-toggle .icon-menu {
  display: none;
}

.site-nav.is-open .nav-toggle .icon-close {
  display: inline-flex;
}

.mobile-menu {
  display: none;
}

.hero-section {
  padding-top: 5rem;
  overflow: hidden;
}

.bg-workflow {
  padding: 2rem;
  background-image: url("../images/data-workflow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-header {
  max-width: 60rem;
  margin: 0 auto 1rem;
}

.hero-header h1 {
  max-width: 56rem;
}

.hero-header h1 > .linearText {
  display: block;
}

.ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #4b5563;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.8rem;
  border-right: 1px solid rgba(107, 114, 128, 0.5);
}

.rating-item img {
  max-height: 1.5rem;
}

.rating-logo {
  display: inline-flex;
  min-width: 2.1rem;
  min-height: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.35rem;
  border-radius: 0.45rem;
  background: #fff;
  color: #202636;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.08);
}

.rating-item .star {
  color: #facc15;
}

.small-copy {
  font-size: 0.9rem;
}

.hero-feature {
  position: relative;
  min-height: 42rem;
  margin-top: 1rem;
}

.feature-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 1.1rem;
}

.feature-stage [data-feature-image] {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 1640 / 1064;
  max-height: none;
  opacity: 0;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-stage img[data-feature-image] {
  object-fit: cover;
  object-position: center center;
}

.feature-stage [data-feature-image].is-active {
  opacity: 1;
  transform: scale(1);
}

.feature-image-placeholder {
  aspect-ratio: 1640 / 1064;
  min-height: 22rem;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(127, 92, 194, 0.35);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-weight: 500;
  text-align: center;
}

.feature-image-placeholder span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.feature-panel {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  width: min(27.5rem, 100%);
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2), 0 0 100px rgba(127, 92, 194, 0.22);
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  text-align: center;
}

.feature-panel h3 {
  margin: 0 0 1.5rem;
  font-size: 1.45rem;
}

.feature-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-buttons button {
  min-height: 6.2rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #f0f1f5;
  border-radius: 0.9rem;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.feature-buttons button.is-active {
  border-color: var(--menu-border);
  background: var(--menu-bg);
  color: var(--brand-dark);
  box-shadow: none;
}

.feature-buttons .icon {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}

.feature-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.4rem 0;
}

.feature-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.feature-dots button.is-active {
  width: 2rem;
  background: #7f5cc2;
}

.stat-grid,
.card-grid,
.demo-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

.stat-card,
.icon-card,
.feature-card,
.testimonial-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 32px rgba(31, 41, 55, 0.08);
}

.stat-card {
  padding: 2rem;
  background: #eef0f8;
}

.stat-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-dark);
}

.stat-number .icon {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 2.25rem;
}

.stat-number strong {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card-logo-aura {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-logo-aura img:first-child {
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 445 / 394;
}

.card-logo-aura img:last-child {
  width: 5.8rem;
  max-width: 5.8rem;
  aspect-ratio: 641 / 139;
  max-height: 2rem;
}

.demo-box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 2rem 4rem;
  border-radius: 1.5rem;
  background: radial-gradient(55% 85% at 50% 18.91%, #fff 40%, rgba(255, 255, 255, 0) 100%), radial-gradient(70% 70% at 50% 50%, #fff 55%, rgba(255, 255, 255, 0) 90%), linear-gradient(179deg, rgba(255, 255, 255, 0.5) 29.22%, rgba(255, 146, 69, 0.5) 59.73%, rgba(255, 81, 160, 0.5) 78.94%, rgba(58, 39, 255, 0.5) 98.53%);
}

.demo-image {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 56rem;
  margin: 0 auto 3rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.9rem;
  background: #fff;
  overflow: hidden;
}

#demo {
  padding: 2rem;
}

.demo-media img,
.demo-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.demo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.demo-grid div {
  display: grid;
  gap: 0.7rem;
}

.demo-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.command-center-section {
  padding: 2rem;
  background: var(--aura-bg);
}

.command-center-header .section-eyebrow {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 500;
  letter-spacing: 0;
}

.command-center-shell {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(18rem, 1.1fr) minmax(16rem, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--soft);
  box-shadow: 0 24px 80px rgba(127, 92, 194, 0.16);
}

.command-console,
.command-results {
  display: grid;
  gap: 0.85rem;
}

.command-console {
  grid-template-rows: repeat(5, minmax(0, 1fr));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--aura-bg);
}

.command-console button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.command-console button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  border-radius: 1rem 0 0 1rem;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.command-console button:hover,
.command-console button.is-active {
  border-color: var(--brand-dark);
  background: var(--brand-light);
  transform: translateY(-1px);
}

.command-console button:hover::before,
.command-console button.is-active::before {
  background: var(--brand-hover);
  box-shadow: 0 0 1.4rem rgba(143, 107, 199, 0.8);
}

.command-console .icon {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 1.85rem;
  color: var(--brand-hover);
}

.command-console strong,
.command-console small {
  display: block;
}

.command-console strong {
  font-size: 1rem;
  line-height: 1.25;
}

.command-console small {
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.35;
}

.command-core {
  position: relative;
  min-height: 27rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, #fbf8ff 0%, #efe7ff 55%, #f6f0ff 100%);
}

.command-core::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background-image:
    linear-gradient(rgba(216, 200, 240, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 200, 240, 0.34) 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.command-ring {
  position: absolute;
  border: 1px solid var(--brand);
  border-radius: 50%;
  opacity: 0.22;
  animation: commandSpin 18s linear infinite;
}

.command-ring-one {
  width: 18rem;
  height: 18rem;
}

.command-ring-two {
  width: 12rem;
  height: 12rem;
  animation-direction: reverse;
}

.command-core-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(14rem, 74%);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: #fff;
  color: var(--text);
  text-align: center;
  box-shadow: 0 22px 58px rgba(127, 92, 194, 0.22);
}

.command-logo-mark {
  width: 3.6rem;
  height: 3.6rem;
  aspect-ratio: 445 / 394;
  transition: transform 0.45s ease;
}

.command-logo-mark.is-spinning {
  animation: commandLogoSpin 0.55s ease;
}

.command-logo-text {
  width: 8rem;
  max-width: 82%;
  height: auto;
  aspect-ratio: 641 / 139;
}

.command-core-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.command-flow {
  position: absolute;
  width: 36%;
  height: 2px;
  background: var(--linear);
  opacity: 0.76;
  transform-origin: center;
  animation: commandPulse 2.4s ease-in-out infinite;
}

.command-flow-one {
  left: 6%;
  top: 28%;
  transform: rotate(18deg);
}

.command-flow-two {
  right: 6%;
  top: 36%;
  transform: rotate(-20deg);
  animation-delay: 0.35s;
}

.command-flow-three {
  left: 32%;
  bottom: 21%;
  transform: rotate(90deg);
  animation-delay: 0.7s;
}

.command-results article {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.command-results article.is-active {
  border-color: var(--brand-dark);
  background: var(--brand-light);
  color: var(--text);
  transform: translateY(-1px);
}

.command-status {
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.command-result-number {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.command-result-number strong {
  color: var(--brand);
  font-size: 2.45rem;
  line-height: 0.95;
}

.command-results article.is-active .command-result-number strong {
  color: var(--brand-dark);
}

.command-result-number span {
  font-weight: 500;
  line-height: 1.1;
}

.command-results p {
  margin: 0;
  color: inherit;
  line-height: 1.45;
}

.command-center-cta {
  margin-top: 1.75rem;
}

@keyframes commandSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes commandLogoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes commandPulse {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.86;
  }
}

@keyframes commandMobileIn {
  from {
    opacity: 0;
    filter: blur(0.35rem);
    transform: translateY(0.75rem) scale(0.94);
  }

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

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.why-section::before {
  left: -10rem;
  background: rgba(239, 68, 68, 0.12);
}

.why-section::after {
  right: -10rem;
  background: rgba(127, 92, 194, 0.12);
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.compare-card {
  padding: 2rem;
  border: 1px solid rgba(185, 28, 28, 0.14);
  border-radius: 1.5rem;
  background: rgba(185, 28, 28, 0.06);
}

.compare-card-after {
  border-color: rgba(21, 128, 61, 0.16);
  background: rgba(21, 128, 61, 0.07);
}

.compare-title,
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.compare-title > .icon {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
  margin-top: 0.18rem;
}

.compare-card li {
  font-size: calc(1rem + 2px);
  line-height: 1.45;
}

.compare-card li > .icon {
  width: 1.05rem;
  height: 1.05rem;
  font-size: 1.05rem;
  margin-top: 0.16rem;
}

.compare-title {
  padding-left: 2.25rem;
  margin-bottom: 1.7rem;
}

.compare-title h3,
.compare-title p {
  margin: 0;
}

.compare-title h3 {
  font-size: calc(1.17em + 5px);
}

.compare-title p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-card ul,
.icon-card ul,
.interactive-card ul,
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li + li {
  margin-top: 1rem;
}

.compare-arrow {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.center-cta {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: 3rem;
}

.center-cta p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.92rem;
}

.icon-card {
  padding: 2rem;
  border: 1px solid rgba(209, 213, 219, 0.42);
  background: rgba(255, 255, 255, 0.72);
}

.icon-card h3,
.feature-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.45rem;
}

.icon-card p,
.feature-card p {
  color: var(--muted);
}

.icon-card li {
  position: relative;
  padding-left: 1.05rem;
  margin-top: 0.55rem;
  color: #4b5563;
  line-height: 1.45;
}

.interactive-section {
  padding: 2rem;
}

.icon-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.features-section {
  background-image: url("../images/background-desktop.svg");
  background-position: center;
  background-size: cover;
  padding: 2rem;
}

.feature-card {
  position: relative;
  align-self: start;
  min-height: 0;
  padding: 2rem;
  overflow: hidden;
  background: #fff;
}

.feature-card p {
  margin: 0;
}

.feature-overlay {
  display: none;
}

.interactive-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-height: 0;
}

.interactive-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--card-bg);
  color: var(--card-text);
  cursor: default;
  overflow: hidden;
  transition: none;
}

.interactive-card:nth-child(1) {
  background: var(--menu-bg) !important;
}

.interactive-card:nth-child(2) {
  background: var(--aura-bg) !important;
}

.interactive-card:nth-child(3) {
  background: var(--brand-light) !important;
}

.interactive-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.interactive-card-head .icon.large {
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
  color: var(--brand);
}

.interactive-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.interactive-card-body {
  display: block;
  margin-top: 1.35rem;
}

.interactive-card-body p {
  max-width: 35rem;
  color: currentColor;
  font-size: 1.15rem;
  font-weight: 500;
}

.interactive-card li {
  position: relative;
  padding-left: 1.05rem;
  margin-top: 0.55rem;
  line-height: 1.45;
}

.interactive-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.interactive-card li.has-inline-remove {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.interactive-card li.has-inline-remove > span:not(.icon) {
  min-width: 0;
}

.testimonial-section {
  overflow: hidden;
  padding-top: 4rem;
  background: #fff;
}

.testimonial-section .section-tight {
  padding: 0 0 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 0 3rem;
  animation: testimonial-marquee 28s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 22rem;
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
}

@keyframes testimonial-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.avatar {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 1.1rem;
  font-weight: 500;
}

.person h3,
.person p {
  margin: 0;
}

.person p {
  color: var(--muted);
  font-size: 0.92rem;
}

.insights-header {
  max-width: 52rem;
  margin: 0 auto;
}

#insights .cssContainer {
  padding-bottom: 1rem;
}

#achivements .cssContainer {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.achievements {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.achievement-image {
  width: min(100%, 70rem);
  display: grid;
  place-items: center;
}

.achievement-video {
  aspect-ratio: 16 / 9;
}

.achievement-image img {
  width: 100%;
  max-height: 42rem;
  object-fit: contain;
}

.achievement-video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  max-height: 42rem;
  border-radius: 1.25rem;
  object-fit: cover;
  background: #000;
}

.achievement-image-empty {
  min-height: 9.1rem;
  border: 1px dashed var(--line);
  border-radius: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

#faq {
  background: #f9f5ff;
  padding: 2rem;
}

.faq-list {
  max-width: 50rem;
  margin: 3rem auto 0;
  display: grid;
  gap: 0.8rem;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.faq-card button,
.faq-question-row {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 0;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
}

.faq-card button:visited,
.faq-card button:active,
.faq-card button:focus,
.faq-card button:focus-visible,
.faq-card button span,
.faq-card button span:visited,
.faq-question-row,
.faq-question-row span {
  color: var(--text);
}

.faq-card button:hover,
.faq-question-row:hover {
  background: #f9fafb;
  color: var(--text);
}

.faq-card .icon {
  transition: transform 0.2s ease;
}

.faq-question-row [data-edit-key$=".question"] {
  min-width: min(16rem, 80%);
  min-height: 1.3rem;
  display: inline-block;
  color: var(--text);
}

.faq-question-row {
  cursor: text;
}

.faq-question-row .icon {
  display: none;
}

.faq-card.is-open .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-card.is-open .faq-answer {
  max-height: 16rem;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
}

.faq-card-new .faq-answer {
  max-height: none;
  opacity: 1;
}

.faq-new-fields {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem 1.4rem;
}

.faq-answer .faq-new-field {
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--text);
}

.faq-new-field [data-edit-key],
.faq-new-field [data-edit-input-key] {
  width: 100%;
  min-height: 1.25rem;
  display: block;
}

.faq-new-field input,
.faq-new-field textarea {
  width: 100%;
  min-height: 1.25rem;
  padding: 0;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--text);
  font: inherit;
  line-height: 1.45;
}

.faq-new-field textarea {
  min-height: 3rem;
}

.faq-card.has-inline-remove {
  position: relative;
  overflow: visible;
}

.faq-remove-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 0.75rem);
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 999px;
  color: #b91c1c;
  background: rgba(254, 242, 242, 0.95);
  font: 900 0.95rem/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transform: translateY(-50%);
}

.faq-card.has-inline-remove [data-faq-toggle] {
  padding-right: 1.5rem;
}

.faq-card .faq-remove-card:hover,
.faq-card .faq-remove-card:focus {
  border-color: #b91c1c;
  background: #fee2e2;
  outline: 0;
}

.faq-add-card-wrap {
  max-width: 50rem;
  margin: 0.8rem auto 0;
}

.faq-add-card {
  margin: 0;
}

.footer-cta-section {
  background: #fff;
}

.site-footer {
  color: #111;
  background: #f9f5ff;
}

.footer-cta {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  text-align: center;
}

.footer-cta h3 {
  margin: 0;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3.375rem);
  line-height: 1.1;
}

.footer-cta p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
}

.footer-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.2rem;
}

.footer-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 500;
}

.footer-proof-row .icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  color: var(--brand-dark);
}

.footer-cta-section .btn-outline-light {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
}

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

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.footer-logo-mark {
  width: 3.2rem;
  max-width: 3.2rem;
  aspect-ratio: 445 / 394;
}

.footer-logo-text {
  width: 7.4rem;
  max-width: 7.4rem;
  aspect-ratio: 641 / 139;
}

.footer-company {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.footer-company p,
.footer-company address {
  margin: 0;
  font-style: normal;
  line-height: 1.65;
}

.footer-grid p,
.footer-grid a {
  color: #111;
}

.footer-grid a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.footer-title {
  margin-top: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111 !important;
}

.footer-grid li + li {
  margin-top: 0.65rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe7ff;
  color: #111;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #d8c8f0;
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: #111;
  text-align: center;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.paypal-modal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(100%, 34rem);
  padding: 2rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  color: var(--brand);
  box-shadow: 0 0.4rem 1.1rem rgba(53, 38, 77, 0.08);
}

.modal-close .icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(77, 113, 241, 0.1);
  color: var(--brand);
}

.modal-icon .icon {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}

.modal-card h2 {
  margin-top: 1.2rem;
}

.modal-card form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-fields {
  display: grid;
  gap: 0.8rem;
}

.modal-field-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-field-row input {
  flex: 1 1 auto;
}

.modal-admin-setting {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fbf8ff;
}

.modal-admin-setting label {
  gap: 0.45rem;
  margin: 0;
}

.modal-card label {
  display: grid;
  gap: 0.45rem;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-card input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.modal-card input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(77, 113, 241, 0.16);
}

.modal-form-status {
  min-height: 1.2rem;
  margin: -0.2rem 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}

.modal-form-status.is-success {
  color: #047857;
}

.modal-form-status.is-error {
  color: #b91c1c;
}

.modal-notes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}

.modal-notes span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1.35;
}

.modal-notes .icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  margin-top: 0.1rem;
  color: #22c55e;
}

.paypal-modal .modal-card {
  width: min(100%, 26rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: 1.25rem 1.35rem 1.3rem;
  border: 1px solid rgba(216, 200, 240, 0.75);
  border-radius: 0.875rem;
  box-shadow: 0 1.25rem 3rem rgba(53, 38, 77, 0.14);
  font-family: "Segoe UI", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.paypal-modal .modal-card h2 {
  margin: 0;
  padding-right: 2.35rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 700;
  text-align: left;
}

.paypal-modal .modal-card > p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.38;
  font-weight: 400;
  text-align: left;
}

.paypal-modal .modal-close {
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  min-height: 2rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.paypal-modal .modal-close:hover,
.paypal-modal .modal-close:focus {
  background: var(--brand-light);
  outline: 0;
}

.paypal-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  margin: 0.62rem 0 0.85rem;
  padding: 0.65rem 0.78rem;
  border: 1px solid rgba(216, 200, 240, 0.9);
  border-radius: 0.65rem;
  background: #f9f5ff;
}

.paypal-summary div {
  display: flex;
  align-items: center;
}

.paypal-summary div:last-child {
  justify-content: flex-end;
}

.paypal-summary > div > span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 500;
}

.paypal-summary strong {
  color: var(--menu-text);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: inherit;
}

.paypal-summary .paypal-currency {
  color: inherit;
  font-size: 0.72em;
  font-weight: 500;
}

.paypal-summary small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.paypal-checkout-form {
  display: grid;
  gap: 0.68rem;
  margin: 0 0 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.paypal-checkout-form.is-hidden,
.paypal-legal-panel.is-hidden,
.paypal-buttons.is-hidden {
  display: none;
}

.paypal-checkout-form h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
}

.paypal-modal .paypal-checkout-field {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}

.paypal-modal .paypal-checkout-field > span {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 500;
}

.paypal-modal .paypal-checkout-field input {
  width: 100%;
  min-height: 2.15rem;
  padding: 0.48rem 0.66rem;
  border: 1px solid rgba(127, 92, 194, 0.18);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.25;
  box-shadow: none;
}

.paypal-modal .paypal-checkout-field input::placeholder {
  color: var(--muted);
  font-weight: 400;
  opacity: 0.68;
}

.paypal-modal .paypal-checkout-field input:focus {
  border-color: rgba(127, 92, 194, 0.42);
  outline: 2px solid rgba(127, 92, 194, 0.13);
}

.paypal-modal .paypal-terms {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.32;
  text-align: left;
  cursor: pointer;
}

.paypal-modal .paypal-terms input {
  appearance: none;
  flex: 0 0 auto;
  width: 0.95rem;
  height: 0.95rem;
  min-height: 0.95rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.22rem;
  background: #fff;
  cursor: pointer;
}

.paypal-modal .paypal-terms input:checked {
  border-color: var(--brand);
  background:
    linear-gradient(135deg, transparent 0 38%, #fff 39% 48%, transparent 49%),
    linear-gradient(45deg, transparent 0 42%, #fff 43% 52%, transparent 53%),
    var(--brand);
}

.paypal-modal .paypal-terms input:focus {
  outline: 2px solid rgba(127, 92, 194, 0.18);
  outline-offset: 2px;
}

.paypal-modal .paypal-terms a {
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.paypal-modal .paypal-checkout-form .btn {
  min-height: 2.28rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.cookie-consent {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: min(34rem, calc(100vw - 2rem));
  contain: layout paint;
}

.cookie-consent.is-hidden,
.cookie-settings-button.is-hidden {
  display: none;
}

.cookie-consent-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--menu-border);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.4rem 3.5rem rgba(53, 38, 77, 0.18);
  color: var(--menu-text);
  backdrop-filter: blur(18px);
}

.cookie-consent-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cookie-consent p {
  margin: 0;
  color: var(--menu-muted);
  line-height: 1.55;
}

.cookie-consent a {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: none;
}

.cookie-consent-options {
  display: grid;
  gap: 0.65rem;
}

.cookie-consent-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--menu-border);
  border-radius: 0.75rem;
  background: var(--menu-bg);
  font-weight: 500;
}

.cookie-consent-option input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--brand);
}

.cookie-consent-option.is-locked {
  opacity: 0.72;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: center;
}

.cookie-consent-actions .btn {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  justify-content: center;
  text-align: center;
}

.cookie-consent-secondary {
  background: #fff;
  color: var(--menu-text);
}

.cookie-settings-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1190;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--menu-border);
  border-radius: 999px;
  background: #fff;
  color: var(--menu-text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 0.8rem 2rem rgba(53, 38, 77, 0.14);
  cursor: pointer;
}

.cookie-settings-button:hover,
.cookie-consent a:hover {
  color: var(--brand);
}

@media (max-width: 900px) {
  .cookie-consent {
    right: 1rem;
    bottom: 1rem;
    width: min(28rem, calc(100vw - 2rem));
  }

  .cookie-consent-card {
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .cookie-consent-kicker {
    font-size: 0.66rem;
  }

  .cookie-consent h2 {
    margin-bottom: 0.25rem;
    font-size: 1.12rem;
  }

  .cookie-consent p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .cookie-consent a {
    margin-top: 0.45rem;
    font-size: 0.84rem;
  }

  .cookie-consent-options {
    gap: 0.5rem;
  }

  .cookie-consent-option {
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    font-size: 0.82rem;
  }

  .cookie-consent-option input {
    width: 1rem;
    height: 1rem;
  }

  .cookie-consent-actions {
    gap: 0.45rem;
  }

  .cookie-consent-actions .btn {
    min-height: 2.3rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }
}

.paypal-legal-panel {
  display: grid;
  gap: 0.58rem;
  margin: 0 0 0.72rem;
}

.paypal-legal-panel h3 {
  margin: 0.1rem 0 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 500;
}

.paypal-legal-note,
.paypal-payment-notice {
  margin: 0;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(216, 200, 240, 0.85);
  border-radius: 0.58rem;
  color: var(--menu-text);
  font-size: 0.75rem;
  line-height: 1.36;
  font-weight: 400;
  text-align: left;
}

.paypal-payment-notice {
  background: #fff8e3;
  border-color: rgba(246, 190, 62, 0.48);
  font-weight: 500;
}

.paypal-required-checks {
  display: grid;
  gap: 0.48rem;
}

.paypal-status {
  min-height: 1.05rem;
  margin: 0 0 0.62rem;
  color: #6b7280;
  font-size: 0.74rem;
  font-weight: 500;
}

.paypal-status.is-error {
  color: #b91c1c;
}

.paypal-status.is-success {
  color: #15803d;
}

.paypal-buttons {
  min-height: 2.6rem;
}

.paypal-loading {
  display: grid;
  min-height: 2.6rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.paypal-demo-note {
  margin: 0.78rem 0 0;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.45;
}

.legal-page {
  padding-top: 5rem;
  background: #f7f8fc;
}

.legal-header {
  display: grid;
  gap: 0.8rem;
  max-width: 52rem;
  margin-bottom: 2rem;
}

.legal-header h1 {
  color: var(--text);
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.tag-pill {
  width: fit-content;
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(77, 113, 241, 0.1);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 500;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.legal-stack {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.legal-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.06);
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.legal-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
}

.legal-card p,
.legal-card address,
.legal-card li {
  color: #4b5563;
}

.legal-card address {
  font-style: normal;
  line-height: 1.7;
}

.legal-card p {
  margin: 0 0 0.75rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.legal-card a {
  color: var(--brand);
  font-weight: 500;
}

.pricing-hero {
  min-height: 100vh;
  padding: 4rem 0 2rem 0;
  color: var(--text);
  background: #fff;
}


.pricing-header {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 1.55rem;
  text-align: center;
}

.pricing-header h1 {
  color: #111;
  font-size: clamp(2.6rem, 1.6rem + 3vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1px;
}

.pricing-header p {
  max-width: 42rem;
  margin: 0;
  color: #4b5563;
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
}

.pricing-countdown-video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: min(100%, 48rem);
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(53, 38, 77, 0.08);
}

.pricing-countdown-video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--menu-accent-light);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.pricing-countdown-video.is-empty {
  display: grid;
  min-height: 11rem;
  padding: 1.25rem;
  place-items: center;
  border-style: dashed;
  background: var(--menu-bg);
  color: var(--muted);
  text-align: center;
}

.pricing-countdown-video-tools {
  display: flex;
  justify-content: center;
  margin: -0.35rem auto 1rem;
}

.pricing-countdown-video-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 1rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.pricing-countdown-video-tools button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.pricing-countdown {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  padding: 1rem 1.15rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--yellow);
  box-shadow: 0 1rem 2.5rem rgba(53, 38, 77, 0.08);
  text-align: center;
}

.pricing-countdown.is-disabled {
  opacity: 0.55;
}

.pricing-countdown-copy {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
}

.pricing-countdown-copy p {
  margin: 0;
  color: var(--menu-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-countdown-expired {
  display: none;
}

.pricing-countdown.is-expired .pricing-countdown-expired {
  display: block;
  color: #b91c1c;
}

.pricing-countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.pricing-countdown-grid div {
  min-width: 4.3rem;
  padding: 0.75rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  text-align: center;
}

.pricing-countdown-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-countdown-grid span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.pricing-countdown-separator {
  display: inline-grid;
  margin-top: 0;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-countdown-settings {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.pricing-countdown-settings label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--menu-text);
  font-size: 0.85rem;
  font-weight: 500;
}

.pricing-countdown-settings input[type="datetime-local"] {
  min-height: 2.2rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0.9rem;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.pricing-tabs button {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--menu-text);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-tabs button.is-active {
  background: var(--brand-light);
  color: var(--brand-dark);
  box-shadow: none;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.billing-toggle > span {
  color: #4b5563;
  font-size: 0.92rem;
  font-weight: 500;
}

.billing-toggle > span.is-active {
  color: #111;
}

.billing-toggle button {
  width: 3.4rem;
  height: 1.7rem;
  padding: 0.22rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand-light);
  cursor: pointer;
}

.billing-toggle button span {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--brand-dark);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.16);
  transition: transform 0.25s ease;
}

.billing-toggle.is-annual button span {
  transform: translateX(1.65rem);
}

.billing-toggle strong {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #e7f8ef;
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 500;
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.pricing-grid.pricing-grid-four,
.pricing-grid:has(> .pricing-card:nth-of-type(4)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid.is-active {
  display: grid;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.35rem 2rem 2rem;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  background: #fff;
  color: #111;
  box-shadow: none;
  min-height: 100%;
}

.pricing-card.is-popular,
.pricing-card.is-best-value {
  background: #fff;
  color: #1f2937;
}

.pricing-card.is-popular {
  border-color: var(--brand-dark);
  transform: none;
}

.pricing-card.is-inactive {
  opacity: 0.48;
}

.pricing-badges {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 2rem);
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.pricing-badges.is-hidden {
  display: none;
}

.aura-edit-active .pricing-badges.is-hidden {
  display: flex;
  opacity: 0.35;
}

.pricing-badges span {
  padding: 0.38rem 1.35rem;
  border-radius: 0.4rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge-toggle {
  position: absolute;
  top: 0.65rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6f4fa8;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-badge-toggle input {
  width: 0.95rem;
  height: 0.95rem;
  accent-color: #7f5cc2;
}

.pricing-plan-toggle {
  position: absolute;
  top: 0.65rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6f4fa8;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-plan-toggle input {
  width: 0.95rem;
  height: 0.95rem;
  accent-color: #7f5cc2;
}

.pricing-card header {
  margin-bottom: 1rem;
  min-height: 7.3rem;
}

.pricing-card h3 {
  margin: 0 0 0.8rem;
  color: #111;
  font-size: clamp(1.7rem, 1.05rem + 1.45vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.pricing-card header p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.42;
}

.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  min-height: 4.35rem;
}

.price-block .price-label {
  display: block;
  flex: 0 0 100%;
  order: 0;
  width: 100%;
  margin: 0 0 0.42rem;
  color: #ce2029;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-block .price-label.is-empty {
  visibility: hidden;
}

.price-block .regular-price {
  position: relative;
  display: inline-flex;
  align-items: center;
  order: 1;
  margin: 0 0 0 0.6rem;
  color: #ce2029;
  font-size: 1.26rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.price-block .regular-price::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 50%;
  height: 2px;
  background: #ce2029;
  transform: translateY(-50%) rotate(-4deg);
  pointer-events: none;
}

.pricing-card .price-block .price-label,
.pricing-card .price-block .regular-price {
  color: #ce2029;
}

.price-block[data-billing-cycle="annual"] {
  display: none;
}

.pricing-hero.is-annual .price-block[data-billing-cycle="monthly"] {
  display: none;
}

.pricing-hero.is-annual .price-block[data-billing-cycle="annual"] {
  display: flex;
}

.price-block .price-prefix {
  order: 1;
  margin: 0 0.4rem 0 0;
  color: #111;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.price-block .currency {
  order: 1;
  margin: 0 0.16rem 0 0;
  color: #111;
  font-size: clamp(2.25rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.price-block strong {
  order: 1;
  color: #111;
  font-size: clamp(2.25rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.price-block div {
  order: 2;
  flex: 1 1 100%;
  display: grid;
  margin: 0.7rem 0 0;
  align-self: start;
}

.price-block div > span {
  color: #374151;
  font-size: 0.82rem;
  font-weight: 500;
}

.price-block strong span {
  color: inherit;
  font: inherit;
}

.price-block small {
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.data-sources {
  margin: 0.95rem 0 0;
  color: #111;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  min-height: 3.1rem;
}

.additional-price {
  margin: 0.45rem 0 0;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  min-height: 2.35rem;
}

.pricing-ctas {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0 2.4rem;
}

.pricing-ctas a,
.pricing-ctas button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.pricing-ctas button {
  border: 0;
  background: transparent;
  color: var(--brand-dark);
}

.pricing-cta-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
  box-shadow: none;
}

.pricing-cta-primary-orange {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
  box-shadow: none;
}

.pricing-cta-primary-dark {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

.pricing-cta-outline {
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: #111;
}

.pricing-cta-outline-purple {
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: #111;
}

.plan-features {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.plan-feature-group {
  position: relative;
  border: 1px solid rgba(127, 92, 194, 0.16);
  border-radius: 0.9rem;
  background: rgba(251, 248, 255, 0.72);
}

.plan-feature-toggle {
  width: 100%;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.65rem 0.85rem;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.plan-feature-toggle strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.plan-feature-toggle .icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--brand-dark);
  transition: transform 0.18s ease;
}

.plan-feature-group.is-open .plan-feature-toggle .icon {
  transform: rotate(180deg);
}

.plan-feature-panel {
  display: none;
  padding: 0 0.85rem 0.85rem;
}

.plan-feature-group.is-open .plan-feature-panel {
  display: block;
}

.plan-features ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.4;
}

.plan-features li > strong {
  min-width: 1.4rem;
  color: var(--brand-dark);
  line-height: 1.45;
  text-align: center;
}

.plan-features li > .icon {
  width: 1rem;
  height: 1rem;
  font-size: 0.95rem;
  margin-top: 0.12rem;
  color: #16a34a;
}

.plan-features li > .icon.orange,
.plan-features .is-highlighted {
  color: var(--brand);
  font-weight: 500;
}

.plan-features em {
  align-self: center;
  padding: 0.15rem 0.35rem;
  border-radius: 0.35rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-card footer {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-card footer p {
  margin: 0 0 0.45rem;
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 500;
}

.pricing-card footer small {
  color: #6b7280;
  font-size: 0.72rem;
  font-style: italic;
  line-height: 1.45;
}

.pricing-add-plan {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  border: 1px dashed rgba(127, 92, 194, 0.5);
  border-radius: 999px;
  background: rgba(251, 248, 255, 0.68);
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 500;
}

.pricing-add-plan > span {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0.75rem 1.6rem rgba(53, 38, 77, 0.1);
  font-size: 1.15rem;
  line-height: 1;
}

.pricing-add-plan:hover,
.pricing-add-plan:focus {
  border-color: var(--brand);
  background: var(--brand-light);
  outline: 0;
}

.pricing-comparison-section {
  padding: 5rem 0;
  background: #fff;
  color: var(--text);
}

.pricing-comparison-section .section-header {
  margin-bottom: 2.2rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.comparison-table {
  min-width: min(70rem, 100%);
  display: grid;
  grid-template-columns: minmax(15rem, 1.1fr) repeat(3, minmax(11rem, 1fr));
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(216, 200, 240, 0.9);
  border-radius: 1.3rem;
  background: #fff;
  box-shadow: 0 1.8rem 4rem rgba(53, 38, 77, 0.08);
}

.comparison-table[data-comparison-plans="1"],
.comparison-table[data-comparison-plans="1"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(1, minmax(11rem, 1fr));
}

.comparison-table[data-comparison-plans="2"],
.comparison-table[data-comparison-plans="2"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(2, minmax(11rem, 1fr));
}

.comparison-table[data-comparison-plans="3"],
.comparison-table[data-comparison-plans="3"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(3, minmax(11rem, 1fr));
}

.comparison-table[data-comparison-plans="4"],
.comparison-table[data-comparison-plans="4"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(4, minmax(10rem, 1fr));
}

.comparison-table[data-comparison-plans="5"],
.comparison-table[data-comparison-plans="5"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(5, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="6"],
.comparison-table[data-comparison-plans="6"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(6, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="7"],
.comparison-table[data-comparison-plans="7"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(7, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="8"],
.comparison-table[data-comparison-plans="8"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(8, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="9"],
.comparison-table[data-comparison-plans="9"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(9, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="10"],
.comparison-table[data-comparison-plans="10"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(10, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="11"],
.comparison-table[data-comparison-plans="11"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(11, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="12"],
.comparison-table[data-comparison-plans="12"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(12, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="13"],
.comparison-table[data-comparison-plans="13"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(13, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="14"],
.comparison-table[data-comparison-plans="14"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(14, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="15"],
.comparison-table[data-comparison-plans="15"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(15, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="16"],
.comparison-table[data-comparison-plans="16"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(16, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="17"],
.comparison-table[data-comparison-plans="17"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(17, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="18"],
.comparison-table[data-comparison-plans="18"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(18, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="19"],
.comparison-table[data-comparison-plans="19"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(19, minmax(9.5rem, 1fr));
}

.comparison-table[data-comparison-plans="20"],
.comparison-table[data-comparison-plans="20"] .comparison-row {
  grid-template-columns: minmax(15rem, 1.1fr) repeat(20, minmax(9.5rem, 1fr));
}

.comparison-plan-header {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 6.7rem;
  padding: 1.3rem 1rem;
  border-left: 1px solid rgba(216, 200, 240, 0.7);
  text-align: center;
}

.comparison-feature-header {
  justify-items: start;
  border-left: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.comparison-plan-header strong {
  color: #111;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.95rem);
  font-weight: 500;
  line-height: 1.08;
}

.comparison-plan-header small {
  margin-top: 0.25rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 500;
}

.comparison-group {
  position: relative;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(216, 200, 240, 0.9);
}

.comparison-group-toggle {
  width: 100%;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.comparison-group-toggle .icon {
  width: 1rem;
  height: 1rem;
  color: var(--brand-dark);
  transition: transform 0.18s ease;
}

.comparison-group.is-open .comparison-group-toggle .icon {
  transform: rotate(180deg);
}

.comparison-group-toggle strong {
  font-size: 1rem;
  font-weight: 500;
}

.comparison-group-panel {
  display: none;
}

.comparison-group.is-open .comparison-group-panel {
  display: block;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(15rem, 1.1fr) repeat(3, minmax(11rem, 1fr));
  min-height: 2.8rem;
}

.comparison-row:nth-child(odd) {
  background: rgba(251, 248, 255, 0.72);
}

.comparison-feature-cell,
.comparison-cell {
  position: relative;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1rem;
  border-top: 1px solid rgba(216, 200, 240, 0.42);
}

.comparison-cell {
  justify-content: center;
  border-left: 1px solid rgba(216, 200, 240, 0.42);
  text-align: center;
}

.comparison-feature-label {
  color: #111;
  font-size: 0.95rem;
  font-weight: 500;
}

.comparison-help {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: #7d6a9e;
  font-size: 0.78rem;
}

.comparison-help[data-tooltip=""] {
  opacity: 1;
}

.comparison-help::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.55rem);
  z-index: 12;
  width: max-content;
  max-width: 15rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--menu-border);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--menu-text);
  box-shadow: 0 1rem 2rem rgba(53, 38, 77, 0.16);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.3rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.comparison-help:hover::after,
.comparison-help:focus::after {
  opacity: 1;
  transform: translateY(0);
}

.comparison-cell > .icon {
  width: 1.15rem;
  height: 1.15rem;
  font-size: 1rem;
}

.comparison-cell > .comparison-check {
  color: #17834b;
}

.comparison-cell > .comparison-x {
  color: #c7c7c7;
}

.comparison-cell-text {
  color: #111;
  font-size: 0.92rem;
  font-weight: 500;
}

.comparison-cell-tools {
  display: none;
}

.aura-edit-active .comparison-cell {
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.aura-edit-active .comparison-cell-tools {
  display: grid;
  gap: 0.35rem;
}

.aura-edit-active .comparison-cell-tools select,
.aura-edit-active .comparison-cell-tools input,
.comparison-help-input {
  width: 100%;
  min-height: 2rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--menu-border);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--menu-text);
  font: inherit;
  font-size: 0.78rem;
}

.comparison-help-input {
  flex: 1 1 10rem;
}

.comparison-remove-column,
.comparison-remove-group {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
}

.comparison-remove-row {
  position: static;
  order: -3;
  flex: 0 0 auto;
  z-index: 4;
  margin: 0 0.15rem 0 0;
}

.comparison-edit-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.comparison-add-row,
.comparison-add-group,
.comparison-add-column {
  justify-self: start;
  margin: 0.8rem 1rem 1rem;
}

.comparison-add-group,
.comparison-add-column {
  margin: 0;
}

.pricing-remove-plan {
  position: absolute;
  top: -0.65rem;
  right: -0.65rem;
  z-index: 2;
}

.plan-features li.has-inline-remove {
  padding-right: 2rem;
  position: relative;
}

.plan-features li.has-inline-remove .pricing-remove-feature {
  position: absolute;
  right: 0;
  top: 0.05rem;
}

.pricing-remove-feature-group {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  z-index: 2;
}

.pricing-add-feature {
  margin-top: 0.7rem;
  margin-left: 0;
}

.pricing-add-feature-group {
  justify-self: start;
}

.trust-logos {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding-top: 5rem;
}

.trust-logos p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.trust-logos div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.trust-logos img {
  max-height: 3rem;
}

.trust-logo-aura {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
}

.trust-logo-aura img:first-child {
  width: 1.45rem;
  height: 1.45rem;
}

.trust-logo-aura img:last-child {
  width: 4.8rem;
  filter: brightness(0) invert(1);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.addon-card {
  padding: 2rem;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

.addon-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.addon-price {
  text-align: right;
}

.addon-price span,
.addon-price small {
  color: #6b7280;
  font-size: 0.85rem;
}

.addon-price strong {
  font-size: 1.35rem;
}

.addon-price p {
  margin: 0.2rem 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
}

.addon-card h3 {
  margin: 1.7rem 0 0.7rem;
  font-size: 1.25rem;
}

.addon-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.addon-card a,
.agency-banner a {
  color: var(--brand);
  font-weight: 500;
}

.agency-banner {
  background: var(--brand-light);
}

.agency-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 5.75rem;
  overflow: visible;
}

.agency-banner .ribbon {
  position: absolute;
  top: 0;
  left: -5rem;
  z-index: 3;
}

.agency-banner-copy h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 1.25rem + 1.1vw, 2.1rem);
  line-height: 1.12;
}

.agency-feature-list {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.agency-feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.agency-feature-list .icon {
  width: 1.05rem;
  height: 1.05rem;
  font-size: 1.05rem;
  margin-top: 0.22rem;
}

.pricing-hero .green,
.pricing-hero .orange,
.agency-banner .green,
.agency-banner .orange {
  color: var(--brand-dark);
}

.agency-feature-list p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.agency-banner-copy .button-row {
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 0;
}

.agency-banner-copy .btn {
  min-width: 13.5rem;
}

.agency-banner-copy > p {
  margin: 1.5rem 0 0 5rem;
}

.agency-banner-visual {
  position: relative;
  min-width: 0;
}

.agency-banner-video {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.agency-banner-visual > img,
.agency-banner-video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: drop-shadow(0 18px 26px rgba(39, 30, 90, 0.22));
  background: #000;
  display: block;
}

.agency-banner-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(127, 92, 194, 0.34);
  border-radius: 0.5rem;
  background: rgba(251, 248, 255, 0.78);
  color: var(--brand-dark);
  font-weight: 500;
}

.agency-image-tools {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
}

.agency-image-tools button {
  min-height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.agency-image-tools button:hover,
.agency-image-tools button:focus {
  border-color: var(--brand);
  background: var(--soft);
  outline: 0;
}

.agency-help-card {
  position: absolute;
  right: -2.2rem;
  bottom: -5.2rem;
  width: min(21rem, 58%);
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 46px rgba(31, 41, 55, 0.18);
  font-size: 0.88rem;
}

.agency-help-avatar {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8efff;
  color: var(--brand);
  font-weight: 500;
}

.agency-help-card strong {
  display: block;
  line-height: 1.35;
}

.agency-help-card p {
  margin: 0.75rem 0;
  line-height: 1.45;
}

.agency-help-card small {
  color: #6b7280;
}

@media (max-width: 1180px) {
  .desktop-menu,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav.is-open .mobile-menu {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    height: calc(100vh - 5rem);
    overflow: auto;
    padding: 1rem 4.166% 2rem;
    background: #fff;
    gap: 0.5rem;
    align-content: start;
    grid-auto-rows: max-content;
  }

  .mobile-menu a,
  .mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
    font-weight: 500;
    cursor: pointer;
  }

  .mobile-menu .btn {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-bottom: 0;
    justify-content: center;
  }

  .mobile-menu .btn-soft {
    margin-top: 0.5rem;
  }

  .mobile-menu details a {
    margin-left: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
  }
}

@media (max-width: 980px) {
  .stat-grid,
  .card-grid,
  .demo-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-feature {
    min-height: auto;
    display: grid;
    gap: 1.5rem;
  }

  .feature-stage,
  .feature-panel {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .feature-stage {
    min-height: 24rem;
    justify-content: center;
  }

  .feature-stage [data-feature-image] {
    width: 100%;
  }

  .feature-stage img[data-feature-image] {
    object-position: center;
  }

  .command-center-shell {
    grid-template-columns: 1fr;
  }

  .command-core {
    min-height: 22rem;
  }

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

  .compare-arrow {
    display: none;
  }

  .interactive-cards {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .pricing-controls,
  .agency-banner-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .pricing-countdown {
    align-items: stretch;
    gap: 0.9rem;
    width: min(100%, 24rem);
    padding: 0.9rem;
  }

  .pricing-countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
  }

  .pricing-countdown-grid div {
    min-width: 0;
    width: 100%;
  }

  .pricing-countdown-separator {
    display: none;
  }

  .agency-banner .ribbon {
    left: 0;
  }

  .agency-help-card {
    right: 1rem;
    bottom: -3rem;
    width: min(22rem, 76%);
  }

  .pricing-grid,
  .pricing-grid.pricing-grid-four,
  .pricing-grid:has(> .pricing-card:nth-of-type(4)),
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cssContainer {
    width: min(92%, 80rem);
    padding: 3rem 0;
  }

  .hero-header,
  .section-header {
    justify-items: start;
    text-align: left;
  }

  .hero-header {
    margin-left: 0;
    margin-right: 0;
  }

  .button-row,
  .ratings {
    justify-content: flex-start;
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .cookie-consent {
    right: 0.65rem;
    bottom: 0.65rem;
    width: min(21.5rem, calc(100vw - 1.3rem));
    max-height: calc(100dvh - 1.3rem);
    overflow-y: auto;
  }

  .cookie-consent-card {
    gap: 0.65rem;
    padding: 0.8rem;
    border-radius: 0.85rem;
  }

  .cookie-consent h2 {
    font-size: 1rem;
  }

  .cookie-consent p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .cookie-consent-options {
    gap: 0.45rem;
  }

  .cookie-consent-option {
    padding: 0.5rem 0.6rem;
    font-size: 0.76rem;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .btn {
    width: 100%;
    min-height: 2.2rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.76rem;
    justify-content: center;
    text-align: center;
  }

  .cookie-settings-button {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.48rem 0.65rem;
    font-size: 0.72rem;
  }

  .footer-cta {
    justify-items: stretch;
    text-align: left;
  }

  .footer-proof-row {
    justify-content: flex-start;
  }

  .footer-proof-row span {
    width: auto;
  }

  .command-center-section .cssContainer {
    padding-top: 2rem;
  }

  .command-center-header {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .command-center-shell {
    gap: 0.8rem;
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .command-console,
  .command-core,
  .command-results article {
    border-radius: 1rem;
  }

  .command-console {
    display: block;
    padding: 0.65rem;
  }

  .command-console button {
    display: none;
    min-height: 4.2rem;
    animation: commandMobileIn 0.46s cubic-bezier(0.2, 1, 0.22, 1) both;
  }

  .command-console button.is-active {
    display: flex;
  }

  .command-core {
    display: grid;
    min-height: 9.25rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .command-results article {
    display: none;
    min-height: 0;
    animation: commandMobileIn 0.46s cubic-bezier(0.2, 1, 0.22, 1) both;
  }

  .command-results article.is-active {
    display: grid;
  }

  .command-core::before {
    inset: 0.8rem;
    border: 0;
    background-size: 1.35rem 1.35rem;
  }

  .command-core-card {
    width: min(8.25rem, 58%);
    gap: 0.45rem;
    padding: 0.8rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 0.8rem 2.2rem rgba(127, 92, 194, 0.18);
  }

  .command-logo-mark {
    width: 2.05rem;
    height: 2.05rem;
  }

  .command-logo-text {
    width: 4.9rem;
  }

  .command-core-card span {
    display: none;
  }

  .command-ring-one {
    width: 7.25rem;
    height: 7.25rem;
  }

  .command-ring-two {
    width: 4.8rem;
    height: 4.8rem;
  }

  .command-results {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .card-grid,
  .demo-grid,
  .footer-grid,
  .pricing-grid,
  .pricing-grid.pricing-grid-four,
  .pricing-grid:has(> .pricing-card:nth-of-type(4)),
  .addon-grid,
  .legal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    min-height: 0;
    padding-top: 5.5rem;
  }

  .pricing-header {
    justify-items: start;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    text-align: left;
  }

  .pricing-header h1 {
    font-size: clamp(2.15rem, 13vw, 3rem);
  }

  .pricing-header p {
    font-size: 0.98rem;
  }

  .pricing-countdown-video {
    border-radius: 1rem;
  }

  .pricing-countdown-video.is-empty {
    min-height: 8rem;
  }

  .pricing-countdown-video-tools {
    margin-bottom: 0.9rem;
  }

  .pricing-countdown-video-tools button {
    width: 100%;
  }

  .pricing-countdown {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    padding: 0.9rem;
    border-radius: 1rem;
  }

  .pricing-countdown-grid {
    gap: 0.6rem;
  }

  .pricing-countdown-grid div {
    padding: 0.7rem 0.5rem;
  }

  .pricing-countdown-grid strong {
    font-size: 1.45rem;
  }

  .pricing-countdown-settings {
    display: grid;
  }

  .pricing-countdown-settings label {
    align-items: flex-start;
  }

  .pricing-countdown-settings input[type="datetime-local"] {
    width: 100%;
  }

  .pricing-controls {
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.9rem;
  }

  .pricing-tabs {
    width: 100%;
    border-radius: 1rem;
  }

  .pricing-tabs button {
    flex: 1 1 100%;
    border-radius: 0.85rem;
    justify-content: center;
  }

  .billing-toggle {
    width: 100%;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(239, 231, 255, 0.42);
    border-radius: 1rem;
    background: rgba(251, 248, 255, 0.12);
  }

  .pricing-grid {
    gap: 1.15rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem 1.35rem;
    border-radius: 0.9rem;
  }

  .pricing-card header {
    min-height: 0;
    margin-bottom: 0.85rem;
  }

  .pricing-card h3 {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .price-block {
    min-height: 0;
    margin-bottom: 0.45rem;
  }

  .price-block .currency,
  .price-block strong {
    font-size: clamp(2.05rem, 13vw, 2.6rem);
  }

  .price-block div {
    margin-top: 0.45rem;
  }

  .data-sources {
    min-height: 0;
    margin-top: 0.75rem;
  }

  .additional-price {
    min-height: 0;
  }

  .pricing-ctas {
    margin: 0.95rem 0 1.4rem;
  }

  .pricing-card footer {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .pricing-comparison-section {
    padding: 3.6rem 0;
  }

  .pricing-comparison-section .section-header {
    margin-bottom: 1.35rem;
  }

  .comparison-table-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .comparison-table {
    min-width: 0;
    display: grid;
    gap: 0.45rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table[data-comparison-plans="1"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="5"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="6"] {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="7"] {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="8"] {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="9"] {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="10"] {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="11"] {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="12"] {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="13"] {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="14"] {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="15"] {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="16"] {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="17"] {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="18"] {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="19"] {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="20"] {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }

  .comparison-feature-header {
    display: none;
  }

  .comparison-plan-header {
    min-height: 4.25rem;
    padding: 0.85rem 0.45rem;
    border: 1px solid rgba(216, 200, 240, 0.72);
    border-radius: 1rem;
    background: #fff;
  }

  .comparison-plan-header strong {
    font-size: clamp(0.72rem, 3vw, 0.92rem);
    line-height: 1.08;
  }

  .comparison-plan-header small {
    margin-top: 0.2rem;
    font-size: 0.63rem;
  }

  .comparison-group {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
    border-top: 0;
  }

  .comparison-group-toggle {
    min-height: 2.35rem;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(216, 200, 240, 0.8);
    background: #fff;
  }

  .comparison-group-toggle strong {
    font-size: 0.78rem;
  }

  .comparison-group-panel {
    display: none;
    padding-top: 0.45rem;
  }

  .comparison-row {
    gap: 0;
    margin-bottom: 0.45rem;
    border-radius: 0.95rem;
    background: #fff;
    overflow: visible;
  }

  .comparison-table[data-comparison-plans="1"] .comparison-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="2"] .comparison-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="3"] .comparison-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="4"] .comparison-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="5"] .comparison-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="6"] .comparison-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="7"] .comparison-row {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="8"] .comparison-row {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="9"] .comparison-row {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="10"] .comparison-row {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="11"] .comparison-row {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="12"] .comparison-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="13"] .comparison-row {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="14"] .comparison-row {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="15"] .comparison-row {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="16"] .comparison-row {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="17"] .comparison-row {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="18"] .comparison-row {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="19"] .comparison-row {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }

  .comparison-table[data-comparison-plans="20"] .comparison-row {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }

  .comparison-row:nth-child(odd) {
    background: #fff;
  }

  .comparison-feature-cell {
    grid-column: 1 / -1;
    min-height: 2.2rem;
    padding: 0.5rem 0.72rem;
    border: 0;
    border-radius: 0.9rem;
    background: #fbf8ff;
  }

  .comparison-feature-label {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .comparison-help {
    width: 0.8rem;
    height: 0.8rem;
    font-size: 0.64rem;
  }

  .comparison-help::after {
    left: 0;
    bottom: calc(100% + 0.35rem);
    max-width: min(13rem, 78vw);
    font-size: 0.68rem;
  }

  .comparison-cell {
    min-height: 2.05rem;
    padding: 0.35rem 0.25rem;
    border-top: 0;
    border-left: 0;
  }

  .comparison-cell > .icon {
    width: 0.95rem;
    height: 0.95rem;
    font-size: 0.78rem;
  }

  .comparison-cell-text {
    font-size: 0.68rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .aura-edit-active .comparison-row {
    gap: 0.35rem;
    padding: 0.4rem;
    border: 1px solid rgba(216, 200, 240, 0.72);
  }

  .aura-edit-active .comparison-cell {
    padding: 0.35rem;
  }

  .comparison-edit-actions {
    justify-content: stretch;
  }

  .comparison-edit-actions .inline-add-row {
    width: 100%;
    justify-content: center;
  }

  .aura-edit-active .pricing-card {
    padding-top: 3.25rem;
  }

  .pricing-plan-toggle,
  .pricing-badge-toggle {
    top: 0.75rem;
  }

  .pricing-plan-toggle {
    left: 1rem;
  }

  .pricing-badge-toggle {
    right: 1rem;
  }

  .agency-banner-inner {
    gap: 2rem;
  }

  .agency-banner-copy .button-row,
  .agency-banner-copy > p {
    justify-content: flex-start;
    margin-left: 0;
  }

  .agency-help-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

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

  .feature-buttons button:not(.is-preview-visible),
  .feature-button-editor:not(.is-preview-visible) {
    display: none;
  }

  .feature-buttons .is-preview-active {
    order: 1;
  }

  .feature-buttons .is-preview-next {
    order: 2;
  }

  .feature-stage {
    min-height: 16rem;
  }

  .feature-panel {
    padding: 1.25rem;
  }

  .demo-box,
  .compare-card,
  .interactive-card,
  .modal-card {
    padding: 1.25rem;
  }

  .testimonial-card {
    width: 18rem;
  }
}

body:not([data-theme="original"]) {
  background:
    radial-gradient(circle at 15% 8%, rgba(143, 107, 199, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(127, 92, 194, 0.14), transparent 28rem),
    #fff;
}

body:not([data-theme="original"]) .site-nav.is-scrolled,
body:not([data-theme="original"]) .site-nav.is-open {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

body:not([data-theme="original"]) .icon:not(.red):not(.green):not(.orange):not(.pink):not(.star),
body:not([data-theme="original"]) .feature-buttons .icon,
body:not([data-theme="original"]) .stat-number .icon,
body:not([data-theme="original"]) .feature-card > .icon,
body:not([data-theme="original"]) .icon-card > .icon,
body:not([data-theme="original"]) .interactive-card-head .icon.large,
body:not([data-theme="original"]) .modal-icon .icon,
body:not([data-theme="original"]) .pricing-tabs .icon,
body:not([data-theme="original"]) .addon-card .icon {
  color: var(--brand-dark);
}

body:not([data-theme="original"]) .bg-workflow {
  background-color: var(--menu-bg);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(127, 92, 194, 0.12), transparent 22rem),
    radial-gradient(circle at 86% 20%, rgba(143, 107, 199, 0.14), transparent 24rem);
}

body:not([data-theme="original"]) .stat-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-light) 100%);
}

body:not([data-theme="original"]) .feature-dots button.is-active {
  background: var(--brand);
}

body:not([data-theme="original"]) .demo-box {
  background:
    radial-gradient(55% 85% at 50% 18.91%, #fff 40%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(70% 70% at 50% 50%, #fff 55%, rgba(255, 255, 255, 0) 90%),
    linear-gradient(179deg, rgba(255, 255, 255, 0.5) 29.22%, rgba(127, 92, 194, 0.3) 59.73%, rgba(143, 107, 199, 0.35) 78.94%, rgba(236, 226, 251, 0.78) 98.53%);
}

body:not([data-theme="original"]) .features-section {
  background: linear-gradient(180deg, rgba(127, 92, 194, 0.11), rgba(251, 248, 255, 0.88));
}

body:not([data-theme="original"]) .feature-card {
  background: #fff;
}

body:not([data-theme="original"]) .site-footer {
  background: #f9f5ff;
}

body:not([data-theme="original"]) .pricing-hero {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 107, 199, 0.5), transparent 24rem),
    radial-gradient(circle at 84% 22%, rgba(239, 231, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #35264d 0%, #6f4fa8 48%, #7f5cc2 100%);
}

body:not([data-theme="original"]) .pricing-header h1,
body:not([data-theme="original"]) .pricing-header p {
  color: #fff;
}

body:not([data-theme="original"]) .pricing-tabs {
  border-color: rgba(239, 231, 255, 0.42);
  background: rgba(251, 248, 255, 0.96);
}

body:not([data-theme="original"]) .billing-toggle > span,
body:not([data-theme="original"]) .billing-toggle > span.is-active {
  color: #fff;
}

body:not([data-theme="original"]) .pricing-tabs button.is-active {
  color: var(--brand);
}

body:not([data-theme="original"]) .billing-toggle strong {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.billing-toggle.is-annual strong,
body:not([data-theme="original"]) .billing-toggle.is-annual strong {
  background: #dcfce7;
  color: #15803d;
}

.pricing-hero.is-annual .pricing-card .pricing-cta {
  border-color: #bbf7d0;
  background: #dcfce7;
  color: #15803d;
}

body:not([data-theme="original"]) .pricing-card.is-popular,
body:not([data-theme="original"]) .pricing-card.is-best-value {
  border-color: var(--brand-dark);
}

body:not([data-theme="original"]) .pricing-badges span {
  background: var(--brand);
}

body:not([data-theme="original"]) .data-sources,
body:not([data-theme="original"]) .feature-row .icon,
body:not([data-theme="original"]) .plan-features .icon {
  color: var(--brand-dark);
}

body:not([data-theme="original"]) .pricing-cta-outline-purple {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

body:not([data-theme="original"]) .agency-banner {
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 107, 199, 0.18), transparent 24rem),
    #fbf8ff;
}

body:not([data-theme="original"]) .agency-help-card {
  box-shadow: none;
}

/* Aura typography refinement: keep h2 strong, calm everything around it. */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h3,
h4 {
  font-weight: 700;
  letter-spacing: 0;
}

p,
li,
small,
address,
input,
select,
textarea {
  font-weight: 400;
}

strong,
b {
  font-weight: 500;
}

.btn,
.btn-sm,
.nav-link,
.desktop-menu > li > a,
.mobile-menu a,
.mobile-menu summary,
.footer-links a,
.legal-card a,
.button-row a,
.button-row button {
  font-weight: 500;
}

.site-nav,
.footer-bottom,
.section-header p,
.hero-header p,
.insights-header p,
.pricing-header p,
.legal-header p,
.modal-card p,
.cookie-card p,
.demo-consent-text,
.comparison-subtitle {
  font-weight: 400;
}

.tag-pill,
.pricing-tabs button,
.billing-toggle > span,
.billing-toggle strong,
.pricing-badges span,
.pricing-plan-toggle,
.pricing-badge-toggle,
.pricing-card header p,
.pricing-ctas a,
.pricing-ctas button,
.pricing-add-plan,
.plan-feature-toggle strong,
.data-sources,
.plan-features .is-highlighted,
.plan-features em,
.pricing-card footer p,
.agency-banner-image-placeholder,
.agency-image-tools button,
.trust-logos p,
.addon-price p,
.addon-card a,
.agency-banner a,
.modal-card label,
.modal-card strong,
.cookie-card label,
.cookie-card button,
.comparison-heading-cell,
.comparison-plan-title,
.comparison-section-title,
.comparison-row-title,
.comparison-cell-text,
.comparison-edit-actions button,
.inline-add-row,
.inline-remove-row,
.inline-remove-card,
.inline-remove-section,
.inline-remove-column,
.inline-move-section,
.inline-add-column,
.inline-add-section,
.inline-editor,
.price-editor-panel,
.button-editor-panel {
  font-weight: 500;
}

.pricing-card h3,
.addon-card h3,
.agency-banner-copy h3,
.legal-card h3,
.feature-card h3,
.icon-card h3,
.interactive-card h3,
.testimonial-card h3,
.faq-question {
  font-weight: 700;
}

.price-block .price-label,
.price-block .regular-price,
.price-block .price-prefix,
.price-block .currency,
.price-block strong {
  font-weight: 500;
}

.stat-number {
  font-weight: 500;
}

.aura-admin-bar,
.aura-admin-bar button,
.aura-admin-bar a {
  font-weight: 500;
}

/* Keep h2 intentionally strong as requested. */
h2 {
  font-weight: 700;
}
