/* ============================================================================
   Sparkle Cloud Dark — theme stylesheet (standalone, exportable)
   ----------------------------------------------------------------------------
   Plain compiled CSS for every custom class this theme's components use.
   @apply has been resolved to real declarations, so this file works on its own
   (no Tailwind build required to use these classes). Tailwind UTILITY classes
   used directly in markup (flex, grid-cols-3, ...) are intentionally NOT here —
   provide those via the host project's Tailwind, or your own utilities.

   Regenerate from source:
     printf '@reference "tailwindcss";\\n' > /tmp/in.css
     cat assets/css/theme.source.css >> /tmp/in.css   # run from this theme dir
     npx @tailwindcss/cli -i /tmp/in.css -o assets/css/theme.css
   (NOTE: `php artisan theme:compile-css --force` will overwrite this file.)
   ============================================================================ */

/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties;
[x-cloak] {
  display: none !important;
}
body {
  background-color: var(--sc-body-background, #101010) !important;
  color: #ffffff;
}
[data-component] {
  position: relative;
  z-index: 1;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #101010;
}
.page-bg {
  position: relative;
  background-color: #101010;
  z-index: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
main > section {
  position: relative;
  z-index: 1;
}
.page-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 78vh;
  background-image: url("/img/footer_ep.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: 0;
  pointer-events: none;
}
.page-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 78vh;
  background: linear-gradient( to bottom, rgba(11,11,14,0.15) 0%, rgba(11,11,14,0.45) 45%, rgba(11,11,14,0.85) 100% );
  z-index: 1;
  pointer-events: none;
}
.page-bg > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .mobile-nav {
    display: none;
    transform: translateY(-6px);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
    pointer-events: none;
    z-index: 60;
  }
  #nav-toggle:checked ~ .mobile-nav {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav a {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.32px;
    vertical-align: middle;
  }
  header .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background-color: #101010;
  }
}
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
  header, section, footer {
    overflow-x: hidden;
  }
  .container-hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@layer components {
  .nav-pill {
    display: flex;
    height: 58px;
    width: auto;
    align-items: center;
    justify-content: space-between;
    column-gap: calc(var(--spacing, 0.25rem) * 2);
    border-radius: 30px;
    background-color: #242424;
    padding-inline: 38px;
    font-size: 13px;
    --tw-font-weight: var(--font-weight-medium, 500);
    font-weight: var(--font-weight-medium, 500);
    color: #d4d6dc;
    gap: 16px;
  }
  .nav-pill a, .nav-pill .nav-pill__link, .nav-pill .nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing, 0.25rem) * 1.5);
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
    transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
    --tw-duration: 200ms;
    transition-duration: 200ms;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 120%;
    vertical-align: middle;
  }
  .nav-pill > .nav-pill__link:hover, .nav-pill > .nav-dropdown > .nav-dropdown__trigger:hover {
    color: #ffffff;
  }
  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-dropdown__chevron {
    transition: transform 200ms ease;
  }
  .nav-dropdown:hover .nav-dropdown__chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -14px;
    padding-top: 14px;
    z-index: 1200;
  }
  .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu {
    display: block;
  }
  .nav-dropdown__menu-inner {
    min-width: 260px;
    padding: 8px 0;
    border-radius: 10px;
    background: #ffffff;
    color: #0b0b0e;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .nav-dropdown__menu-inner > a, .nav-dropdown__menu-inner > div {
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 100%;
    color: #0b0b0e;
    transition: background-color 160ms ease, color 160ms ease;
    letter-spacing: -0.32px;
  }
  .nav-dropdown__menu-inner > .nav-submenu > .nav-submenu__trigger {
    padding: 8px 16px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 100%;
    color: #0b0b0e;
    transition: background-color 160ms ease, color 160ms ease;
    letter-spacing: -0.32px;
  }
  .nav-dropdown__menu-inner > a:hover, .nav-dropdown__menu-inner > a:focus-visible, .nav-dropdown__menu-inner > div:hover, .nav-dropdown__menu-inner > .nav-submenu > .nav-submenu__trigger:hover {
    background: #f3f4f6;
  }
  .nav-submenu {
    position: relative;
  }
  .nav-submenu__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-submenu__chevron {
    transition: transform 200ms ease;
  }
  .nav-submenu:hover .nav-submenu__chevron {
    transform: rotate(-90deg);
  }
  .nav-submenu__menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    padding-left: 8px;
    z-index: 1201;
  }
  .nav-submenu:hover .nav-submenu__menu {
    display: block;
  }
  .nav-submenu__menu-inner {
    min-width: 220px;
    padding: 8px 0;
    border-radius: 10px;
    background: #ffffff;
    color: #0b0b0e;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .nav-submenu__menu-inner a {
    display: block;
    padding: 6px 16px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 100%;
    color: #0b0b0e;
    transition: background-color 160ms ease;
    letter-spacing: -0.32px;
  }
  .nav-submenu__menu-inner a:hover {
    background: #f3f4f6;
  }
  .hero-content {
    position: relative;
    z-index: 600;
    overflow: visible;
    background: transparent;
    pointer-events: auto;
    padding: 4px 8px;
  }
  .hero-content::before, .hero-content::after {
    content: "";
    background: black;
    filter: blur(100px);
  }
  @media (max-width: 420px) {
    .hero-content::after {
      width: 120%;
      height: 180px;
      top: 48%;
      filter: blur(28px);
      opacity: 0.95;
    }
  }
  @media (max-width: 420px) {
    .hero-content::before {
      width: 180%;
      height: 260px;
      top: 46%;
      filter: blur(36px);
      opacity: 0;
      position: absolute;
    }
  }
  .logo-marquee {
    overflow: hidden;
    width: 100%;
  }
  .logo-marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 120px;
    width: max-content;
    animation: logo-marquee 18s linear infinite;
    will-change: transform;
  }
  .logo-marquee__logo {
    height: 40px;
    flex: 0 0 auto;
  }
  .timeline-dot.is-active {
    background: #b44bd0;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(180, 75, 208, 0.2);
  }
  .process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 0;
  }
  @media (min-width: 768px) {
    .process-steps {
      padding-left: 36px;
    }
  }
  .process-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    align-items: start;
  }
  .process-step__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@layer components {
  .footer {
    margin: auto;
    width: 95%;
    margin-top: 15px;
    margin-bottom: 15px;
    background: #000000;
    border-radius: 10px;
    padding: 28px 32px;
    color: #ffffff;
  }
  @media (max-width: 768px) {
    .footer {
      width: 100%;
    }
    .page-bg {
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  .footer__top, .footer__mid, .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer__logo {
    height: 42px;
    width: 42px;
  }
  .footer__nav {
    display: flex;
    gap: 28px;
  }
  .footer__nav a {
    color: #d2d5dd;
    font-size: 14px;
    font-weight: 600;
  }
  .footer__divider {
    margin: 18px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
  .footer__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
  }
  .footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
  }
  .footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer__social img {
    width: 18px;
    height: 18px;
  }
  .footer__links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
  }
  .footer__links a {
    color: #d2d5dd;
  }
  .footer__highlight {
    color: #b44bd0;
    font-weight: 700;
  }
  .footer__copyright {
    font-size: 14px;
    font-weight: 600;
    color: #d2d5dd;
  }
}
.testimonial-card {
  position: relative;
  border-radius: 10px;
  padding: 32px 38px;
  background: rgba(17, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 493.39px;
  min-width: 493.39px;
  height: 296.59px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  letter-spacing: 1.5px;
  font-weight: 200px;
}
.testimonial-marquee {
  overflow: hidden;
  padding: 4px;
}
.testimonial-marquee__track {
  display: inline-flex;
  gap: 72px;
  width: max-content;
  animation: testimonial-marquee 45s linear infinite;
}
@media (max-width: 1024px) {
  .testimonial-marquee__track {
    animation-duration: 32s;
  }
}
@media (max-width: 640px) {
  .testimonial-marquee__track {
    animation-duration: 24s;
  }
  .testimonial-card {
    min-width: 260px;
    width: 260px;
    height: auto;
  }
}
@keyframes testimonial-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.tab-panel-animate {
  animation: tab-panel-rise 320ms ease-out;
}
@keyframes tab-panel-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-scroll {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.testimonial-track {
  display: flex;
  flex-direction: column;
  animation: testimonial-loop-up 18s linear infinite;
  will-change: transform;
}
.testimonial-track > .testimonial-stack {
  flex: 0 0 auto;
}
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
@keyframes testimonial-loop-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.testimonial-scroll-horizontal {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.testimonial-track-horizontal {
  display: flex;
  animation: testimonial-loop-left 20s linear infinite;
  will-change: transform;
}
.testimonial-track-horizontal > .testimonial-stack-horizontal {
  flex: 0 0 auto;
}
.testimonial-stack-horizontal {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: 16px;
}
@keyframes testimonial-loop-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@layer components {
  .password-toggle.is-active {
    color: rgba(255, 255, 255, 0.95);
  }
}
@layer components {
  .pricing-hero {
    position: relative;
    padding: 120px 24px 90px;
    text-align: center;
    overflow: hidden;
  }
  .pricing-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
  }
  .pricing-hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #f7f7fb;
  }
  .pricing-hero__subtitle {
    margin-top: 12px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
  }
  .pricing-toggle {
    margin: 24px auto 0;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .pricing-toggle__btn {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    color: #c7cad2;
    background: transparent;
  }
  .pricing-toggle__btn--active {
    background: rgba(255, 255, 255);
    color: #000;
  }
  .pricing-orb {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.85;
  }
  .pricing-orb--purple {
    background: radial-gradient( circle, rgba(204, 55, 173, 0.7) 0%, rgba(115, 31, 133, 0.4) 45%, rgba(0, 0, 0, 0) 70% );
    top: 140px;
  }
  .pricing-orb--blue {
    background: radial-gradient( circle, rgba(59, 124, 255, 0.65) 0%, rgba(39, 80, 190, 0.35) 45%, rgba(0, 0, 0, 0) 70% );
    top: 380px;
  }
  .pricing-cards {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card {
    background: rgba(24, 24, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
  }
  .pricing-card--highlight {
    background: linear-gradient( 160deg, rgba(62, 24, 55, 0.9), rgba(16, 18, 30, 0.9) );
    border-color: rgba(255, 255, 255, 0.18);
  }
  .pricing-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #f4f5f9;
    min-height: 2.8em;
  }
  .pricing-card__desc {
    margin-top: 6px;
    font-size: 11px;
    color: #a8adb8;
  }
  .pricing-card__price {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .pricing-card__amount {
    font-size: 26px;
    font-weight: 600;
  }
  .pricing-card__period {
    font-size: 11px;
    color: #c7cad2;
  }
  .pricing-card__note {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.4;
    min-height: 1.4em;
    color: #9aa0ab;
  }
  .pricing-card__list {
    margin-top: auto;
    padding-top: 16px;
    display: grid;
    gap: 8px;
    font-size: 11px;
    color: #c9cdd6;
  }
  .pricing-card__list li::before {
    content: "✓";
    margin-right: 6px;
    color: #ffffff;
  }
  .pricing-card__features {
    margin-top: 20px;
    padding-top: 16px;
    line-height: 1.5;
    color: #c9cdd6;
    text-align: left;
  }
  .pricing-card__features ul, .pricing-card__features ol {
    margin: 0 0 8px;
    padding-left: 1.25em;
  }
  .pricing-card__features ul {
    list-style: disc;
  }
  .pricing-card__features ol {
    list-style: decimal;
  }
  .pricing-card__features li {
    margin-bottom: 8px;
  }
  .pricing-card__features p {
    margin: 0 0 8px;
  }
  .pricing-card__features h1, .pricing-card__features h2, .pricing-card__features h3, .pricing-card__features h4, .pricing-card__features h5, .pricing-card__features h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    margin: 12px 0 6px;
  }
  .pricing-card__features h1 {
    font-size: 1.6em;
  }
  .pricing-card__features h2 {
    font-size: 1.4em;
  }
  .pricing-card__features h3 {
    font-size: 1.2em;
  }
  .pricing-card__features h4 {
    font-size: 1.1em;
  }
  .pricing-card__features h5, .pricing-card__features h6 {
    font-size: 1em;
  }
  .pricing-card__features strong, .pricing-card__features b {
    font-weight: 700;
    color: #ffffff;
  }
  .pricing-card__features em, .pricing-card__features i {
    font-style: italic;
  }
  .pricing-card__features u {
    text-decoration: underline;
  }
  .pricing-card__features s, .pricing-card__features strike, .pricing-card__features del {
    text-decoration: line-through;
  }
  .pricing-card__features blockquote {
    margin: 8px 0;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
    color: #aeb3bd;
  }
  .pricing-card__features a {
    color: #ffffff;
    text-decoration: underline;
  }
  .compare {
    position: relative;
    padding: 80px 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .compare-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 500;
  }
  .compare-header p {
    margin-top: 8px;
    font-size: 13px;
    color: #b7bbc6;
  }
  .compare-table {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    align-items: center;
    padding: 14px 18px;
    font-size: 12px;
    color: #d5d8e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .compare-row span:first-child {
    text-align: left;
    font-weight: 500;
  }
  .compare-row--head {
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9da3b0;
  }
  .compare-row--cta {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: none;
  }
  .compare-row button {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    color: #fff;
  }
  .compare-orb {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: 0.85;
    z-index: 0;
  }
  .compare-orb--left {
    left: -220px;
    bottom: -120px;
    background: radial-gradient( circle, rgba(186, 52, 156, 0.7) 0%, rgba(112, 20, 120, 0.3) 50%, rgba(0, 0, 0, 0) 70% );
  }
  .compare-orb--right {
    right: -220px;
    bottom: -220px;
    background: radial-gradient( circle, rgba(46, 120, 255, 0.7) 0%, rgba(23, 63, 160, 0.3) 50%, rgba(0, 0, 0, 0) 70% );
  }
  .pricing-help {
    padding: 60px 24px 80px;
    text-align: center;
  }
  .pricing-help h3 {
    font-size: 22px;
    font-weight: 600;
  }
  .pricing-help__cta {
    margin-top: 20px;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 1.2px 1.2px 0px rgba(255, 255, 255, 0.2), -1.2px -1.2px 0px rgba(255, 255, 255, 0.2);
  }
  .pricing-help__btn {
    border-radius: 999px;
    color: #e5e7ee;
    font-size: 12px;
    padding: 10px 18px;
  }
  .pricing-help__btn--primary {
    background: rgba(255, 255, 255);
    color: black;
  }
  @media (max-width: 1024px) {
    .compare-row {
      grid-template-columns: 1fr repeat(2, 1fr);
      row-gap: 8px;
    }
    .compare-row span:nth-child(n + 4) {
      display: none;
    }
  }
}
@layer components {
  .pricing-faq__item.is-open .pricing-faq__answer {
    display: block;
  }
}
@layer components {
  .contact-hero {
    padding: 40px 24px 40px;
    text-align: center;
  }
  .contact-hero__toggle {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 28px;
  }
  .contact-hero__pill {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    color: #ffffff;
  }
  .contact-hero__pill--active {
    background: rgba(255, 255, 255);
    color: #000;
  }
  .contact-hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 500;
    color: #f7f7fb;
  }
  .contact-grid {
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 20px;
  }
  .contact-card {
    background: rgba(24, 24, 28, 0.92);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  }
  .contact-card--info {
    background: linear-gradient( 160deg, rgba(61, 24, 55, 0.9), rgba(20, 24, 40, 0.9) );
  }
  .contact-card__lead {
    font-size: 12px;
    line-height: 1.6;
    color: #d8dbe2;
    margin-bottom: 12px;
  }
  .contact-info {
    margin-top: 18px;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .contact-info__row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
  }
  .contact-address {
    margin-top: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    display: grid;
    gap: 12px;
  }
  .contact-address__block h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .contact-address__block p {
    font-size: 11px;
    color: #c7cad2;
  }
  .contact-card--form h2 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 18px;
    color: #f4f5f9;
  }
  .contact-card--form {
    --sf-input-bg: rgba(255, 255, 255, 0.06);
    --sf-input-border: rgba(255, 255, 255, 0.12);
    --sf-input-text: #f5f6fa;
    --sf-label: #c7cad2;
    --sf-accent: #c7cad2;
    --sf-btn-bg: rgba(255, 255, 255, 0);
    --sf-btn-text: #ffffff;
    --sf-btn-radius: 999px;
  }
  .contact-card--form .sf-btn {
    border: none;
    width: auto;
    background: transparent !important;
  }
  .contact-card--form .sf-form-grid {
    gap: 14px;
  }
  .contact-card--form .sf-label {
    font-size: 11px;
    font-weight: 400;
  }
  .contact-card--form .sf-input {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--sf-input-text);
    background: linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1)) !important;
    border: none !important;
    outline: none;
  }
  .contact-card--form .sf-input::placeholder {
    color: rgba(255, 255, 255, 0.50);
  }
  .contact-card--form .sf-input:focus {
    outline: none;
  }
  .contact-card--form .sf-field textarea.sf-input {
    min-height: 110px;
    resize: vertical;
  }
  .contact-card--form form > .pt-6 {
    display: flex;
    justify-content: flex-end;
  }
  .contact-form__submit {
    justify-self: end;
  }
  .contact-map {
    max-width: 1100px;
    margin: 28px auto 0;
    padding: 0 24px;
  }
  .contact-map iframe {
    width: 100%;
    min-height: 260px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    .contact-form__submit {
      grid-column: 1;
      justify-self: start;
    }
  }
}
@layer components {
  .container-hero {
    position: relative;
    overflow: hidden;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    background: transparent;
    min-height: 960px;
    padding: 80px 32px 30px;
  }
  .container-hero__orb {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4));
  }
  .container-hero__orb--left {
    top: 8%;
    left: clamp(-90px, -8vw, -24px);
    width: clamp(240px, 28vw, 360px);
    height: clamp(240px, 28vw, 360px);
  }
  .container-hero__orb--right {
    top: 32%;
    right: clamp(-100px, -9vw, -24px);
    width: clamp(250px, 30vw, 380px);
    height: clamp(250px, 30vw, 380px);
  }
  .container-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #e9ecf3;
    margin-top: 20px;
  }
  .container-hero__eyebrow {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 12px;
  }
  .container-hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(44px, 6vw, 92px);
    font-weight: 600;
    line-height: 1.1;
  }
  .container-hero__subtitle {
    margin-top: 14px;
    color: #a7acb8;
    font-size: 14px;
  }
  .container-hero__actions {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .container-hero__mockup {
    position: absolute;
    left: 50%;
    bottom: -230px;
    transform: translateX(-50%);
    width: min(1100px, 92vw);
    height: auto;
    z-index: 1;
  }
  @media (max-width: 1024px) {
    .container-hero {
      min-height: 820px;
      padding-bottom: 160px;
    }
    .container-hero__mockup {
      bottom: -40px;
    }
  }
  @media (max-width: 640px) {
    .container-hero {
      padding: 60px 20px 140px;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .container-hero__orb--left {
      width: 260px;
      height: 260px;
      left: -24%;
    }
    .container-hero__orb--right {
      width: 260px;
      height: 260px;
      right: -22%;
      top: 44%;
    }
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
  }
  @media (max-width: 1024px) {
    .faq-grid {
      grid-template-columns: 1fr;
    }
  }
  .faq-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 20px;
  }
  .faq-heading {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.15;
    font-weight: 600;
    color: #f5f6f8;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: #252525;
    border-radius: 18px;
    padding: 18px 20px;
    cursor: pointer;
  }
  .faq-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-item__question {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
  }
  .faq-item__chevron {
    color: #ffffff;
    font-size: 18px;
    transition: transform 180ms ease;
  }
  .faq-item__body {
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #c5c8d2;
    font-size: 14px;
    line-height: 1.6;
    display: none;
  }
  .faq-item.is-open .faq-item__body {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
  }
  .faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
  }
}
@layer components {
  .template-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }
  .template-card__image {
    position: absolute;
    inset: 0;
  }
  .template-mosaic__item {
    border-radius: 12px;
    overflow: hidden;
  }
  .template-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.back-wall {
  position: relative;
  inset: 0;
}
.back-wall .text-silhouette {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 70%;
  opacity: 0;
  filter: blur(60px) brightness(0.6);
  pointer-events: none;
  mix-blend-mode: screen;
}
#floor-gradient {
  position: absolute;
  bottom: 200px;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  pointer-events: none;
  width: 74%;
  height: 507px;
  background: url("../images/Gradient.png") no-repeat bottom center;
  background-size: 100% 100%;
  z-index: 2;
}
.card2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0px 17px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 1.2px 1.2px 0px rgba(255, 255, 255, 0.5), inset 1.2px 1.2px 0px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pill-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05) );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pill-button:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 1.5px 1.5px 0px rgba(255, 255, 255, 0.7), inset 1.5px 1.5px 0px rgba(255, 255, 255, 0.7), 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.pill-button:hover::before {
  opacity: 1;
}
.pill-button:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4), inset 1px 1px 0px rgba(255, 255, 255, 0.4);
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 1px;
}
@property --btn-glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient( from var(--btn-glow-angle), transparent 0%, transparent 20%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.7) 37%, rgba(255, 255, 255, 1) 42%, rgba(255, 255, 255, 0.7) 47%, rgba(255, 255, 255, 0.15) 54%, transparent 64%, transparent 100% );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  animation: btn-glow-spin 3s linear infinite;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  pointer-events: none;
}
@keyframes btn-glow-spin {
  to {
    --btn-glow-angle: 360deg;
  }
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  color: #0b0b0e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 1px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-solid:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.25);
}
.svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.process-section {
  position: relative;
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: auto;
  margin-top: 20px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .process-section {
    gap: 20px;
    padding-left: 14px;
  }
}
.process-indicator {
  position: relative;
  width: 3px;
  min-width: 3px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 4px;
  align-self: stretch;
  display: none;
}
@media (min-width: 768px) {
  .process-indicator {
    display: block;
  }
}
.process-indicator::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  top: var(--bar-top, 0px);
  height: var(--bar-height, 0px);
}
.process-indicator-prefix {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 4px;
  background: #9D2D88;
  transition: top 0.3s ease, height 0.3s ease;
  z-index: 1;
}
.process-indicator-fill {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 4px;
  transition: top 0.3s ease, height 0.3s ease, background 0.3s ease;
  z-index: 1;
}
.process-indicator-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #c93cff;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: top 0.3s ease;
}
.process-scroll {
  height: 100%;
  overflow-y: auto;
  padding-right: 0;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .process-scroll {
    padding-right: 24px;
  }
}
.process-scroll::-webkit-scrollbar {
  display: none;
}
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 15px;
}
.process-step__desc {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 767px) {
  .process-step__desc {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.process-step:last-child {
  margin-bottom: 30px;
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
#nav-toggle:checked ~ .mobile-nav {
  display: block !important;
}
#nav-toggle:not(:checked) ~ .mobile-nav {
  display: none !important;
}
@media (min-width: 1280px) and (max-width: 1400px) {
  .nav-pill {
    width: 600px;
  }
}
input.glass::placeholder {
  color: rgba(255, 255, 255, 0.50);
}
[data-icon] ~ input.glass {
  padding-left: 2.75rem;
}
.glass {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg,rgba(255,255,255,0.1), rgba(255,255,255,0.1)) !important;
  border: none;
  outline: none;
}
.glass::before, .glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 11;
}
.glass::before {
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient( at 0% 0%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.06) 60%, transparent 100% );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  clip-path: polygon(0 0, 80% 0, 0 80%);
}
.glass::after {
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient( at 100% 100%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.03) 60%, transparent 100% );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  clip-path: polygon(100% 20%, 100% 100%, 20% 100%);
}
input[type="checkbox"].glass {
  height: calc(var(--spacing, 0.25rem) * 5);
  width: calc(var(--spacing, 0.25rem) * 5);
  border-radius: 5px;
  padding: calc(var(--spacing, 0.25rem) * 0);
  appearance: none !important;
  -webkit-appearance: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
  background-image: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  color: transparent !important;
}
input[type="checkbox"].glass:checked, input[type="checkbox"].glass:checked:hover, input[type="checkbox"].glass:checked:focus, input[type="checkbox"].glass:indeterminate {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  background-image: none !important;
  background-size: 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: transparent !important;
  box-shadow: none !important;
}
input[type="checkbox"].glass:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
input + svg {
  padding-left: calc(var(--spacing, 0.25rem) * 4);
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-font-weight: initial;
      --tw-duration: initial;
      --btn-glow-angle: 0deg;
    }
  }
}

/* --- Sparkle Cloud Dark: enforce the dark page background (overrides app default) --- */
body {
    background-color: #0b0b0e !important;
    color: #ffffff !important;
}
