    :root {
      --c-magenta: #c53a86;
      --c-orange: #ef5a2a;
      --c-yellow: #f3b43a;
      --c-dark: #0b1020;
      --c-text: #1e2230;
      --c-muted: #6f7485;
      --c-bg: #f5f6fb;
      --c-surface: #ffffff;
      --radius-lg: 18px;
      --radius-md: 12px;
      --shadow-soft: 0 18px 40px rgba(15, 19, 38, .16);
      --shadow-card: 0 12px 26px rgba(15, 19, 38, .09);
      --max-width: 1120px;
      --header-height: 80px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--c-bg);
      color: var(--c-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility
    }

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

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

    ul {
      list-style: none
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden
    }

    .skip-link:focus {
      left: 20px;
      top: 20px;
      width: auto;
      height: auto;
      padding: 10px 14px;
      background: #fff;
      color: #0b1020;
      border-radius: 12px;
      z-index: 99999;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(4, 6, 22, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-height);
      gap: 16px
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 600;
      letter-spacing: .02em;
      text-transform: uppercase;
      font-size: .9rem;
      white-space: nowrap
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 16px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .35)
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: .9rem;
      color: rgba(255, 255, 255, .82)
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
      color: rgba(255, 255, 255, .92)
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--c-magenta), var(--c-orange), var(--c-yellow));
      transition: width .18s ease-out
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after,
    .nav-links a.is-current::after {
      width: 100%
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .25);
      background: transparent;
      color: #fff;
      align-items: center;
      justify-content: center;
      cursor: pointer
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
      width: 18px;
      height: 2px;
      background: #fff;
      position: relative;
      display: block;
      content: ""
    }

    .nav-toggle span::before {
      position: absolute;
      left: 0;
      top: -6px
    }

    .nav-toggle span::after {
      position: absolute;
      left: 0;
      bottom: -6px
    }

    .hero {
      position: relative;
      background: radial-gradient(circle at 0% 0%, rgba(197, 58, 134, .08), transparent 55%), radial-gradient(circle at 100% 10%, rgba(239, 90, 42, .08), transparent 55%), radial-gradient(circle at 100% 100%, rgba(243, 180, 58, .08), transparent 55%);
      padding: 96px 0 72px
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
      gap: 24px;
      align-items: center
    }

    .hero-content {
      max-width: 760px
    }

    .hero-title {
      font-size: clamp(2rem, 4.2vw, 3.25rem);
      line-height: 1.05;
      letter-spacing: -.03em;
      margin: 10px 0 12px
    }

    .hero-title span {
      background: linear-gradient(120deg, var(--c-magenta), var(--c-orange), var(--c-yellow));
      -webkit-background-clip: text;
      color: transparent
    }

    .hero-subtitle {
      font-size: 1.05rem;
      max-width: 720px;
      color: var(--c-muted)
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px
    }

    .hero-badges span {
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11, 16, 32, .10);
      background: rgba(255, 255, 255, .88);
      color: rgba(11, 16, 32, .78);
      font-size: .82rem
    }

    .panel {
      background: #fff;
      border-radius: 24px;
      padding: 20px;
      border: 1px solid rgba(11, 16, 32, .06);
      box-shadow: var(--shadow-card)
    }

    .panel h3 {
      font-size: 1.05rem;
      margin-bottom: 8px
    }

    .panel p {
      font-size: .9rem;
      color: var(--c-muted);
      margin-bottom: 10px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: .95rem;
      font-weight: 600;
      white-space: nowrap
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--c-magenta), var(--c-orange), var(--c-yellow));
      color: var(--c-text);
      box-shadow: 0 14px 30px rgba(197, 58, 134, .28)
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .42);
      color: #fff
    }

    .btn-dark {
      background: #0b1020;
      color: #fff;
      box-shadow: 0 14px 30px rgba(11, 16, 32, .28)
    }

    section {
      padding: 80px 0
    }

    .section-header {
      text-align: center;
      margin-bottom: 36px
    }

    .section-kicker {
      font-size: .86rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--c-muted);
      margin-bottom: 8px
    }

    .section-title {
      font-size: 1.95rem;
      margin-bottom: 10px;
      line-height: 1.15
    }

    .section-subtitle {
      max-width: 680px;
      margin: 0 auto;
      color: var(--c-muted);
      font-size: .95rem
    }

    .divider {
      width: 72px;
      height: 4px;
      border-radius: 999px;
      margin: 16px auto 0;
      background: linear-gradient(90deg, var(--c-magenta), var(--c-orange), var(--c-yellow))
    }

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

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

    .card {
      border-radius: var(--radius-lg);
      padding: 18px 16px;
      background: linear-gradient(145deg, #fbfbff, #f4f4ff);
      border: 1px solid rgba(11, 16, 32, .06);
      box-shadow: var(--shadow-card)
    }

    .card h3 {
      font-size: 1.02rem;
      margin-bottom: 6px
    }

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

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px
    }

    .breadcrumbs span {
      padding: 6px 10px;
      border-radius: 999px;
      background: #fff5f1;
      border: 1px solid rgba(239, 90, 42, .24);
      font-size: .78rem;
      color: var(--c-text)
    }

    .page-hero {
      padding: 70px 0 40px;
      background: radial-gradient(circle at 0% 0%, rgba(197, 58, 134, .08), transparent 55%), radial-gradient(circle at 100% 10%, rgba(239, 90, 42, .08), transparent 55%), radial-gradient(circle at 100% 100%, rgba(243, 180, 58, .08), transparent 55%)
    }

    .page-title {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      line-height: 1.08;
      margin-bottom: 10px
    }

    .page-lead {
      max-width: 72ch;
      color: var(--c-muted);
      font-size: 1rem
    }

    .page-layout {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 24px;
      align-items: start
    }

    .side-nav {
      position: sticky;
      top: calc(var(--header-height) + 18px);
      background: #fff;
      border-radius: 24px;
      padding: 18px;
      border: 1px solid rgba(11, 16, 32, .06);
      box-shadow: var(--shadow-card)
    }

    .side-nav h3 {
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--c-muted);
      margin-bottom: 12px
    }

    .side-nav ul {
      display: grid;
      gap: 8px
    }

    .side-nav a {
      display: block;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(11, 16, 32, .08);
      background: #fff;
      font-size: .88rem
    }

    .side-nav a:hover,
    .side-nav a.is-current {
      background: linear-gradient(135deg, rgba(197, 58, 134, .08), rgba(239, 90, 42, .08), rgba(243, 180, 58, .10));
      border-color: rgba(197, 58, 134, .22)
    }

    .content-stack {
      display: grid;
      gap: 18px
    }

    .list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
      font-size: .88rem
    }

    .item {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      padding: 10px 12px;
      border-radius: 16px;
      background: #fbfbff;
      border: 1px solid rgba(11, 16, 32, .06)
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(135deg, var(--c-orange), var(--c-yellow))
    }

    .contact-panel {
      background: #fff;
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 14px 30px rgba(15, 19, 38, .12);
      border: 1px solid rgba(11, 16, 32, .04)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 14px;
      font-size: .82rem
    }

    .contact-grid div {
      padding: 10px;
      border-radius: var(--radius-md);
      background: #fff5f1;
      border: 1px dashed rgba(239, 90, 42, .35)
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 6px
    }

    label {
      font-size: .8rem;
      font-weight: 500;
      margin-bottom: 2px;
      display: block
    }

    input,
    select,
    textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(11, 16, 32, .12);
      padding: 10px 11px;
      font: inherit;
      resize: vertical;
      background: #fdfdff
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px
    }

    .checkbox-line {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .82rem;
      color: var(--c-muted)
    }

    .checkbox-line input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex: 0 0 auto
    }

    .form-footnote {
      font-size: .78rem;
      color: var(--c-muted);
      margin-top: 4px
    }

    .site-footer {
      background: #0b1020;
      color: rgba(255, 255, 255, .8);
      padding: 24px 0;
      font-size: .78rem
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px
    }

    .footer-links,
    .footer-social {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .footer-links a {
      color: rgba(255, 255, 255, .72)
    }

    .footer-social a {
      min-width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--c-orange), var(--c-magenta));
      box-shadow: 0 8px 24px rgba(197, 58, 134, .2);
      color: #0b1020;
      padding: 0 14px;
      font-weight: 600
    }

    .wa-fab {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--c-orange), var(--c-yellow));
      box-shadow: 0 18px 40px rgba(15, 19, 38, .22);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 50;
      border: none
    }

    .wa-fab svg {
      width: 26px;
      height: 26px;
      fill: #0b1020
    }

    .wa-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      display: none;
      align-items: flex-end;
      justify-content: center;
      z-index: 60;
      padding: 18px
    }

    .wa-modal.open {
      display: flex
    }

    .wa-sheet {
      width: 100%;
      max-width: 460px;
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(11, 16, 32, .08);
      box-shadow: var(--shadow-soft)
    }

    .wa-head {
      background: #0b1020;
      color: #fff;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px
    }

    .wa-close {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .28);
      color: #fff;
      border-radius: 12px;
      padding: 6px 10px;
      cursor: pointer;
      font-size: .8rem
    }

    .wa-body {
      padding: 14px 16px 16px
    }

    .wa-body p {
      font-size: .88rem;
      color: var(--c-muted);
      margin-bottom: 12px
    }

    .wa-consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: .82rem;
      color: var(--c-muted);
      margin-bottom: 12px
    }

    .wa-consent input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex: 0 0 auto
    }

    .wa-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    @media (max-width:992px) {
      .nav-toggle {
        display: flex
      }

      .nav-links {
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        width: auto;
        margin: 0;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: rgba(4, 6, 22, .98);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(15, 19, 38, .22);
        z-index: 9999;
        max-height: calc(100vh - 90px);
        overflow: auto
      }

      .nav.nav-open .nav-links {
        display: flex
      }

      .hero-inner,
      .page-layout,
      .grid-3,
      .grid-2 {
        grid-template-columns: 1fr
      }

      .side-nav {
        position: relative;
        top: 0
      }

      body.nav-open {
        overflow: hidden
      }
    }

    @media (max-width:768px) {
      section {
        padding: 64px 0
      }

      .hero {
        padding: 72px 0 52px
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start
      }

      .form-row,
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    @media (max-width:480px) {
      section {
        padding: 42px 0 28px
      }

      .hero-title {
        font-size: 2.05rem;
        line-height: 1.05;
        margin: 6px 0 10px
      }

      .hero-subtitle {
        font-size: .98rem
      }

      .wa-fab {
        right: 14px;
        bottom: 14px
      }
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .hero-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .hero-buttons .btn {
        width: 100%;
        text-align: center;
      }

      