@font-face {
  font-family: 'Satoshi';
  src: url('/marketing/assets/fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/marketing/assets/fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/marketing/assets/fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
.marketing-body {
  position: relative;
  min-height: 100vh;
}
.marketing-body > *:not(.marketing-bg) {
  position: relative;
  z-index: 1;
}
.marketing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.marketing-bg__base {
  position: absolute;
  inset: 0;
  background: #1a0a1f;
}
.marketing-bg__spot {
  position: absolute;
  width: 38vmax;
  height: 38vmax;
  border-radius: 50%;
  filter: blur(120px);
  animation: marketing-bg-float 110s ease-in-out infinite, marketing-bg-pulse 20s ease-in-out infinite;
  will-change: transform, opacity;
}
.marketing-bg__spot--1 {
  background: rgba(88, 28, 135, 0.6);
  animation-delay: 0s, 0s;
  animation-duration: 105s, 22s;
}
.marketing-bg__spot--2 {
  width: 34vmax;
  height: 34vmax;
  background: rgba(147, 51, 234, 0.5);
  animation-delay: -25s, -5s;
  animation-duration: 115s, 18s;
}
.marketing-bg__spot--3 {
  width: 30vmax;
  height: 30vmax;
  background: rgba(236, 72, 153, 0.45);
  animation-delay: -50s, -10s;
  animation-duration: 100s, 24s;
}
@keyframes marketing-bg-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(8%, 5%) scale(1.05);
  }
  50% {
    transform: translate(-5%, 10%) scale(0.95);
  }
  75% {
    transform: translate(5%, -5%) scale(1.02);
  }
}
@keyframes marketing-bg-pulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.65;
  }
}
.highlight_plain {
  background: none;
  -webkit-background-clip: none;
  background-clip: none;
  color: #c084f5;
}
.marketing-header {
  position: fixed!important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50!important;
  background: transparent;
  box-shadow: none;
  transition: background 250ms ease, box-shadow 250ms ease, border-bottom-color 250ms ease;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.75rem 1.5rem 0;
}
.marketing-header.marketing-header--scrolled {
  background: rgba(26, 10, 31, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.marketing-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.85rem;
}
.marketing-header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.marketing-header__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  flex-shrink: 0;
}
.marketing-header__brand:hover .marketing-header__brand-name {
  opacity: 0.95;
}
.marketing-header__brand-name {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e0b3e8;
  line-height: 1.2;
}
.marketing-header__brand-tagline {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #af91b8;
  letter-spacing: 0.04em;
}
.marketing-header__nav {
  display: flex;
  align-items: center;
}
.marketing-header__nav-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 22px;
  background: transparent;
}
.marketing-header__nav-link {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 0.3rem 1rem;
  border-radius: 18px;
  transition: color 0.2s, background 0.2s;
}
.marketing-header__nav-link:hover {
  color: #cab6d0;
}
.marketing-header__nav-link--active {
  color: #ffffff;
  background: linear-gradient(180deg, #a855f7 0%, #6b21a8 100%);
}
.marketing-header__nav-link--active:hover {
  color: #ffffff;
  opacity: 0.95;
}
.marketing-header__cta {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  background: #ffffff;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 22px;
  flex-shrink: 0;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.marketing-header__cta:hover {
  opacity: 0.95;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .marketing-header__nav-inner {
    display: none;
  }
  .marketing-header__inner {
    gap: 1rem;
  }
}
.marketing-main {
  min-height: 40vh;
  padding: 5rem 1.5rem 3rem 1.5rem;
}
.marketing-container {
  max-width: 1200px;
  margin: 0 auto;
}
.marketing-hello {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.3) 0%, rgba(139, 108, 199, 0.2) 100%);
  border: 1px solid #af91b8;
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #af91b8;
}
.tag .icon {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}
.block.marketing-hero {
  background: transparent;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  box-sizing: border-box;
}
.block.marketing-hero .hero-content {
  margin: 0 auto;
}
.block.marketing-hero h1 {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.block.marketing-hero h1 .gradient {
  background: linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .block.marketing-hero h1 {
    font-size: 2.25rem;
  }
}
.block.marketing-hero .subheading {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0 0 2.5rem;
}
.block.marketing-hero .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.block.marketing-hero .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
}
.block.marketing-hero .cta_button .icon {
  width: 1rem;
  height: 1rem;
  display: block;
}
.block.marketing-hero .cta_button.main {
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  border: none;
}
.block.marketing-hero .cta_button.main:hover {
  opacity: 0.95;
}
.block.marketing-hero .cta_button.secondary {
  color: #ffffff;
  background: #2d1538;
  border: 1px solid #8b7a9e;
}
.block.marketing-hero .cta_button.secondary:hover {
  opacity: 0.95;
}
.block.marketing-hero .product-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.block.marketing-hero .highlight {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-right: 50px;
  padding-left: 50px;
  border-right: 1px solid rgba(168, 85, 247, 0.3);
}
.block.marketing-hero .highlight:first-child {
  padding-left: 0;
  border-left: none;
}
.block.marketing-hero .highlight:last-child {
  padding-right: 0;
  border-right: none;
}
.block.marketing-hero .highlight .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #AD46FF 0%, #8B6CC7 100%);
  border-radius: 999px;
  padding: 0.5rem;
  box-sizing: border-box;
  color: #ffffff;
}
.block.marketing-hero .highlight .icon img,
.block.marketing-hero .highlight .icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.block.marketing-hero .highlight .info {
  text-align: left;
}
.block.marketing-hero .highlight .info .value {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.block.marketing-hero .highlight .info .label {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #e0b3e8;
}
.block.marketing-hero-page {
  position: relative;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  box-sizing: border-box;
}
.block.marketing-hero-page > * {
  position: relative;
  z-index: 1;
}
.block.marketing-hero-page .page-hero__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #AD46FF 0%, #8B6CC7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.block.marketing-hero-page .page-hero__icon svg {
  width: 28px;
  height: 28px;
}
.block.marketing-hero-page .page-hero__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.block.marketing-hero-page .page-hero__title--no-uppercase {
  text-transform: none;
}
.block.marketing-hero-page .page-hero__subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 2rem;
  max-width: 640px;
}
.block.marketing-hero-page .page-hero__subtitle-wrap--accent {
  margin-top: -0.5rem;
  margin-bottom: 0;
}
.block.marketing-hero-page .page-hero__subtitle-wrap--accent .page-hero__subtitle {
  color: #c084f5;
  font-size: 0.9375rem;
  text-transform: none;
  letter-spacing: 0.02em;
}
.block.marketing-hero-page .page-hero__subtitle-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: #af91b8;
  opacity: 0.8;
}
.block.marketing-hero-page .page-hero__subtitle {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #af91b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.block.marketing-hero-page .page-hero__body {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 65%;
  opacity: 0.8;
  text-wrap: pretty;
}
.block.marketing-hero-page .page-hero__body + .page-hero__body {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .block.marketing-hero-page .page-hero__body {
    max-width: 100%;
  }
}
.block.marketing-hero-page .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
}
.block.marketing-hero-page .cta_button .icon {
  width: 1rem;
  height: 1rem;
  display: block;
}
.block.marketing-hero-page .cta_button.main {
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  border: none;
}
.block.marketing-hero-page .cta_button.main:hover {
  opacity: 0.95;
}
.block.marketing-hero-page .cta_button.secondary {
  color: #ffffff;
  background: #2d1538;
  border: 1px solid #8b7a9e;
}
.block.marketing-hero-page .cta_button.secondary:hover {
  opacity: 0.95;
}
.sobre-nosotros .block.contact-hero .contact-hero__title {
  text-wrap: balance;
}
.sobre-nosotros .block.contact-hero .contact-hero__subtitle {
  text-wrap: balance;
}
.sobre-nosotros .block.marketing-cols .col-card--feature .col-card__header {
  align-items: center;
}
.sobre-nosotros .block.marketing-cols .col-card--feature .col-card__header .col-card__title {
  font-size: 2rem;
}
.sobre-nosotros .block.marketing-cols strong {
  color: #a855f7;
  font-weight: 700;
}
.marketing-split-block__article .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.3) 0%, rgba(139, 108, 199, 0.2) 100%);
  border: 1px solid #af91b8;
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #af91b8;
}
.marketing-split-block__article .tag .icon {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}
.block-header {
  text-align: center;
  margin-bottom: 3rem;
}
.block-header h2 {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.block-header h2 .highlight {
  background: linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.block-header p {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.block.marketing-pricing {
  padding: 4rem 0 5rem;
}
.block.marketing-pricing .block.pricing_table {
  margin-bottom: 3rem;
}
.block.marketing-pricing .block.pricing_table .tiers_list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .block.marketing-pricing .block.pricing_table .tiers_list {
    flex-direction: column;
    align-items: center;
  }
}
.block.marketing-pricing .block.pricing_table .tier_card {
  flex: 1;
  max-width: 100%;
  padding: 30px 30px 50px;
  border-radius: 59px;
  min-height: 500px;
  background: #251830;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(#251830, #251830) padding-box, linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%) border-box;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_badge_popular {
  display: inline-block;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #F6339A;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin: 0 auto 1rem;
  flex-shrink: 0;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  line-height: 1em;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_name h3 {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #ffffff;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_name .tier_description {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_name .tier_description p {
  margin: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_price_block {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .pricing-vat-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_price {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_price .currency {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_price .price {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_price .period {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_cta {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_cta .cta_button.tier_cta_button {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  color: #222222;
  border: none;
  border-radius: 99px;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_cta .cta_button.tier_cta_button:hover {
  opacity: 0.95;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_features {
  text-align: left;
  flex: 1;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_features ul li {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.5rem;
  position: relative;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c084f5;
  font-weight: 700;
}
.block.marketing-pricing .block.pricing_table .tier_card .tier_features ul li:last-child {
  margin-bottom: 0;
}
.block.marketing-pricing .pricing-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.block.marketing-pricing .pricing-extra {
  flex: 1;
  min-width: 200px;
  background: #2d1538;
  border: 1px solid #AD46FF66;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.block.marketing-pricing .pricing-extra .pricing-extra_value {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
.block.marketing-pricing .pricing-extra .pricing-extra_label {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
.block.marketing-cols {
  padding: 2rem 0;
}
.block.marketing-cols .cols-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.block.marketing-cols.two-cols .cols-grid {
  grid-template-columns: repeat(2, 1fr);
}
.block.marketing-cols.three-cols .cols-grid {
  grid-template-columns: repeat(3, 1fr);
}
.block.marketing-cols.three-cols--steps .cols-grid {
  gap: 4rem;
  max-width: 1200px;
}
.block.marketing-cols.three-cols--steps .col-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  position: relative;
}
.block.marketing-cols.three-cols--steps .col-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23AD46FF' d='M0 0v24l24-12z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.block.marketing-cols.three-cols--steps .col-card__header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.35rem;
}
.block.marketing-cols.three-cols--steps .step-num {
  font-size: 106px;
  font-weight: 100;
  color: #c084f5;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.85em;
  margin: 0;
}
.block.marketing-cols.three-cols--steps .step-icon {
  width: 28px;
  height: 40px;
  background: none;
  color: #c084f5;
}
.block.marketing-cols.three-cols--steps .step-icon svg {
  width: 28px;
  height: 28px;
}
.block.marketing-cols.three-cols--steps .col-card__header-text {
  flex-basis: 100%;
}
.block.marketing-cols.three-cols--steps .step-title {
  font-size: 1.25rem;
  margin: 0;
  text-wrap: balance;
}
.block.marketing-cols.one-col .cols-grid {
  grid-template-columns: 1fr;
}
.block.marketing-cols.one-col.faq-cta h3.col-card__title {
  font-size: 32px;
}
.block.marketing-cols.one-col .col-card--centered {
  padding: 3rem 2.5rem;
  gap: 1.25rem;
}
.block.marketing-cols.one-col .col-card--centered .col-card__header {
  margin-bottom: 0;
}
.block.marketing-cols.one-col .col-card--centered .col-card__title {
  font-size: 42px;
  line-height: 1.2em;
  margin: 0;
}
.block.marketing-cols.one-col .col-card--centered .col-card__desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 790px;
  text-align: center;
}
.block.marketing-cols.one-col .col-card--centered .col-card__stats {
  margin-top: 0.75rem;
  padding-top: 1.75rem;
  gap: 0;
}
.block.marketing-cols.one-col .col-card--centered .col-card__stats .col-card__stat {
  flex: none;
  padding: 0;
  border-right: 1px solid rgba(173, 70, 255, 0.28);
  padding: 0 70px;
}
.block.marketing-cols.one-col .col-card--centered .col-card__stats .col-card__stat:last-child {
  border-right: none;
}
.block.marketing-cols .col-card {
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.2) 0%, rgba(139, 108, 199, 0.1) 100%);
  border: 1px solid #AD46FF66;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.block.marketing-cols .col-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.block.marketing-cols .col-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #AD46FF 0%, #8B6CC7 100%);
  border-radius: 12px;
  color: #ffffff;
}
.block.marketing-cols .col-card__icon img,
.block.marketing-cols .col-card__icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.block.marketing-cols .col-card__icon svg {
  flex-shrink: 0;
}
.block.marketing-cols .col-card__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.block.marketing-cols .col-card--feature {
  align-items: stretch;
  text-align: left;
}
.block.marketing-cols .col-card--feature .col-card__header {
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  gap: 1rem;
}
.block.marketing-cols .col-card--feature.col-card--icon-center .col-card__header {
  align-items: center;
}
.block.marketing-cols .col-card--feature.col-card--center-align {
  text-align: center;
  align-items: center;
}
.block.marketing-cols .col-card--feature.col-card--center-align .col-card__header {
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.block.marketing-cols .col-card--feature.col-card--center-align .col-card__header-text {
  align-items: center;
  text-align: center;
}
.block.marketing-cols .col-card--feature .col-card__header-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.block.marketing-cols .col-card--feature .col-card__title {
  font-size: 1.25rem;
  margin: 0;
}
.block.marketing-cols .col-card--feature .col-card__tagline {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #af91b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1.3;
}
.block.marketing-cols .col-card--feature .col-card__desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #e0b3e8;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  opacity: 0.95;
}
.block.marketing-cols .col-card--feature .col-card__cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.block.marketing-cols .col-card--feature .col-card__cta.full-width {
  width: 100%;
  text-align: center;
}
.block.marketing-cols .col-card--feature .col-card__cta:hover {
  opacity: 0.95;
}
.block.marketing-cols.steps-list .cols-grid {
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.block.marketing-cols .col-card--step-row {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 35px;
}
.block.marketing-cols .col-card--step-row .step-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 20px;
  border-radius: 99px;
  background: linear-gradient(180deg, #AD46FF 0%, #8B6CC7 100%);
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
.block.marketing-cols .col-card--step-row .step-icon-sm {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084f5;
}
.block.marketing-cols .col-card--step-row .step-icon-sm svg {
  width: 32px;
  height: 32px;
}
.block.marketing-cols .col-card--step-row .col-card__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-size: 32px;
  line-height: 1.2em;
}
.block.marketing-cols .col-card__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.block.marketing-cols .col-card__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.block.marketing-cols .col-card__feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #6b21a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 1px;
}
.block.marketing-cols .col-card__feature-icon svg {
  width: 16px;
  height: 16px;
}
.block.marketing-cols .col-card__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.block.marketing-cols .col-card__feature-title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.block.marketing-cols .col-card__feature-desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: #af91b8;
  line-height: 1.5;
}
.block.marketing-cols .col-card__quote {
  margin: 0;
  padding: 0.875rem 1.125rem;
  background: rgba(173, 70, 255, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(173, 70, 255, 0.18);
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #af91b8;
  line-height: 1.6;
}
.block.marketing-cols .col-card--pillar {
  background: none;
  border: none;
  border-radius: 0;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  gap: 1.25rem;
}
.block.marketing-cols .col-card--pillar .col-card__icon-pillar {
  width: 88px;
  height: 88px;
  background: rgba(18, 6, 32, 0.75);
  background: linear-gradient(180deg, rgba(173, 70, 255, 0.25) 0%, rgba(139, 108, 199, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.block.marketing-cols .col-card--pillar .col-card__icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2.5px solid #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084f5;
}
.block.marketing-cols .col-card--pillar .col-card__icon-ring svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.block.marketing-cols .col-card--pillar .col-card__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c084f5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}
.block.marketing-cols .col-card--pillar .col-card__desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}
.block.marketing-cols .col-card--prose {
  align-items: stretch;
  text-align: left;
}
.block.marketing-cols .col-card--prose .col-card__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.block.marketing-cols .col-card--prose .col-card__desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #af91b8;
  line-height: 1.55;
  margin: 0;
  opacity: 0.95;
}
.block.marketing-cols .col-card--prose .col-card__desc + .col-card__desc {
  margin-top: 0.75rem;
}
.block.marketing-cols .col-card--prose .col-card__cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.block.marketing-cols .col-card--prose .col-card__cta:hover {
  opacity: 0.95;
}
.block.marketing-cols .col-card--prose.col-card--center-align {
  text-align: center;
  align-items: center;
}
.block.marketing-cols .col-card--prose.col-card--center-align .col-card__cta {
  align-self: center;
}
.block.marketing-cols .col-card--centered {
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  gap: 0;
  padding: 2.5rem 1.75rem;
}
.block.marketing-cols .col-card--centered .col-card__header {
  flex-direction: column;
  align-self: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.block.marketing-cols .col-card--centered .col-card__icon--circle {
  border-radius: 50%;
}
.block.marketing-cols .col-card--centered .col-card__title {
  margin: 0;
  font-size: 52px;
}
.block.marketing-cols .col-card--centered .col-card__subtitle {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 43px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.block.marketing-cols .col-card--centered .highlight {
  background: linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1.3;
}
.block.marketing-cols .col-card--centered .col-card__footer {
  border-top: none;
  padding-top: 10px;
  font-size: 22px;
  max-width: 640px;
}
.block.marketing-cols .col-card--centered .col-card__cta {
  display: inline-block;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}
.block.marketing-cols .col-card--centered .col-card__cta:hover {
  opacity: 0.95;
}
.block.marketing-cols .col-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}
.block.marketing-cols .col-card__list li {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.75em;
  position: relative;
}
.block.marketing-cols .col-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  border: 1.5px solid #a855f7;
  box-sizing: border-box;
}
.block.marketing-cols .col-card__list li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #a855f7;
  border-bottom: 1.5px solid #a855f7;
  box-sizing: border-box;
}
.block.marketing-cols .col-card__footer {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  color: #af91b8;
  border-top: 1px solid #AD46FF66;
  padding-top: 10px;
}
.block.marketing-cols .col-card__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 560px) {
  .block.marketing-cols .col-card__stats {
    flex-direction: column;
    gap: 2rem!important;
  }
}
.block.marketing-cols .col-card__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.25rem;
}
.block.marketing-cols .col-card__stat + .block.marketing-cols .col-card__stat {
  border-left: 1px solid rgba(173, 70, 255, 0.28);
}
@media (max-width: 560px) {
  .block.marketing-cols .col-card__stat {
    flex: none;
    width: 100%;
    padding: 1rem 0;
  }
  .block.marketing-cols .col-card__stat + .block.marketing-cols .col-card__stat {
    border-left: none;
    border-top: 1px solid rgba(173, 70, 255, 0.28);
  }
}
.block.marketing-cols .col-card__stat-number {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #a855f7;
}
.block.marketing-cols .col-card__stat-label {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.block.marketing-cols.hero h1 {
  font-size: 48px!important;
}
.block.marketing-cols.hero .col-card__tagline {
  margin-top: 20px;
  margin-bottom: 10px;
}
.block.marketing-cols.hero .col-card__tagline:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #af91b8;
  display: inline-block;
  margin: 0px 10px 4px 0;
}
@media (max-width: 768px) {
  .block.marketing-cols.two-cols .cols-grid,
  .block.marketing-cols.three-cols .cols-grid {
    grid-template-columns: 1fr;
  }
  .block.marketing-cols.three-cols--steps .col-card:not(:last-child)::after {
    display: none;
  }
}
.block.marketing-cols.marketing-split-block {
  padding: 2.5rem 0;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #AD46FF66;
  border-radius: 12px;
  overflow: hidden;
  background: #251830;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article {
  border: none;
  background: transparent;
  padding: 2.5rem 2.5rem;
  align-items: flex-start;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .tag {
  align-self: flex-start;
  margin-bottom: 1.25rem;
  width: auto;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .col-card__title {
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .marketing-split-block__copy {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .col-card__list {
  margin-top: 0;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .col-card__list .marketing-split-block__list-title {
  display: block;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .col-card__list .marketing-split-block__list-desc {
  display: block;
  margin-top: 0.25rem;
  line-height: 1.4;
  color: #af91b8;
}
.block.marketing-cols.marketing-split-block .marketing-split-block__article .col-card__cta {
  white-space: nowrap;
  display: flex;
}
@media (max-width: 768px) {
  .block.marketing-cols.marketing-split-block .marketing-split-block__grid {
    display: flex;
    flex-direction: column;
  }
  .block.marketing-cols.marketing-split-block .marketing-split-block__grid .marketing-split-block__media {
    min-height: 0;
    aspect-ratio: 9 / 10;
  }
  .block.marketing-cols.marketing-split-block .marketing-split-block__grid .marketing-split-block__article {
    padding: 1.5rem 1.5rem;
  }
}
.highlight {
  background: linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.block.contact-hero {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}
.block.contact-hero .contact-hero__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.block.contact-hero .contact-hero__title .highlight {
  background: linear-gradient(180deg, #AD46FF 0%, #C46AFF 50%, #F6339A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.block.contact-hero .contact-hero__subtitle {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 900px) {
  .block.contact-hero {
    padding: 2rem 0;
  }
}
.block.marketing-contact {
  padding: 0 1.5rem 4rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .block.marketing-contact {
    padding: 0;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-grid .contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}
.contact-panel {
  background: #2d1538;
  border: 1px solid rgba(173, 70, 255, 0.25);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.contact-panel__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.25rem;
}
.contact-panel--form .contact-panel__title {
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-form__row--two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.35rem 1.25rem;
}
.contact-form__row--two-cols .contact-form__label:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.contact-form__row--two-cols .contact-form__input:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.contact-form__row--two-cols .contact-form__label:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}
.contact-form__row--two-cols .contact-form__input:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.contact-form__label {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-form__input {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  color: #ffffff;
  background: #251830;
  border: 1px solid rgba(173, 70, 255, 0.4);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
.contact-form__input::placeholder {
  color: #af91b8;
  opacity: 0.8;
}
.contact-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c084f5' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7 0%, #6b21a8 100%);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form__submit:hover {
  opacity: 0.95;
}
.contact-form__submit-icon {
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .contact-form .contact-form__row--two-cols {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .contact-form .contact-form__row--two-cols .contact-form__label:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .contact-form .contact-form__row--two-cols .contact-form__input:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-form .contact-form__row--two-cols .contact-form__label:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .contact-form .contact-form__row--two-cols .contact-form__input:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
@media (max-width: 900px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}
.contact-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #AD46FF 0%, #F6339A 100%);
  color: #ffffff;
  margin-top: -2px;
}
.contact-list__icon svg {
  width: 20px;
  height: 20px;
}
.contact-list__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-list__label {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-list__value {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  color: #af91b8;
}
.contact-other {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.contact-other:hover {
  background: rgba(173, 70, 255, 0.1);
}
.contact-other__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #AD46FF 0%, #F6339A 100%);
  color: #ffffff;
}
.contact-other__icon svg {
  width: 20px;
  height: 20px;
}
.contact-other__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-other__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-other__desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: #af91b8;
}
.block.marketing-faq {
  padding: 4rem 0;
}
.block.marketing-faq .faq-header.block-header {
  margin-bottom: 2.5rem;
}
.block.marketing-faq .faq-header__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #AD46FF 0%, #8B6CC7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.block.marketing-faq .faq-header__icon svg {
  width: 28px;
  height: 28px;
}
.block.marketing-faq .faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block.marketing-faq .faq-item {
  background: #2d1538;
  border: 1px solid #8b7a9e;
  border-radius: 12px;
  overflow: hidden;
}
.block.marketing-faq .faq-item__question {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 25px 20px 20px;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.block.marketing-faq .faq-item__question::-webkit-details-marker {
  display: none;
}
.block.marketing-faq .faq-item__question::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid #c084f5;
  border-bottom: 2px solid #c084f5;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.2s ease;
}
.block.marketing-faq .faq-item[open] .faq-item__question::after {
  transform: rotate(-135deg);
}
.block.marketing-faq .faq-item__answer-wrapper {
  overflow: hidden;
  transition: height 0.28s ease;
}
.block.marketing-faq .faq-item__answer {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  padding: 0 1.25rem 1.25rem 20px;
  opacity: 0.8;
}
.marketing-features {
  padding: 5rem 0;
}
.marketing-features .features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.marketing-features .features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.marketing-features .features-header p {
  font-size: 1.25rem;
  color: #6b7280;
}
.marketing-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.marketing-features .features-grid .feature-card {
  text-align: center;
  padding: 2rem;
}
.marketing-features .features-grid .feature-card .feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.marketing-features .features-grid .feature-card .feature-icon.blue {
  background: #dbeafe;
}
.marketing-features .features-grid .feature-card .feature-icon.green {
  background: #d1fae5;
}
.marketing-features .features-grid .feature-card .feature-icon.purple {
  background: #e9d5ff;
}
.marketing-features .features-grid .feature-card .feature-icon svg {
  width: 2rem;
  height: 2rem;
}
.marketing-features .features-grid .feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.marketing-features .features-grid .feature-card p {
  color: #6b7280;
  line-height: 1.6;
}
.marketing-demo {
  background: #f9fafb;
  padding: 5rem 0;
}
.marketing-demo .demo-header {
  text-align: center;
  margin-bottom: 3rem;
}
.marketing-demo .demo-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.marketing-demo .demo-header p {
  font-size: 1.25rem;
  color: #6b7280;
}
.marketing-demo .demo-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.marketing-demo .demo-container .demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .marketing-demo .demo-container .demo-grid {
    grid-template-columns: 1fr;
  }
}
.marketing-demo .demo-container .demo-grid .demo-section h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.marketing-demo .demo-container .demo-grid .demo-section .demo-text {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  line-height: 1.5;
}
.marketing-demo .demo-container .demo-grid .demo-section .demo-keywords {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.marketing-demo .demo-container .demo-grid .demo-section .demo-keywords strong {
  color: #111827;
}
.marketing-demo .demo-container .demo-grid .demo-result .demo-text {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.marketing-cta {
  background: #3b82f6;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.marketing-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.marketing-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.marketing-cta .cta-button {
  background: white;
  color: #3b82f6;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.marketing-cta .cta-button:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.marketing-footer {
  background: rgba(43, 27, 76, 0.4);
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}
.marketing-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(180px, auto));
  gap: 2.5rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .marketing-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .marketing-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.marketing-footer .footer-section .footer-section__title {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}
.marketing-footer .footer-section .footer-section__desc {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}
.marketing-footer .footer-section .footer-section__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.marketing-footer .footer-section .footer-section__links li {
  margin-bottom: 0.5rem;
}
.marketing-footer .footer-section .footer-section__links a {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0.8;
}
.marketing-footer .footer-section .footer-section__links a:hover {
  color: #ffffff;
  opacity: 1;
}
.marketing-footer .footer-section--brand {
  grid-column: span 1;
  max-width: 280px;
}
.marketing-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.marketing-footer .footer-bottom .footer-bottom__copy {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.marketing-footer .footer-bottom .footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.marketing-footer .footer-bottom .footer-bottom__legal a {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.marketing-footer .footer-bottom .footer-bottom__legal a:hover {
  color: #ffffff;
}
.marketing-cta-banner {
  text-align: center;
  padding: 0.5rem 1.5rem 4.5rem;
}
.marketing-cta-banner__text {
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2rem;
}
.marketing-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #8b2cf5 0%, #a855f7 100%);
  color: #fff;
  font-family: Satoshi, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 32px rgba(147, 51, 234, 0.65), 0 0 64px rgba(147, 51, 234, 0.3);
  transition: box-shadow 220ms, transform 220ms;
}
.marketing-cta-banner__btn:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.8), 0 0 80px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}
.marketing-cta-banner__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
