@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --background: #f8fbff;
  --foreground: #1f2a44;
  --muted: #66758c;
  --surface: #ffffff;
  --surface-soft: #f2f7ff;
  --border: #dfe7f3;
  --brand: #2f69f6;
  --brand-deep: #1d4fd3;
  --brand-soft: #edf3ff;
  --teal: #4dc7cb;
  --teal-soft: #e8fbfb;
  --success: #10b981;
  --gradient-soft: linear-gradient(180deg, #fbfdff 0%, #f1f7ff 100%);
  --gradient-brand: linear-gradient(135deg, #2f69f6 0%, #4dc7cb 100%);
  --gradient-cta: linear-gradient(135deg, #214fcf 0%, #2f69f6 52%, #4dc7cb 100%);
  --shadow-soft: 0 4px 18px rgba(31, 42, 68, 0.06);
  --shadow-card: 0 14px 40px rgba(31, 42, 68, 0.08);
  --shadow-glow: 0 24px 64px rgba(47, 105, 246, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(47, 105, 246, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(47, 105, 246, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
  pointer-events: none;
  z-index: -2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(223, 231, 243, 0.82);
  background: rgba(248, 251, 255, 0.84);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 174px;
  height: auto;
}

.brand-text {
  display: none;
  flex-direction: column;
  gap: 0.16rem;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.brand-mark__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark__title {
  color: #10233c;
  font-family: "Plus Jakarta Sans", "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-mark__title span {
  color: #179fd0;
}

.brand-mark__subtitle {
  color: #75869b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Inter", sans-serif;
  padding: 0.78rem 0.95rem;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: var(--foreground);
  background: var(--surface-soft);
}

.nav-item.is-active > .nav-link,
.nav-item.is-active > .submenu-toggle {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.submenu-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item.is-open > .submenu-toggle svg,
.nav-item:hover > .submenu-toggle svg {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 280px;
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu,
.nav-item.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  font-family: "Inter", sans-serif;
  padding: 0.82rem 0.9rem;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a.is-active {
  background: var(--surface-soft);
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  gap: 0.58rem;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

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

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-deep);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  color: var(--foreground);
  background: var(--surface);
  border-color: var(--border);
}

.btn-light {
  color: var(--brand-deep);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.page-main {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(77, 199, 203, 0.14), transparent 18%),
    radial-gradient(circle at 12% 12%, rgba(47, 105, 246, 0.12), transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5.4rem 0 5rem;
}

.hero-inner.hero-inner-single {
  grid-template-columns: 1fr;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 105, 246, 0.16);
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 5px rgba(47, 105, 246, 0.1);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 800;
}

p {
  margin: 0;
}

.hero-copy p,
.section-intro p,
.split-copy p,
.card p,
.quote-card p,
.footer-copy p,
.footer-column li,
.cta-copy p,
.legacy-software-copy p,
.legacy-video-copy p,
.legacy-versions-card p,
.legacy-versions-list li,
.legacy-feature-card p,
.legal-card p,
.legal-card li,
.article-card p,
.article-card li,
.video-card p,
.contact-card p,
.contact-step p,
.pricing-card p,
.pricing-feature-list li,
.faq-answer p,
.faq-answer li,
.software-card p {
  color: var(--muted);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-copy p {
  max-width: 58ch;
  margin-top: 1.4rem;
  font-size: 0.98rem;
}

.hero-copy p + p,
.quote-card p + p,
.cta-copy p + p,
.legacy-video-copy p + p,
.legacy-versions-card p + p,
.legacy-feature-card p + p,
.legacy-final-card p + p,
.legal-card p + p,
.article-card p + p,
.video-card p + p,
.contact-card p + p,
.contact-step p + p,
.pricing-card p + p,
.faq-answer p + p,
.software-card p + p {
  margin-top: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 36px;
  background: var(--gradient-brand);
  opacity: 0.16;
  filter: blur(30px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.hero-media-slider {
  position: relative;
  min-height: 480px;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
}

.hero-media-slide img,
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-media-dots {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-media-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-media-dot.is-active {
  background: #ffffff;
  transform: scale(1.12);
}

.hero-note {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  max-width: 250px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-note p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-note-compact {
  right: 1.25rem;
  top: 1.25rem;
  bottom: auto;
  max-width: 340px;
  padding: 0.95rem 1.2rem;
  border-color: rgba(47, 105, 246, 0.18);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.hero-note-compact strong {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--brand-deep);
}

.offer-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.offer-modal-overlay[hidden] {
  display: none;
}

.offer-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offer-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100dvh - 3rem);
  padding: clamp(1.45rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(77, 199, 203, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.offer-modal-card::before,
.offer-modal-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.offer-modal-card::before {
  width: 240px;
  height: 240px;
  top: -120px;
  right: -60px;
  background: rgba(47, 105, 246, 0.1);
}

.offer-modal-card::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -40px;
  background: rgba(77, 199, 203, 0.14);
}

.offer-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 42, 68, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-modal-close:hover,
.offer-modal-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 105, 246, 0.3);
  box-shadow: 0 12px 24px rgba(31, 42, 68, 0.12);
}

.offer-modal-close svg {
  width: 18px;
  height: 18px;
}

.offer-modal-badge {
  position: absolute;
  top: 1rem;
  right: 4.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 126px;
  min-height: 126px;
  padding: 1rem 0.9rem;
  text-align: center;
  color: #101828;
  background: linear-gradient(135deg, #ff8a00 0%, #ffb000 55%, #ffd564 100%);
  clip-path: polygon(50% 0%, 62% 10%, 77% 4%, 83% 18%, 98% 20%, 92% 35%, 100% 50%, 92% 65%, 98% 80%, 83% 82%, 77% 96%, 62% 90%, 50% 100%, 38% 90%, 23% 96%, 17% 82%, 2% 80%, 8% 65%, 0% 50%, 8% 35%, 2% 20%, 17% 18%, 23% 4%, 38% 10%);
  box-shadow: 0 18px 34px rgba(255, 149, 0, 0.28);
}

.offer-modal-badge-top {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.15;
}

.offer-modal-badge strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 0.32rem;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-modal-badge-amount {
  font-size: 1.42em;
}

.offer-modal-badge-unit {
  font-size: 0.92em;
}

.offer-modal-badge-bottom {
  margin-top: 0.36rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.98;
}

.offer-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding: 0.55rem 0.88rem;
  border: 1px solid rgba(47, 105, 246, 0.12);
  border-radius: 999px;
  background: rgba(237, 243, 255, 0.92);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-modal-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 11ch;
  color: #13233f;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.offer-modal-lead {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  color: #516177;
  font-size: 0.95rem;
  line-height: 1.6;
}

.offer-modal-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-modal-list li {
  position: relative;
  min-height: 74px;
  padding: 0.8rem 0.85rem 0.8rem 2.65rem;
  border: 1px solid rgba(47, 105, 246, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #243752;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.38;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.offer-modal-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fbf75, #37cf8d);
  box-shadow: 0 8px 18px rgba(31, 191, 117, 0.24);
  transform: translateY(-50%);
}

.offer-modal-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.58rem;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-62%) rotate(45deg);
}

.offer-modal-price {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin-top: 1rem;
  padding: 1.05rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d4fd3 0%, #2f69f6 50%, #35c78b 100%);
  color: #ffffff;
  box-shadow: 0 22px 45px rgba(47, 105, 246, 0.28);
}

.offer-modal-price-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.offer-modal-price strong {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.32rem, 2.35vw, 1.9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.offer-modal-price-secondary {
  font-size: 0.94rem;
  font-weight: 700;
  opacity: 0.98;
}

.offer-modal-price span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.96;
}

.offer-modal-footnote {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  color: #5c6d83;
  font-size: 0.88rem;
  line-height: 1.5;
}

.offer-modal-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.offer-modal-secondary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4fd3 0%, #2f69f6 100%);
  border-color: rgba(47, 105, 246, 0.72);
  box-shadow: 0 14px 28px rgba(47, 105, 246, 0.2);
}

.offer-modal-secondary-btn:hover,
.offer-modal-secondary-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #183fb0 0%, #2558d8 100%);
  border-color: rgba(37, 88, 216, 0.82);
  box-shadow: 0 18px 32px rgba(37, 88, 216, 0.26);
}

.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  padding: 2.4rem 0;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 800;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.request-summary-section {
  padding-top: 1.8rem;
}

#programas {
  scroll-margin-top: 7rem;
}

.section-split {
  padding-bottom: 1.6rem;
}

.section-cards {
  padding-top: 1.6rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 1.9rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  margin-top: 0.82rem;
}

.section-intro p {
  max-width: 58ch;
  margin: 1rem auto 0;
  font-size: 1.02rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.25rem;
  align-items: stretch;
}

.split-grid > :only-child {
  grid-column: 1 / -1;
}

.logo-marquee-section {
  padding-top: 0;
  padding-bottom: 1.25rem;
}

.logo-marquee-section + .section-cards {
  padding-top: 0.7rem;
}

.logo-marquee-shell {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.logo-marquee-title {
  margin: 0 0 1rem;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.4;
}

.logo-marquee-title a {
  color: #9bb400;
  font-weight: 700;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-marquee-scroll var(--marquee-duration, 78s) linear infinite;
}

.logo-marquee-slide {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 0 1rem;
}

.logo-marquee-slide img {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  opacity: 0.92;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-copy,
.split-aside {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.split-copy h3,
.split-aside h3 {
  margin-bottom: 1rem;
}

.split-copy p + p,
.split-aside p + p {
  margin-top: 1rem;
}

.aside-list {
  display: grid;
  gap: 1rem;
}

.aside-item {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}

.aside-item strong {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.aside-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.showcase-feature-media {
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-soft);
}

.showcase-feature-media img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.showcase-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.showcase-card:hover,
.showcase-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 105, 246, 0.22);
  box-shadow: var(--shadow-card);
}

.showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-card--site {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.showcase-card--site img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--border);
}

.showcase-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.1rem;
}

.showcase-card__eyebrow {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card__title {
  margin: 0;
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.showcase-card__url {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-word;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(47, 105, 246, 0.22);
  box-shadow: var(--shadow-card);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card h3 {
  margin-bottom: 0.95rem;
  color: #244b9c;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 700;
}

.card p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.card-actions.is-multiple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-button {
  align-self: flex-start;
}

.card-button.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  border-color: rgba(16, 185, 129, 0.58);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.18);
}

.card-button.btn-secondary:hover,
.card-button.btn-secondary:focus-visible {
  background: linear-gradient(135deg, #16a34a 0%, #0f9f79 100%);
  border-color: rgba(15, 159, 121, 0.72);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.24);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-link svg {
  width: 14px;
  height: 14px;
}

.pricing-hero-hint {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.pricing-hero-hint a {
  color: var(--brand);
  font-weight: 700;
}

.pricing-detail-copy {
  display: grid;
  gap: 0.42rem;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-detail-copy.split-copy {
  max-width: none;
  margin: 0;
}

.pricing-detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.pricing-intro-section {
  padding-bottom: 1.2rem;
}

.pricing-plans-section {
  padding-top: 1.2rem;
}

.legacy-software-shell {
  padding-top: 2.4rem;
  padding-bottom: 1.6rem;
}

.legacy-software-shell .container {
  display: grid;
  gap: 1.35rem;
}

.legacy-software-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.35rem;
  align-items: stretch;
}

.legacy-software-intro.is-single-column {
  grid-template-columns: minmax(0, 1fr);
}

.legacy-software-intro > :only-child {
  grid-column: 1 / -1;
}

.legacy-software-copy,
.legacy-software-media,
.legacy-versions-card,
.legacy-video-card,
.legacy-feature-card,
.legacy-final-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.legacy-software-copy h2,
.legacy-versions-card h3,
.legacy-video-copy h3,
.legacy-final-card h2 {
  margin-top: 0;
}

.legacy-software-copy h2 {
  margin-bottom: 1rem;
}

.legacy-software-copy p,
.legacy-versions-card p,
.legacy-video-copy p,
.legacy-feature-card p,
.legacy-final-card p {
  color: var(--muted);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 400;
}

.legacy-software-copy p + p {
  margin-top: 0.8rem;
}

.legacy-feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.48rem;
  line-height: 1.7;
}

.legacy-feature-list li::marker {
  color: var(--brand);
}

.legacy-software-accent {
  margin: 0.55rem 0 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.legacy-software-badge {
  margin-top: 1.3rem;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-md) + 2px);
  background: var(--surface-soft);
}

.legacy-software-badge h3 {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.legacy-software-badge img {
  width: min(100%, 260px);
  height: auto;
}

.legacy-software-media {
  overflow: hidden;
}

.legacy-software-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: calc(var(--radius-md) + 2px);
}

.legacy-versions-card {
  max-width: none;
}

.legacy-versions-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--foreground);
  display: grid;
  gap: 0.68rem;
}

.legacy-video-shell {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.legacy-video-shell .section-head,
.legacy-feature-shell .section-head {
  display: none;
}

.legacy-video-stack {
  display: grid;
  gap: 1.2rem;
}

.legacy-video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.35rem;
  align-items: center;
}

.legacy-video-copy {
  display: grid;
  gap: 0.7rem;
}

.legacy-video-copy h3,
.legacy-feature-card h4 {
  margin-bottom: 0.95rem;
  color: #244b9c;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 700;
}

.legacy-video-lead {
  font-weight: 600;
  color: var(--foreground);
}

.legacy-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: calc(var(--radius-md) + 2px);
  background: #dbe8fb;
}

.legacy-video-embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.legacy-video-embed img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.legacy-video-stack[data-hide-third-card="true"] > .legacy-video-card:nth-child(3) {
  display: none;
}

.legacy-feature-shell {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.legacy-compare-shell {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.legacy-compare-shell .section-head {
  margin-bottom: 1rem;
}

.legacy-compare-shell .pricing-compare-note {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-align: center;
}

.legacy-compare-shell .pricing-legal-note {
  max-width: 760px;
  margin: 1rem auto 0;
  text-align: center;
}

.legacy-feature-intro {
  margin: 0 0 1.05rem;
  color: var(--muted);
  line-height: 1.72;
}

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

.legacy-feature-badge {
  width: auto;
  max-width: 92px;
  max-height: 34px;
  margin-bottom: 0.85rem;
}

.legacy-final-card {
  max-width: none;
}

.legacy-support-shell,
.legacy-help-shell {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.legacy-faq-shell {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.legacy-faq-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.legacy-faq-card h2 {
  margin-top: 0;
}

.legacy-faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.legacy-faq-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-md) + 2px);
  background: var(--surface-soft);
}

.legacy-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--foreground);
}

.legacy-faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.legacy-support-banner,
.legacy-help-banner {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #20365f 0%, #3166f4 100%);
  box-shadow: var(--shadow-soft);
}

.legacy-support-banner .section-kicker {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.legacy-support-banner h2,
.legacy-help-banner h3 {
  margin: 0.65rem 0 0;
  color: #fff;
}

.legacy-support-title {
  margin: 1.2rem 0 1.05rem;
}

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

.legacy-support-card {
  display: grid;
  gap: 0.9rem;
}

.legacy-support-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.legacy-support-link:hover {
  text-decoration: underline;
}

.legacy-help-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legacy-help-banner .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.legacy-help-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .legacy-software-intro,
  .legacy-video-card,
  .legacy-feature-grid,
  .legacy-support-grid {
    grid-template-columns: 1fr;
  }

  .legacy-help-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .legacy-software-copy,
  .legacy-software-media,
  .legacy-versions-card,
  .legacy-video-card,
  .legacy-feature-card,
  .legacy-final-card,
  .legacy-faq-card {
    padding: 1.25rem;
  }

  .legacy-support-banner,
  .legacy-help-banner {
    padding: 1.25rem;
  }

  .legacy-software-media img {
    min-height: 240px;
  }
}

.download-form-shell {
  padding-top: 1rem;
}

.download-form-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.download-option {
  min-height: 100%;
  padding: 2.35rem 1.6rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-option + .download-option {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.download-option h3 {
  margin: 0 0 0.75rem;
}

.download-option p {
  color: var(--muted);
  line-height: 1.72;
}

.download-option-actions {
  margin-top: 1rem;
}

.demo-form-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.demo-form-card h3 {
  margin: 0 0 0.5rem;
}

.demo-form-intro {
  margin-bottom: 1.35rem;
  color: var(--muted);
  line-height: 1.72;
}

.demo-form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
}

.demo-col-12 {
  grid-column: span 12;
}

.demo-col-6 {
  grid-column: span 6;
}

.demo-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.demo-form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--foreground);
}

.demo-form-req {
  color: #bf1d1d;
}

.demo-form-input,
.demo-form-select,
.demo-form-textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.88rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form-input:focus,
.demo-form-select:focus,
.demo-form-textarea:focus {
  border-color: rgba(47, 105, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(47, 105, 246, 0.12);
  outline: none;
}

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

.demo-form-help {
  color: var(--muted);
  font-size: 0.85rem;
}

.demo-form-error {
  min-height: 1rem;
  color: #bf1d1d;
  font-size: 0.82rem;
}

.demo-form-checkline {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.66;
}

.demo-form-checkline input {
  margin-top: 0.28rem;
}

.demo-form-checkline a {
  color: var(--brand);
  font-weight: 700;
}

.demo-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.cloud-request-shell {
  padding-top: 0;
}

.cloud-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: start;
}

.cloud-request-copy {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(169, 192, 0, 0.14), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: var(--shadow-soft);
}

.cloud-request-copy h2 {
  margin: 0 0 0.75rem;
}

.cloud-request-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.cloud-request-callout {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(36, 49, 61, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--foreground);
  font-weight: 700;
}

.cloud-request-card {
  position: relative;
}

.cloud-success-card {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(169, 192, 0, 0.35);
  border-radius: 16px;
  background: rgba(169, 192, 0, 0.12);
}

.cloud-success-card h4 {
  margin: 0 0 0.45rem;
}

.cloud-success-card p {
  margin: 0;
  color: var(--foreground);
  line-height: 1.68;
}

.cloud-error-card {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(191, 29, 29, 0.25);
  border-radius: 16px;
  background: rgba(191, 29, 29, 0.08);
  color: #8f1313;
  line-height: 1.68;
}

.cloud-request-band {
  padding-top: 0;
}

.cloud-request-band-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(169, 192, 0, 0.24), transparent 38%),
    linear-gradient(135deg, #1f2b38 0%, #24313d 58%, #314456 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cloud-request-band-card .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.cloud-request-band-card h2 {
  margin: 0.5rem 0 0;
  color: #fff;
}

