html {
  font-size: 14px;
  scroll-behavior: smooth;
}

:root {
  --landing-bg: #070b16;
  --landing-surface: rgba(13, 21, 41, 0.75);
  --landing-surface-strong: #0a1020;
  --landing-card: rgba(255, 255, 255, 0.04);
  --landing-card-hover: rgba(255, 255, 255, 0.08);
  --landing-border: rgba(255, 255, 255, 0.08);
  --landing-border-hover: rgba(255, 255, 255, 0.16);
  --landing-text: #f8fafc;
  --landing-text-muted: #94a3b8;
  --landing-accent: #f59e0b;
  --landing-accent-strong: #ea580c;
  --landing-primary: #38bdf8;
  --landing-primary-hover: #0ea5e9;
  --landing-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --landing-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.15);
  --landing-glow-orange: 0 0 30px rgba(245, 158, 11, 0.25);
  --transition-speed: 0.25s;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--landing-text);
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.15), transparent 30rem),
    radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.12), transparent 35rem),
    radial-gradient(circle at 50% 70%, rgba(234, 88, 12, 0.08), transparent 40rem),
    linear-gradient(180deg, #050811 0%, #080d19 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a {
  color: inherit;
  transition: all var(--transition-speed) ease;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-strong));
  color: #050811;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.landing-navbar {
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--landing-border);
  padding: 1rem 0;
  transition: all var(--transition-speed) ease;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--landing-text);
  font-weight: 800;
  text-decoration: none;
}

.landing-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-strong));
  color: #050811;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.navbar-nav .nav-link {
  color: var(--landing-text-muted);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.05);
}

.landing-btn-primary,
.hero-cta-primary {
  border: none;
  color: #050811;
  font-weight: 700;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-strong));
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
  transition: all var(--transition-speed) ease;
  border-radius: 0.75rem;
}

.landing-btn-primary:hover,
.hero-cta-primary:hover,
.landing-btn-primary:focus,
.hero-cta-primary:focus {
  color: #050811;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.landing-btn-primary:active,
.hero-cta-primary:active {
  transform: translateY(0);
}

.hero {
  padding: 7rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--landing-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--landing-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  max-width: 14ch;
  margin: 1.5rem 0;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  max-width: 39rem;
  color: var(--landing-text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-proof {
  margin-top: 1.5rem;
  color: var(--landing-text-muted);
  font-size: 0.9rem;
}

.hero-visual,
.feature-card,
.showcase-card,
.contact-panel,
.faq-card,
.pricing-card {
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-speed) ease;
}

.hero-visual {
  position: relative;
  padding: 1.2rem;
  background: rgba(13, 21, 41, 0.4);
}

.hero-visual:hover {
  transform: translateY(-4px);
  border-color: var(--landing-border-hover);
  box-shadow: var(--landing-shadow-hover);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 1rem -1rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 70%);
  filter: blur(24px);
  z-index: -1;
}

.visual-shell {
  padding: 1.20rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.98), rgba(13, 21, 41, 0.96));
}