.download-links-shell {
  padding-top: 0;
}

.download-links-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.download-links-card h2 {
  margin-bottom: 0.6rem;
}

.download-links-card > p {
  color: var(--muted);
  line-height: 1.72;
}

.download-links-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.download-link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(36, 49, 61, 0.12);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--foreground);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.download-link-button:hover,
.download-link-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 105, 246, 0.25);
  box-shadow: var(--shadow-soft);
}

.download-link-button span {
  font-weight: 800;
  line-height: 1.45;
}

.download-link-button small {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.download-link-button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand);
}

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

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(47, 105, 246, 0.22);
  box-shadow: var(--shadow-card);
}

.plan-card.is-featured {
  border-color: rgba(47, 105, 246, 0.28);
  box-shadow: var(--shadow-card);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(169, 192, 0, 0.18);
  color: #556600;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
}

.plan-description {
  color: var(--muted);
  line-height: 1.7;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.plan-price-promo {
  margin-bottom: 0.12rem;
}

.plan-amount {
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
}

.plan-period {
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 0.28rem;
}

.plan-price-detail {
  margin-top: -0.15rem;
  color: var(--foreground);
  font-size: 0.96rem;
  line-height: 1.5;
}

.plan-price-detail strong {
  font-weight: 800;
}

.plan-price-caption {
  margin-top: -0.25rem;
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.plan-features li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.64;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--brand);
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.45rem;
}