.visual-toolbar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.visual-toolbar span {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.visual-grid {
  display: grid;
  gap: 0.9rem;
}

.visual-panel,
.visual-metric,
.showcase-mock {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.visual-panel {
  padding: 1rem;
}

.visual-kicker,
.section-kicker {
  color: var(--landing-accent);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visual-heading {
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.visual-table {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.visual-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--landing-text-muted);
}

.visual-row strong {
  color: var(--landing-text);
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #08101f;
  background: linear-gradient(135deg, #8ae6a0, #53d5c7);
}

.visual-badge.warning {
  background: linear-gradient(135deg, var(--landing-accent), #ffdb8d);
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.visual-metric {
  padding: 0.95rem;
}

.visual-metric-value {
  font-size: 1.6rem;
  font-weight: 800;
}

.visual-metric-label {
  color: var(--landing-text-muted);
  font-size: 0.82rem;
}

.section-shell {
  padding: 6rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-heading {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-copy {
  max-width: 42rem;
  color: var(--landing-text-muted);
  font-size: 1.08rem;
}

.problem-card,
.benefit-card,
.proof-card {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-speed) ease;
}

.problem-card:hover,
.benefit-card:hover,
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--landing-shadow);
}

.problem-index,
.benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0.85rem;
  color: #050811;
  background: linear-gradient(135deg, var(--landing-accent), #fcd34d);
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.feature-card,
.showcase-card,
.faq-card,
.contact-panel {
  padding: 2rem;
  height: 100%;
}

.feature-card:hover,
.showcase-card:hover,
.faq-card:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  border-color: var(--landing-border-hover);
  box-shadow: var(--landing-shadow-hover);
}

.feature-card h5,
.showcase-card h5,
.faq-card h5,
.contact-panel h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.feature-card p,
.showcase-card p,
.faq-card p,
.contact-panel p,
.problem-card p,
.benefit-card p,
.proof-card p {
  color: var(--landing-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-icon,
.showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: rgba(56, 189, 248, 0.1);
  color: var(--landing-primary);
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}

.proof-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--landing-text);
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.metric-strip-card {
  padding: 1.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.metric-strip-card:hover {
  transform: translateY(-4px);
  border-color: var(--landing-border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.metric-strip-value {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--landing-accent);
  background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-card {
  min-height: 100%;
}

.showcase-mock {
  padding: 1rem;
  margin-top: 1.25rem;
}

.showcase-mock-header {
  display: flex;
  justify-content: space-between;
  color: var(--landing-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.showcase-mock-body {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.showcase-mock-body div {
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.cta-section {
  padding: 5rem 0;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(13, 21, 41, 0.95), rgba(7, 11, 22, 0.98));
}

#lead-form-section {
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: rgba(10, 16, 32, 0.8);
  box-shadow: var(--landing-shadow-hover);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
}

#lead-form-section h5,
#lead-form-section label,
#lead-form-section p {
  color: var(--landing-text);
}

#lead-form-section p {
  color: var(--landing-text-muted);
}

.landing-footer {
  margin-top: 4rem;
  padding: 4rem 0;
  background: rgba(5, 8, 17, 0.98);
  color: var(--landing-text-muted);
  border-top: 1px solid var(--landing-border);
}

.landing-footer a {
  text-decoration: none;
  color: var(--landing-text-muted);
}

.landing-footer a:hover {
  color: var(--landing-text);
}

.landing-footer-divider {
  border-color: var(--landing-border);
  margin: 2rem 0;
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--landing-text);
  padding: 0.85rem 1.1rem;
  transition: all var(--transition-speed) ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--landing-primary);
  color: var(--landing-text);
  box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.2);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--landing-accent);
  background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
}

.pricing-card {
  padding: 2.25rem 2rem;
}

.pricing-card.featured {
  border-color: var(--landing-primary);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.15), 0 0 30px rgba(56, 189, 248, 0.1);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(13, 21, 41, 0.95) 0%, rgba(8, 12, 24, 0.98) 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card.featured .badge {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-hover)) !important;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-title,
  .section-heading {
    max-width: none;
  }

  .metrics-strip,
  .visual-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .metrics-strip,
  .visual-metrics {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .showcase-card,
  .faq-card,
  .contact-panel,
  .pricing-card {
    padding: 1.5rem;
  }
}

/* Premium Keyframe Animations & Utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Product-specific visual narrative */
.hero-copy-column {
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--landing-border-hover);
  border-radius: 1.75rem;
  background: #080d19;
  box-shadow: var(--landing-shadow-hover);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 8, 17, 0.92) 100%);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-flow {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-flow span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-flow b {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--landing-accent);
  color: #171006;
  font-size: 0.65rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  border-radius: 1.5rem;
  background: var(--landing-border);
  overflow: hidden;
}

.process-list li {
  display: flex;
  gap: 1rem;
  min-height: 14rem;
  padding: 2rem;
  background: var(--landing-surface-strong);
}

.process-list h3,
.use-case-card h3,
.benefit-list h3,
.feature-card h3,
.problem-card h3,
.faq-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.process-list p,
.use-case-card p,
.benefit-list p {
  margin: 0;
  color: var(--landing-text-muted);
}

.process-number {
  color: var(--landing-accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading-wide {
  max-width: 18ch;
}

.use-case-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.use-case-card {
  position: relative;
  min-height: 17rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(13, 21, 41, 0.96), rgba(7, 11, 22, 0.96));
}

.use-case-card:first-child {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.14), rgba(7, 11, 22, 0.96) 65%);
}

.use-case-line {
  display: block;
  width: 3rem;
  height: 0.25rem;
  margin-bottom: 5rem;
  border-radius: 999px;
  background: var(--landing-accent);
}

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

.benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--landing-border);
}

.benefit-list article > span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.14);
  color: var(--landing-accent);
  font-weight: 900;
}

.lead-panel {
  height: 100%;
}

.form-heading {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.form-label {
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.language-button {
  border: 1px solid var(--landing-border-hover);
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.04);
}

.language-button:hover,
.language-button:focus {
  border-color: var(--landing-primary);
  color: var(--landing-text);
}

.dropdown-menu {
  border-color: var(--landing-border-hover);
  background: #0a1020;
}

.dropdown-item {
  color: var(--landing-text-muted);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--landing-text);
  background: rgba(56, 189, 248, 0.12);
}

.footer-heading {
  color: var(--landing-text);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 32rem;
}

.landing-footer li + li {
  margin-top: 0.45rem;
}

.landing-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--landing-border);
  font-size: 0.78rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0.8rem rgba(34, 197, 94, 0.65);
}

.navbar-toggler {
  border-color: var(--landing-border-hover);
  filter: invert(1);
}

:focus-visible {
  outline: 3px solid var(--landing-primary);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .hero-photo {
    max-width: 46rem;
    margin-inline: auto;
  }

  .process-list,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
  }

  .use-case-card {
    min-height: 13rem;
  }

  .use-case-line {
    margin-bottom: 3rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .hero-flow {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    padding: 1rem;
    background: #080d19;
  }

  .hero-photo::after {
    display: none;
  }

  #lead-form-section {
    padding: 1.35rem;
  }

  .landing-footer-bottom {
    flex-direction: column;
  }
}

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

.legal-document {
  max-width: 52rem;
  margin: 0 auto;
}

.legal-document > h1 {
  max-width: 16ch;
  margin-left: 0;
}

.legal-intro {
  margin-left: 0 !important;
  font-size: 1.15rem !important;
}

.legal-date {
  margin: 2rem 0 3rem !important;
  font-size: 0.82rem !important;
}

.legal-document > section {
  padding: 1.75rem 0;
  border-top: 1px solid var(--landing-border);
}

.legal-document > section h2 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.legal-document > section p {
  margin: 0;
  color: var(--landing-text-muted);
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  background: var(--landing-card);
}

.legal-contact a {
  color: var(--landing-primary);
}

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

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

/* Secondary pages */
.page-hero {
  padding: 7rem 0 5rem;
}

.page-hero h1 {
  max-width: 18ch;
  margin: 1rem auto 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.06;
}

.page-hero p {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--landing-text-muted);
  font-size: 1.08rem;
}

.pricing-card h2 {
  font-size: 1.75rem;
}

.pricing-audience,
.pricing-period {
  color: var(--landing-text-muted);
}

.price-amount-text {
  min-height: 4.25rem;
  font-size: 2rem;
  line-height: 1.15;
}

.pricing-features {
  display: grid;
  gap: 0.85rem;
  min-height: 16rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  color: var(--landing-text-muted);
}

.pricing-features span {
  color: var(--landing-accent);
  font-weight: 900;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.45rem 1rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--landing-primary);
  color: #04121b;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-faq,
.faq-container {
  max-width: 56rem;
  margin: 6rem auto 0;
}

.pricing-faq > h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.accordion-item {
  border-color: var(--landing-border);
  background: var(--landing-surface-strong);
  color: var(--landing-text-muted);
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background: var(--landing-surface-strong);
  color: var(--landing-text);
  box-shadow: none;
  font-weight: 700;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:focus {
  box-shadow: inset 0 0 0 2px var(--landing-primary);
}

.contact-panel h2,
.support-card h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.contact-label {
  display: block;
  color: var(--landing-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--landing-text);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  text-decoration: none;
}

.checkout-page {
  min-height: 68vh;
}

.checkout-shell {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--landing-border-hover);
  border-radius: 1.5rem;
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow);
}

.checkout-shell h1 {
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.checkout-form,
.support-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  background: rgba(5, 8, 17, 0.52);
  text-align: left;
}

.checkout-note {
  margin-top: 1rem;
  font-size: 0.8rem !important;
}

.success-mark,
.cancel-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 2rem;
  font-weight: 900;
}

.cancel-mark {
  background: rgba(245, 158, 11, 0.14);
  color: var(--landing-accent);
}

.success-steps {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
  padding-left: 1.25rem;
  color: var(--landing-text-muted);
  text-align: left;
}

@media (max-width: 575.98px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }

  .pricing-features {
    min-height: auto;
  }
}