.plan-legal {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-legal-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-compare {
  padding-top: 0;
}

.pricing-compare-note {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pricing-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

.pricing-compare-table thead th {
  background: var(--surface-soft);
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
  min-width: 260px;
  color: var(--foreground);
  text-align: left;
}

.pricing-compare-table th:not(:first-child),
.pricing-compare-table td:not(:first-child) {
  text-align: center;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

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

.quote-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.quote-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.36;
  font-weight: 700;
}

.quote-card p {
  margin-top: 1.2rem;
  font-size: 0.98rem;
}

.quote-meta {
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-meta strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 700;
}

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

.cta-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-glow);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.2rem;
  color: #fff;
}

.cta-copy .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.cta-copy h2 {
  margin-top: 0.85rem;
  color: #fff;
}

.cta-copy p {
  max-width: 56ch;
  margin-top: 1.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3.5rem 0 2.4rem;
}

.footer-copy p {
  max-width: 42ch;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-column ul {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom-legacy {
  flex-wrap: wrap;
}

.footer-mini-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-mini-nav a {
  color: var(--muted);
}

.footer-mini-nav a:hover,
.footer-mini-nav a:focus-visible {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-inner,
  .split-grid,
  .cta-inner,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(248, 251, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 0.5rem;
    padding: 0.45rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--surface);
  }

  .nav-item.is-open > .submenu {
    display: block;
  }

  .nav-item:hover > .submenu,
  .nav-item:focus-within > .submenu {
    display: none;
  }

  .nav-item.is-open:hover > .submenu,
  .nav-item.is-open:focus-within > .submenu {
    display: block;
  }

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

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

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-inner,
  .section,
  .cta-inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-split {
    padding-bottom: 1.1rem;
  }

  .section-cards {
    padding-top: 1.1rem;
  }

  .logo-marquee-shell {
    padding: 1.15rem 1rem;
  }

  .logo-marquee {
    mask-image: none;
  }

  .logo-marquee-slide {
    flex-basis: 176px;
    min-height: 72px;
    padding: 0 0.75rem;
  }

  .logo-marquee-slide img {
    max-height: 50px;
  }

  .brand-mark__title {
    font-size: 0.98rem;
  }

  .brand-mark__subtitle {
    font-size: 0.63rem;
  }

  .brand-mark__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero-actions,
  .hero-tags,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card img {
    min-height: 340px;
  }

  .hero-media-slider,
  .hero-media-slide img {
    min-height: 340px;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin: 1rem;
  }

  .offer-modal-card {
    width: min(100%, 400px);
    max-height: calc(100dvh - 0.8rem);
    padding: 0.88rem 0.82rem 0.8rem;
    border-radius: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .offer-modal-close {
    top: 0.78rem;
    right: 0.78rem;
    width: 38px;
    height: 38px;
  }

  .offer-modal-close svg {
    width: 16px;
    height: 16px;
  }

  .offer-modal-badge {
    top: 3rem;
    right: 0.62rem;
    width: 76px;
    min-height: 76px;
    padding: 0.5rem 0.42rem;
    box-shadow: 0 10px 18px rgba(255, 149, 0, 0.18);
  }

  .offer-modal-badge strong {
    gap: 0.12rem;
    margin-top: 0.12rem;
    font-size: 0.8rem;
  }

  .offer-modal-badge-top,
  .offer-modal-badge-bottom {
    font-size: 0.43rem;
    letter-spacing: 0.03em;
  }

  .offer-modal-list {
    grid-template-columns: 1fr;
    gap: 0.46rem;
    margin-top: 0.72rem;
  }

  .offer-modal-list li {
    min-height: 50px;
    padding: 0.58rem 0.64rem 0.58rem 2.18rem;
    font-size: 0.8rem;
    line-height: 1.26;
  }

  .offer-modal-list li::before {
    left: 0.76rem;
    width: 18px;
    height: 18px;
  }

  .offer-modal-list li::after {
    left: 1.2rem;
    width: 4px;
    height: 8px;
  }

  .offer-modal-card h3 {
    max-width: none;
    padding-right: 4.9rem;
    font-size: 1.84rem;
    line-height: 1.02;
  }

  .offer-modal-kicker {
    margin-bottom: 0.52rem;
    padding: 0.38rem 0.64rem;
    font-size: 0.64rem;
  }

  .offer-modal-lead {
    margin-top: 0.54rem;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .offer-modal-price {
    margin-top: 0.7rem;
    padding: 0.8rem 0.85rem;
    border-radius: 16px;
  }

  .offer-modal-price-label {
    font-size: 0.64rem;
  }

  .offer-modal-price strong {
    font-size: 1.38rem;
    line-height: 1.02;
  }

  .offer-modal-price-secondary,
  .offer-modal-price span:last-child {
    font-size: 0.76rem;
  }

  .offer-modal-footnote {
    margin-top: 0.54rem;
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .offer-modal-actions {
    gap: 0.5rem;
    margin-top: 0.68rem;
    padding-bottom: 0.05rem;
  }

  .offer-modal-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1rem;
  }

  .offer-modal-overlay {
    align-items: flex-start;
    padding: 0.4rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .metrics-grid,
  .cards-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .demo-col-6 {
    grid-column: span 12;
  }

  .download-form-card {
    grid-template-columns: 1fr;
  }

  .cloud-request-layout {
    grid-template-columns: 1fr;
  }

  .card-actions.is-multiple {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .cta-inner {
    padding: 2.2rem 1.5rem;
  }

  .footer-top {
    padding-top: 2.8rem;
  }
}
