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

    :root {
      --bg-deep: #0a0f14;
      --bg: #0e1419;
      --bg-warm: #121a22;
      --bg-card: #16202b;
      --bg-surface: #1e2a38;
      --border: rgba(255, 255, 255, .05);
      --border-g: rgba(78, 175, 134, .18);
      --border-gd: rgba(212, 168, 83, .15);
      --tx: #e4eaf1;
      --tx2: #8d9bab;
      --tx3: #576778;
      --grn: #4eaf86;
      --grn-l: #6fc9a1;
      --grn-p: #8dd8b6;
      --grn-gw: rgba(78, 175, 134, .10);
      --gld: #d4a853;
      --gld-l: #e6c373;
      --gld-gw: rgba(212, 168, 83, .08);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Outfit', -apple-system, sans-serif;
      --mono: 'JetBrains Mono', monospace;
      --ease: cubic-bezier(.16, 1, .3, 1);
      --max: 1180px;
      --hh: 94px;
      --ticker-h: 0px;
      --ticker-progress: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--hh)+8px);
      overflow-x: hidden
    }

    body {
      font-family: var(--sans);
      background: var(--bg-deep);
      color: var(--tx);
      line-height: 1.72;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    /* Global dark scrollbars */
    html,
    body,
    .mnav,
    .compare__table-wrap,
    .chat-panel__body,
    .popup-form__box,
    .faq-modal,
    .faq-modal__box,
    .modal__box,
    .exit-popup__box {
      scrollbar-width: thin;
      scrollbar-color: rgba(111, 201, 161, .38) rgba(10, 15, 20, .92)
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    .mnav::-webkit-scrollbar,
    .compare__table-wrap::-webkit-scrollbar,
    .chat-panel__body::-webkit-scrollbar,
    .popup-form__box::-webkit-scrollbar,
    .faq-modal::-webkit-scrollbar,
    .faq-modal__box::-webkit-scrollbar,
    .modal__box::-webkit-scrollbar,
    .exit-popup__box::-webkit-scrollbar {
      width: 10px;
      height: 10px
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track,
    .mnav::-webkit-scrollbar-track,
    .compare__table-wrap::-webkit-scrollbar-track,
    .chat-panel__body::-webkit-scrollbar-track,
    .popup-form__box::-webkit-scrollbar-track,
    .faq-modal::-webkit-scrollbar-track,
    .faq-modal__box::-webkit-scrollbar-track,
    .modal__box::-webkit-scrollbar-track,
    .exit-popup__box::-webkit-scrollbar-track {
      background: rgba(10, 15, 20, .92)
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb,
    .mnav::-webkit-scrollbar-thumb,
    .compare__table-wrap::-webkit-scrollbar-thumb,
    .chat-panel__body::-webkit-scrollbar-thumb,
    .popup-form__box::-webkit-scrollbar-thumb,
    .faq-modal::-webkit-scrollbar-thumb,
    .faq-modal__box::-webkit-scrollbar-thumb,
    .modal__box::-webkit-scrollbar-thumb,
    .exit-popup__box::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(111, 201, 161, .62), rgba(78, 175, 134, .45));
      border: 2px solid rgba(10, 15, 20, .92);
      border-radius: 999px
    }

    html::-webkit-scrollbar-thumb:hover,
    body::-webkit-scrollbar-thumb:hover,
    .mnav::-webkit-scrollbar-thumb:hover,
    .compare__table-wrap::-webkit-scrollbar-thumb:hover,
    .chat-panel__body::-webkit-scrollbar-thumb:hover,
    .popup-form__box::-webkit-scrollbar-thumb:hover,
    .faq-modal::-webkit-scrollbar-thumb:hover,
    .faq-modal__box::-webkit-scrollbar-thumb:hover,
    .modal__box::-webkit-scrollbar-thumb:hover,
    .exit-popup__box::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, rgba(111, 201, 161, .78), rgba(78, 175, 134, .62))
    }

    html::-webkit-scrollbar-corner,
    body::-webkit-scrollbar-corner,
    .mnav::-webkit-scrollbar-corner,
    .compare__table-wrap::-webkit-scrollbar-corner,
    .chat-panel__body::-webkit-scrollbar-corner,
    .popup-form__box::-webkit-scrollbar-corner,
    .faq-modal::-webkit-scrollbar-corner,
    .faq-modal__box::-webkit-scrollbar-corner,
    .modal__box::-webkit-scrollbar-corner,
    .exit-popup__box::-webkit-scrollbar-corner {
      background: rgba(10, 15, 20, .92)
    }

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

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

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      color: inherit
    }

    ul {
      list-style: none
    }

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

    /* Custom Cursor */
    .cur {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: difference
    }

    .cur__d {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: -4px;
      left: -4px;
      transition: transform .1s
    }

    .cur__r {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      position: absolute;
      top: -18px;
      left: -18px;
      transition: width .3s, height .3s, top .3s, left .3s, border-color .3s
    }

    .cur.hov .cur__r {
      width: 56px;
      height: 56px;
      top: -28px;
      left: -28px;
      border-color: var(--grn-l)
    }

    .cur.hov .cur__d {
      transform: scale(2.5);
      background: var(--grn)
    }

    @media(max-width:920px) {
      .cur {
        display: none
      }
    }

    /* Spotlight */
    .spotlight {
      position: fixed;
      pointer-events: none;
      z-index: 2;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 175, 134, .025) 0%, transparent 70%);
      transform: translate(-50%, -50%)
    }

    /* Canvas */
    #tradingCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none
    }

    .page-content {
      position: relative;
      z-index: 1
    }

    #scrollProg {
      position: fixed;
      top: var(--hh);
      left: 0;
      height: 2px;
      width: 0;
      background: linear-gradient(90deg, var(--grn), var(--gld));
      z-index: 999;
      pointer-events: none
    }

    /* #15 Live Ticker */
    .ticker {
      background: var(--bg-warm);
      border-bottom: 1px solid var(--border);
      padding: 8px 0;
      overflow: hidden;
      position: relative;
      z-index: 1001;
      opacity: calc(1 - var(--ticker-progress, 0));
      transform: translateY(calc(var(--ticker-progress, 0) * -16px));
      transition: opacity .16s linear, transform .24s var(--ease)
    }

    .ticker__track {
      display: flex;
      gap: 48px;
      animation: tickScroll 45s linear infinite;
      white-space: nowrap
    }

    .ticker__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--tx3)
    }

    .ticker__pair {
      color: var(--tx2)
    }

    .ticker__price {
      color: var(--tx)
    }

    .ticker__ch {
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 500
    }

    .ticker__ch--up {
      background: rgba(78, 175, 134, .15);
      color: var(--grn-l)
    }

    .ticker__ch--dn {
      background: rgba(220, 80, 80, .12);
      color: #e06060
    }

    .ticker__dot {
      width: 4px;
      height: 4px;
      border-radius: 50%
    }

    .ticker__dot--up {
      background: var(--grn)
    }

    .ticker__dot--dn {
      background: #e06060
    }

    @keyframes tickScroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* #15 Market Sessions */
    .msessions {
      background: rgba(14, 20, 25, .9);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-family: var(--mono);
      font-size: 12px;
      display: none
    }

    .msessions__in {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap
    }

    .msession {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--tx3)
    }

    .msession__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .msession__dot--open {
      background: var(--grn);
      box-shadow: 0 0 8px var(--grn)
    }

    .msession__dot--closed {
      background: #555
    }

    .msession__name {
      font-weight: 600;
      color: var(--tx2)
    }

    .msession__status {
      font-weight: 500
    }

    .msession__status--open {
      color: var(--grn-l)
    }

    .msession__status--closed {
      color: var(--tx3)
    }

    .msession__time {
      color: var(--tx3);
      font-size: 11px
    }

    /* #3 Header — gap fix on scroll */
    .hdr {
      position: fixed;
      top: calc(var(--ticker-h) * (1 - var(--ticker-progress)));
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 15, 20, .65);
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(32px);
      border-bottom: 1px solid var(--border);
      transition: background .4s, box-shadow .4s
    }

    .hdr.scrolled {
      background: rgba(10, 15, 20, .95);
      box-shadow: 0 4px 40px rgba(0, 0, 0, .45)
    }

    .hdr__in {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--hh)
    }

    /* #1 #2 Logo — big, transparent bg, glowing */
    .hdr__logo {
      display: flex;
      align-items: center;
      position: relative;
      padding: 6px 14px;
      margin: -6px -14px;
      border-radius: 16px;
      transition: background .4s
    }

    .hdr__logo:is(:hover, :focus-visible) {
      background: rgba(78, 175, 134, .04)
    }

    .hdr__logo img {
      height: 80px;
      filter: drop-shadow(0 0 22px rgba(78, 175, 134, .18)) drop-shadow(0 0 6px rgba(212, 168, 83, .08));
      transition: filter .4s, transform .3s
    }

    .hdr__logo:is(:hover, :focus-visible) img {
      filter: drop-shadow(0 0 32px rgba(78, 175, 134, .3)) drop-shadow(0 0 12px rgba(212, 168, 83, .12));
      transform: scale(1.03)
    }

    .hdr__logo::before {
      content: '';
      position: absolute;
      inset: -18px -28px;
      background: radial-gradient(ellipse, rgba(78, 175, 134, .06), rgba(212, 168, 83, .03) 40%, transparent 65%);
      border-radius: 24px;
      pointer-events: none;
      animation: logoPulse 4s ease-in-out infinite
    }

    @keyframes logoPulse {

      0%,
      100% {
        opacity: .7;
        transform: scale(1)
      }

      50% {
        opacity: 1;
        transform: scale(1.04)
      }
    }

    .hdr__nav {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .hdr__nav a:not(.btn) {
      padding: 10px 16px;
      font-size: 15px;
      font-weight: 500;
      color: var(--tx2);
      border-radius: 10px;
      transition: color .25s, background .25s
    }

    .hdr__nav a:not(.btn):is(:hover, :focus-visible) {
      color: var(--tx);
      background: rgba(255, 255, 255, .06)
    }

    /* #4 Buttons — black text on green, white on hover */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 700;
      letter-spacing: .03em;
      border-radius: 12px;
      transition: all .3s var(--ease);
      white-space: nowrap;
      position: relative;
      overflow: hidden
    }

    .btn svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0
    }

    .btn--p {
      padding: 15px 32px;
      font-size: 16px;
      background: var(--grn);
      color: #0a0f14;
      box-shadow: 0 4px 24px rgba(78, 175, 134, .4), 0 0 0 1px rgba(78, 175, 134, .3)
    }

    .btn--p::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 60%);
      pointer-events: none
    }

    .btn--p:is(:hover, :focus-visible) {
      background: var(--grn-l);
      color: #fff;
      box-shadow: 0 8px 36px rgba(78, 175, 134, .55)
    }

    .btn--g {
      padding: 15px 32px;
      font-size: 16px;
      border: 1.5px solid rgba(255, 255, 255, .14);
      color: #fff;
      background: rgba(255, 255, 255, .04)
    }

    .btn--g:is(:hover, :focus-visible) {
      border-color: rgba(255, 255, 255, .3);
      background: rgba(255, 255, 255, .08);
      transform: translateY(-2px)
    }

    .btn--gold {
      padding: 15px 32px;
      font-size: 16px;
      background: var(--gld);
      color: #000;
      box-shadow: 0 4px 24px rgba(212, 168, 83, .35);
      text-shadow: none
    }

    .btn--gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 50%);
      pointer-events: none
    }

    .btn--gold:is(:hover, :focus-visible) {
      background: var(--gld-l);
      color: #000;
      box-shadow: 0 8px 36px rgba(212, 168, 83, .5)
    }

    .btn--gold:is(:hover, :focus-visible) svg {
      color: #ffffff;
      stroke: #ffffff;
    }

    .btn--gold svg {
      color: #000;
      stroke: #000
    }

    .btn--lg {
      padding: 19px 46px;
      font-size: 18px;
      border-radius: 14px
    }

    .btn--nav {
      padding: 12px 24px;
      font-size: 14.5px
    }

    .btn:focus-visible {
      outline: none;
      filter: drop-shadow(0 0 12px rgba(111, 201, 161, .5)) drop-shadow(0 0 26px rgba(212, 168, 83, .28))
    }

    .hdr__logo:focus-visible,
    .hdr__nav a:not(.btn):focus-visible,
    .ft__links a:focus-visible {
      outline: none
    }

    /* Mobile */
    .hdr__tog {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 1002
    }

    .hdr__tog span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--tx);
      border-radius: 2px
    }

    .mnav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 320px;
      background: var(--bg-warm);
      z-index: 2101;
      flex-direction: column;
      padding: 58px 18px 18px;
      gap: 4px;
      transform: translateX(100%);
      transition: transform .45s var(--ease);
      border-left: 1px solid var(--border);
      overflow-y: auto
    }

    .mnav.open {
      transform: translateX(0)
    }

    .mnav a {
      padding: 12px 14px;
      font-size: 16px;
      font-weight: 500;
      color: var(--tx2);
      border-radius: 12px
    }

    .mnav .btn {
      margin-top: 12px;
      padding: 11px 14px;
      font-size: 14px;
      justify-content: center;
      background: linear-gradient(135deg, rgba(212, 168, 83, .24), rgba(212, 168, 83, .1));
      border: 1px solid rgba(212, 168, 83, .45);
      color: var(--gld);
      font-weight: 600;
      letter-spacing: .03em;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .35)
    }

    .mnav__x {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 36px;
      height: 36px;
      font-size: 24px;
      color: var(--tx);
      background: rgba(10, 15, 20, .75);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .novl {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .65);
      z-index: 2100;
      opacity: 0;
      transition: opacity .35s
    }

    html.nav-open,
    html.modal-open {
      overflow: hidden;
      touch-action: none
    }

    .novl.act {
      opacity: 1
    }

    @media(max-width:920px) {
      :root {
        --hh: 86px
      }

      .hdr {
        position: fixed;
        top: calc(var(--ticker-h) * (1 - var(--ticker-progress)));
        left: 0;
        right: 0;
        z-index: 2000
      }

      .hdr__logo img {
        height: 72px
      }

      .hdr__nav {
        display: none
      }

      .hdr__tog {
        display: flex
      }

      .mnav {
        display: flex;
        top: calc(var(--ticker-h) * (1 - var(--ticker-progress)));
        height: calc(100dvh - (var(--ticker-h) * (1 - var(--ticker-progress))))
      }

      html.nav-open .chat-bubble,
      html.nav-open .chat-panel {
        z-index: -1 !important;
        pointer-events: none
      }
    }

    /* Sections */
    section,
    .sec {
      padding: 80px 0;
      position: relative
    }

    .slabel {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gld);
      margin-bottom: 14px
    }

    .slabel::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--gld), transparent)
    }

    .sheading {
      font-family: var(--serif);
      font-size: clamp(2.3rem, 4.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.14;
      margin-bottom: 18px
    }

    .ssub {
      font-size: 19px;
      color: var(--tx2);
      max-width: 580px;
      line-height: 1.72;
      font-weight: 300
    }

    .scenter {
      text-align: center
    }

    .scenter .slabel {
      justify-content: center
    }

    .scenter .ssub {
      margin: 0 auto
    }

    .inline-cta {
      background: linear-gradient(135deg, rgba(22, 32, 43, .95), rgba(30, 42, 56, .95));
      border: 1px solid var(--border-g);
      border-radius: 20px;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 40px;
      flex-wrap: wrap;
      backdrop-filter: blur(8px)
    }

    .inline-cta p {
      font-size: 18.5px;
      max-width: 560px;
      line-height: 1.6
    }

    .inline-cta p strong {
      color: var(--grn-l);
      font-weight: 600
    }

    @media(max-width:700px) {
      .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
      }
    }

    /* #20 Section gradient mesh transitions */
    .mesh {
      height: 80px;
      position: relative;
      pointer-events: none;
      margin: -1px 0
    }

    .mesh--1 {
      background: linear-gradient(180deg, rgba(14, 20, 25, 0), rgba(18, 26, 34, 1) 40%, rgba(18, 26, 34, 1) 60%, rgba(14, 20, 25, 0))
    }

    .mesh--2 {
      background: linear-gradient(180deg, rgba(18, 26, 34, 0), rgba(14, 20, 25, 1) 40%, rgba(14, 20, 25, 1) 60%, rgba(18, 26, 34, 0))
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: calc(var(--hh) + 40px) 0 20px;
      overflow: hidden
    }

    .hero__canvas {
      z-index: 0;
      opacity: .42
    }

    .hero__canvas canvas {
      filter: saturate(.9) brightness(.82)
    }

    .hero__in {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 52px;
      align-items: center
    }

    .hero__ey {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 20px;
      margin-bottom: 24px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--grn-l);
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeUp .8s var(--ease) .2s forwards
    }

    .hero__ey::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--grn);
      border-radius: 50%;
      animation: pulse 2.5s ease-in-out infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(1.5)
      }
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeUpFrom {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero__t {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 6vw, 4.6rem);
      font-weight: 600;
      line-height: 1.06;
      margin-bottom: 28px
    }

    .hero__t .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUpFrom .7s var(--ease) forwards
    }

    .hero__t .word:nth-child(1) {
      animation-delay: .3s
    }

    .hero__t .word:nth-child(2) {
      animation-delay: .4s
    }

    .hero__t .word:nth-child(3) {
      animation-delay: .5s
    }

    .hero__t .word:nth-child(4) {
      animation-delay: .55s
    }

    .hero__t .word:nth-child(5) {
      animation-delay: .6s
    }

    .hero__t .word:nth-child(6) {
      animation-delay: .65s
    }

    .hero__t em {
      font-style: italic;
      color: var(--grn-l)
    }

    .hero__d {
      font-size: 19.5px;
      color: var(--tx2);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 520px;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp .8s var(--ease) .9s forwards;
      transform: translateY(20px)
    }

    .hero__acts {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .8s var(--ease) 1.1s forwards;
      transform: translateY(20px)
    }

    .hero__iw {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border-g);
      box-shadow: 0 28px 90px rgba(0, 0, 0, .5);
      opacity: 0;
      animation: fadeUp 1s var(--ease) .6s forwards;
      transform: translateY(40px)
    }

    .hero__iw img {
      width: 100%
    }

    .hero__badge {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: rgba(10, 15, 20, .9);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border-g);
      border-radius: 14px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .hero__bdot {
      width: 42px;
      height: 42px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hero__bdot svg {
      width: 19px;
      height: 19px;
      color: var(--grn-l)
    }

    .hero__btx {
      font-size: 13px;
      color: var(--tx2);
      line-height: 1.4
    }

    .hero__btx strong {
      display: block;
      color: var(--grn-l);
      font-size: 14.5px
    }

    @media(max-width:920px) {
      .hero__canvas {
        opacity: .34
      }

      .hero {
        min-height: auto;
        align-items: flex-start;
        padding: calc(var(--hh) + 28px) 0 32px;
        overflow: visible
      }

      .hero__in {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center
      }

      .hero__d {
        margin: 0 auto 40px
      }

      .hero__acts {
        justify-content: center
      }

      .hero__media {
        max-width: 500px;
        margin: 0 auto
      }

      .hero__ey {
        margin: 0 auto 24px
      }
    }

    /* Stats */
    .stats {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 0
    }

    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center
    }

    .stat__num {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--grn-l);
      line-height: 1;
      margin-bottom: 8px
    }

    .stat__suffix {
      color: var(--gld)
    }

    .stat__label {
      font-size: 14px;
      color: var(--tx2);
      font-weight: 400
    }

    @media(max-width:700px) {
      .stats__grid {
        grid-template-columns: 1fr 1fr
      }
    }

    /* Trust bar */
    .tbar {
      border-bottom: 1px solid var(--border);
      background: rgba(18, 26, 34, .85);
      backdrop-filter: blur(12px);
      padding: 24px 0
    }

    .tbar__in {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap
    }

    .tbar__i {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--tx3);
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap
    }

    .tbar__i svg {
      width: 18px;
      height: 18px;
      color: var(--grn);
      flex-shrink: 0
    }

    /* About */
    .about {
      background: rgba(14, 20, 25, .88);
      backdrop-filter: blur(6px)
    }

    .about__bg-canvas {
      z-index: 0;
      opacity: .24
    }

    .about__bg-canvas canvas {
      filter: saturate(.72) brightness(.74)
    }

    .about>.container {
      position: relative;
      z-index: 2
    }

    .about__lay {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 36px;
      align-items: center
    }

    .about__canvas-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border-g);
      box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
      cursor: crosshair
    }

    .about__canvas-wrap canvas {
      width: 100%;
      height: 100%;
      display: block
    }

    .about__cards {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .about__card {
      background: rgba(22, 32, 43, .9);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 30px;
      transition: border-color .35s, transform .35s;
      backdrop-filter: blur(8px)
    }

    .about__card:hover {
      border-color: var(--border-g);
    }

    .about__ci {
      width: 50px;
      height: 50px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px
    }

    .about__ci img {
      width: 24px;
      height: 24px;
      opacity: .8
    }

    .about__card h3 {
      font-family: var(--serif);
      font-size: 23px;
      font-weight: 600;
      margin-bottom: 10px
    }

    .about__card p {
      color: var(--tx2);
      font-size: 16.5px;
      line-height: 1.72;
      font-weight: 300
    }

    @media(max-width:800px) {
      .about__bg-canvas {
        opacity: .18
      }

      .about__lay {
        grid-template-columns: 1fr
      }

      .about__canvas-wrap {
        max-width: 500px;
        margin: 0 auto
      }
    }

    /* #19 STACI Acronym */
    .acronym {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(6px);
      overflow: hidden
    }

    .acronym__canvas {
      z-index: 0;
      opacity: .23
    }

    .acronym__canvas canvas {
      filter: saturate(.62) brightness(.72)
    }

    .acronym>.container {
      position: relative;
      z-index: 2
    }

    .acronym__spine {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 700px;
      margin: 40px auto 0;
      position: relative;
      padding-left: 80px
    }

    .acronym__spine::before {
      content: '';
      position: absolute;
      left: 35px;
      top: 0;
      bottom: 0;
      width: 1.5px;
      background: linear-gradient(180deg, transparent, var(--grn), var(--gld), var(--grn), transparent)
    }

    .acr-item {
      display: flex;
      align-items: baseline;
      gap: 24px;
      padding: 28px 0;
      position: relative;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity .6s var(--ease), transform .6s var(--ease)
    }

    .acr-item.vis {
      opacity: 1;
      transform: translateX(0)
    }

    .acr-item::before {
      content: '';
      position: absolute;
      left: -45px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--grn);
      border: 2px solid var(--bg-warm);
      transform: translateY(-50%);
      box-shadow: 0 0 12px var(--grn-gw)
    }

    .acr-letter {
      font-family: var(--serif);
      font-size: 56px;
      font-weight: 700;
      line-height: 1;
      color: var(--grn-l);
      min-width: 40px
    }

    .acr-word {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      color: var(--tx);
      transition: opacity .4s, transform .4s
    }

    .acr-word.cycling {
      opacity: 0;
      transform: translateY(-8px)
    }

    .acr-desc {
      font-size: 15px;
      color: var(--tx2);
      font-weight: 300;
      margin-top: 4px
    }

    @media(max-width:600px) {
      .acronym__spine {
        padding-left: 60px
      }

      .acr-letter {
        font-size: 40px
      }

      .acr-word {
        font-size: 22px
      }
    }

    /* Why Choose — 3D Tilt */
    .whychoose {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(6px)
    }

    .whychoose__bg-canvas {
      z-index: 1;
      opacity: .2
    }

    .whychoose__bg-canvas canvas {
      filter: saturate(.64) brightness(.72)
    }

    .whychoose>.container {
      position: relative;
      z-index: 2
    }

    .whychoose__head {
      text-align: center;
      margin-bottom: 44px
    }

    .whychoose__head h2 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4.2vw, 3rem);
      font-weight: 700
    }

    .whychoose__head h2 span {
      color: var(--grn-l)
    }

    .whychoose__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .wc-tile {
      background: rgba(22, 32, 43, .92);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 38px 28px;
      text-align: center;
      transition: border-color .4s, box-shadow .4s;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px)
    }

    .wc-tile::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--grn), transparent);
      border-radius: 0 0 4px 4px;
      opacity: 0;
      transition: opacity .4s
    }

    .wc-tile:hover {
      border-color: var(--border-g);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
    }

    .wc-tile:hover::before {
      opacity: 1
    }

    .wc-tile__glow {
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 175, 134, .08), transparent 70%);
      pointer-events: none;
      opacity: 0;
      transition: opacity .3s;
      transform: translate(-50%, -50%)
    }

    .wc-tile:hover .wc-tile__glow {
      opacity: 1
    }

    .wc-tile__icon {
      width: 84px;
      height: 84px;
      margin: 0 auto 22px;
      background: linear-gradient(135deg, rgba(78, 175, 134, .14), rgba(78, 175, 134, .04));
      border: 1.5px solid var(--border-g);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow .4s, transform .3s
    }

    .wc-tile:hover .wc-tile__icon {
      box-shadow: 0 0 50px rgba(78, 175, 134, .18);
      transform: scale(1.08)
    }

    .wc-tile__icon svg {
      width: 38px;
      height: 38px;
      color: var(--grn-l);
      stroke-width: 1.5
    }

    .wc-tile h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: .04em
    }

    .wc-tile p {
      color: var(--tx2);
      font-size: 15.5px;
      line-height: 1.72;
      font-weight: 300
    }

    @media(max-width:800px) {
      .whychoose__bg-canvas {
        opacity: .14
      }

      .whychoose__grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:550px) {
      .whychoose__grid {
        grid-template-columns: 1fr
      }
    }

    /* #22 Comparison Table */
    .compare-sec {
      min-height: 100vh;
      background: rgba(14, 20, 25, .88);
      backdrop-filter: blur(6px)
    }

    .compare__bg-canvas {
      z-index: 1;
      opacity: .2
    }

    .compare__bg-canvas canvas {
      filter: saturate(.6) brightness(.7)
    }

    .compare-sec>.container {
      position: relative;
      z-index: 2
    }

    .services__bg-canvas {
      z-index: 1;
      opacity: .28
    }

    .services__bg-canvas canvas {
      filter: saturate(.62) brightness(.72)
    }

    .services>.container {
      position: relative;
      z-index: 2
    }

    .compare {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 40px
    }

    .compare__table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
    }

    .compare table {
      width: 100%;
      border-collapse: collapse
    }

    .compare thead th {
      padding: 24px 20px;
      font-size: 15px;
      font-weight: 600;
      text-align: center;
      background: rgba(22, 32, 43, .95);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      color: var(--tx2)
    }

    .compare thead th:first-child {
      text-align: left;
      padding-left: 32px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .08em
    }

    .compare thead th.staci {
      color: #fff;
      font-size: 17px;
      background: linear-gradient(180deg, rgba(78, 175, 134, .12), rgba(22, 32, 43, .95))
    }

    .compare thead th.staci::after {
      content: 'RECOMMENDED';
      font-size: 9px;
      display: block;
      margin-top: 4px;
      color: var(--grn-l);
      letter-spacing: .12em;
      font-weight: 700
    }

    .compare tbody td {
      padding: 20px;
      text-align: center;
      font-size: 15px;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      color: var(--tx2);
      background: rgba(14, 20, 25, .7);
      transition: background .2s
    }

    .compare tbody tr:hover td {
      background: rgba(22, 32, 43, .6)
    }

    .compare tbody td:first-child {
      text-align: left;
      padding-left: 32px;
      font-weight: 500;
      color: var(--tx);
      font-size: 15.5px
    }

    .compare tbody td.staci {
      background: rgba(78, 175, 134, .04);
      color: var(--tx);
      font-weight: 500
    }

    .compare tbody tr:hover td.staci {
      background: rgba(78, 175, 134, .08)
    }

    .y {
      color: var(--grn-l);
      font-size: 20px;
      font-weight: 700
    }

    .n {
      color: #5a3a3a;
      font-size: 20px;
      font-weight: 700
    }

    .p {
      color: var(--gld);
      font-size: 13px;
      font-weight: 500
    }

    .compare__foot {
      background: linear-gradient(135deg, rgba(78, 175, 134, .08), rgba(212, 168, 83, .05));
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(78, 175, 134, .12);
      flex-wrap: wrap;
      gap: 16px
    }

    .compare__foot p {
      font-size: 16px;
      color: var(--tx2)
    }

    .compare__foot p strong {
      color: var(--grn-l)
    }

    @media(max-width:700px) {
      .compare__bg-canvas {
        opacity: .14
      }

      .services__bg-canvas {
        opacity: .18
      }

      .compare {
        overflow: hidden
      }

      .compare table {
        min-width: 640px
      }

      .compare__foot {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px 14px
      }

      .compare__foot .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        line-height: 1.35
      }
    }

    /* 4-Phase */
    .deepsteps {
      background: rgba(14, 20, 25, .88);
      backdrop-filter: blur(6px)
    }

    .ds {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-top: 44px
    }

    .ds-card {
      background: rgba(22, 32, 43, .92);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 46px 50px;
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 28px;
      align-items: start;
      backdrop-filter: blur(8px);
      position: relative;
      opacity: 0;
      transform: translateY(50px) scale(.97);
      transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .4s, box-shadow .4s
    }

    .ds-card.in-view {
      opacity: 1;
      transform: translateY(0) scale(1)
    }

    .ds-card.above-view {
      opacity: 0;
      transform: translateY(-40px) scale(.97)
    }

    .ds-card:hover {
      border-color: var(--border-g);
      box-shadow: 0 16px 60px rgba(0, 0, 0, .25)
    }

    .ds-card::after {
      content: '';
      position: absolute;
      left: 0;
      top: 15%;
      height: 70%;
      width: 3px;
      background: linear-gradient(180deg, transparent, var(--grn), var(--gld), transparent);
      border-radius: 0 2px 2px 0;
      opacity: 0;
      transition: opacity .5s
    }

    .ds-card.in-view::after {
      opacity: 1
    }

    .ds-card:nth-child(2) {
      transition-delay: .1s
    }

    .ds-card:nth-child(3) {
      transition-delay: .2s
    }

    .ds-card:nth-child(4) {
      transition-delay: .3s
    }

    .ds-num {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px
    }

    .ds-num__n {
      font-family: var(--serif);
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(180deg, var(--grn-l), var(--grn));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .ds-num__label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--grn);
      opacity: .6
    }

    .ds-body h3 {
      font-family: var(--serif);
      font-size: 27px;
      font-weight: 700;
      margin-bottom: 14px
    }

    .ds-body p {
      color: var(--tx2);
      font-size: 17px;
      line-height: 1.82;
      font-weight: 300
    }

    @media(max-width:700px) {
      .ds-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        text-align: center
      }

      .ds-num {
        flex-direction: row;
        gap: 12px;
        justify-content: center
      }
    }

    /* #5 Services — single images */
    .services {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(6px)
    }

    .svc__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 40px
    }

    .svc__row+.svc__row {
      margin-top: 64px
    }

    .svc__row--flip .svc__txt {
      order: 2
    }

    .svc__row--flip .svc__media {
      order: 1
    }

    .svc__kicker {
      color: var(--grn);
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 10px
    }

    .svc__txt h3 {
      font-family: var(--serif);
      font-size: 27px;
      font-weight: 600;
      margin-bottom: 14px
    }

    .svc__txt p {
      color: var(--tx2);
      font-size: 17.5px;
      line-height: 1.78;
      font-weight: 300;
      margin-bottom: 22px
    }

    /* #18 Parallax images */
    .svc__media {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 16px 56px rgba(0, 0, 0, .35)
    }

    .svc__media img {
      width: 100%;
      transition: transform .1s linear;
      will-change: transform
    }

    .svc__cap {
      padding: 13px 20px;
      background: var(--bg-card);
      font-size: 12.5px;
      color: var(--tx3);
      text-align: center;
      border-top: 1px solid var(--border)
    }

    @media(max-width:800px) {
      .svc__row {
        grid-template-columns: 1fr
      }

      .svc__row--flip .svc__txt,
      .svc__row--flip .svc__media {
        order: unset
      }
    }

    /* Performance */
    .perf {
      background: rgba(14, 20, 25, .88);
      backdrop-filter: blur(6px)
    }

    .perf__curve {
      margin-top: 36px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border)
    }

    .perf__curve img {
      width: 100%
    }

    .perf__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 24px
    }

    .perf__card {
      background: rgba(22, 32, 43, .92);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: border-color .35s, transform .35s;
      backdrop-filter: blur(8px)
    }

    .perf__card:hover {
      border-color: var(--border-g);
    }

    .perf__card img {
      width: 100%
    }

    .perf__card-b {
      padding: 16px 22px
    }

    .perf__card h3 {
      font-size: 16.5px;
      font-weight: 600
    }

    @media(max-width:700px) {
      .perf__grid {
        grid-template-columns: 1fr
      }
    }

    /* Trustpilot */
    .trustpilot-sec {
      background: rgba(18, 26, 34, .9);
      backdrop-filter: blur(8px);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 64px 0
    }

    .tp__inner {
      text-align: center
    }

    .tp__badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 32px;
      background: rgba(22, 32, 43, .9);
      border: 1px solid var(--border);
      border-radius: 18px;
      margin-bottom: 24px
    }

    .tp__stars {
      display: flex;
      gap: 3px
    }

    .tp__star {
      width: 30px;
      height: 30px;
      background: #00b67a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px
    }

    .tp__star svg {
      width: 17px;
      height: 17px;
      color: #fff
    }

    .tp__logo {
      font-size: 26px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .tp__logo svg {
      width: 26px;
      height: 26px;
      color: #00b67a
    }

    .tp__rating {
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 6px
    }

    .tp__sub {
      color: var(--tx2);
      font-size: 17px;
      font-weight: 300;
      margin-bottom: 24px
    }

    .tp__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--grn-l);
      font-size: 15.5px;
      font-weight: 600
    }

    .tp__reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 36px;
      text-align: left
    }

    .tp-review {
      background: rgba(22, 32, 43, .9);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px;
      transition: border-color .35s
    }

    .tp-review:hover {
      border-color: var(--border-gd)
    }

    .tp-review__stars {
      display: flex;
      gap: 2px;
      margin-bottom: 14px
    }

    .tp-review__star {
      width: 22px;
      height: 22px;
      background: #00b67a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px
    }

    .tp-review__star svg {
      width: 13px;
      height: 13px;
      color: #fff
    }

    .tp-review__text {
      color: var(--tx2);
      font-size: 16px;
      line-height: 1.72;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 18px
    }

    .tp-review__author {
      font-size: 15px;
      font-weight: 600
    }

    .tp-review__date {
      font-size: 12.5px;
      color: var(--tx3);
      margin-top: 3px
    }

    @media(max-width:800px) {
      .tp__reviews {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto
      }
    }

    /* Videos */
    .videos {
      background: rgba(18, 26, 34, .88);
      backdrop-filter: blur(6px)
    }

    .videos__bg-canvas {
      z-index: 1;
      opacity: .22
    }

    .videos__bg-canvas canvas {
      filter: saturate(.72) brightness(.74)
    }

    .videos>.container {
      position: relative;
      z-index: 2
    }

    .vid__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 40px auto 0;
      max-width: 960px
    }

    .vid {
      border-radius: 20px;
      overflow: visible;
      border: none;
      background: transparent;
      transition: transform .35s
    }

    .vid:hover .vid__frame {
      border-color: var(--border-g);
    }

    .vid__frame {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: transparent;
      line-height: 0;
      cursor: pointer
    }

    .vid__frame video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: transparent
    }

    .vid__ovl {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, .38);
      transition: background .3s
    }

    .vid__play {
      width: 62px;
      height: 62px;
      background: var(--grn);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 28px rgba(78, 175, 134, .4);
      transition: transform .3s
    }

    .vid__frame:hover .vid__play {
      transform: scale(1.1)
    }

    .vid__play svg {
      width: 24px;
      height: 24px;
      color: #fff;
      margin-left: 3px
    }

    @media(max-width:800px) {
      .videos__bg-canvas {
        opacity: .15
      }

      .vid__grid {
        max-width: none;
        margin-left: 0;
        margin-right: 0
      }
    }

    /* CTA — Animated border */
    .cta-sec {
      position: relative;
      padding: 80px 0;
      background: linear-gradient(180deg, rgba(14, 22, 32, .99), rgba(22, 36, 52, .95), rgba(14, 22, 32, .99))
    }

    .cta__bg-canvas {
      z-index: 0;
      opacity: .24
    }

    .cta__bg-canvas canvas {
      filter: saturate(.78) brightness(.78)
    }

    .cta-sec>.container {
      position: relative;
      z-index: 2
    }

    .cta-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(78, 175, 134, .1), transparent 55%), radial-gradient(ellipse at 30% 70%, rgba(212, 168, 83, .07), transparent 50%), radial-gradient(ellipse at 70% 30%, rgba(78, 175, 134, .06), transparent 50%);
      pointer-events: none
    }

    .cta-sec::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(78, 175, 134, .04) 0%, transparent 40%);
      pointer-events: none;
      animation: ctaPulse 4s ease-in-out infinite
    }

    @keyframes ctaPulse {

      0%,
      100% {
        opacity: .6
      }

      50% {
        opacity: 1
      }
    }

    .cta__box {
      position: relative;
      z-index: 1;
      border-radius: 30px;
      padding: 3px;
      background: linear-gradient(135deg, var(--grn), var(--gld), var(--grn-l), var(--gld));
      background-size: 300% 300%;
      animation: gradBorder 6s ease infinite
    }

    @keyframes gradBorder {
      0% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }

      100% {
        background-position: 0% 50%
      }
    }

    .cta__inner {
      background: rgba(18, 26, 34, .97);
      border-radius: 28px;
      padding: 60px;
      text-align: center;
      backdrop-filter: blur(12px)
    }

    .cta__inner .sheading {
      margin-bottom: 14px
    }

    .cta__inner .ssub {
      margin: 0 auto 36px
    }

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

    @media(max-width:600px) {
      .cta__bg-canvas {
        opacity: .14
      }

      .cta__inner {
        padding: 36px 24px
      }
    }

    /* #17 FAQ Teaser */
    .faq-teaser {
      background: rgba(14, 20, 25, .88);
      backdrop-filter: blur(6px);
      text-align: center;
      padding: 48px 0
    }

    .faq-teaser p {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 20px;
      color: var(--tx2)
    }

    .faq-teaser p strong {
      color: var(--tx);
      font-weight: 600
    }

    /* #21 Contact — floating labels */
    .contact {
      background: rgba(14, 20, 25, .92);
      backdrop-filter: blur(8px)
    }

    .contact__bg-canvas {
      z-index: 1;
      opacity: .2
    }

    .contact__bg-canvas canvas {
      filter: saturate(.7) brightness(.76)
    }

    .contact>.container {
      position: relative;
      z-index: 2
    }

    .contact__lay {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      margin-top: 40px;
      align-items: start
    }

    .contact__info h3 {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 14px
    }

    .contact__info>p {
      color: var(--tx2);
      font-size: 17.5px;
      line-height: 1.75;
      margin-bottom: 24px;
      font-weight: 300
    }

    .contact__dets {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .cdet {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      background: rgba(22, 32, 43, .9);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: border-color .3s
    }

    .cdet:hover {
      border-color: var(--border-g)
    }

    .cdet__ic {
      width: 44px;
      height: 44px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .cdet__ic svg {
      width: 20px;
      height: 20px;
      color: var(--grn-l)
    }

    .cdet__lb {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px
    }

    .cdet__vl {
      font-size: 14.5px;
      color: var(--tx2);
      font-weight: 300
    }

    .fcard {
      background: rgba(22, 32, 43, .92);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 38px;
      backdrop-filter: blur(8px)
    }

    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px
    }

    /* Floating labels */
    .ff {
      position: relative;
      margin-bottom: 2px
    }

    .ff--full {
      grid-column: 1/-1
    }

    .ff label {
      position: absolute;
      left: 17px;
      top: 12px;
      font-size: 15px;
      color: var(--tx3);
      font-weight: 400;
      pointer-events: none;
      transition: all .25s var(--ease);
      background: transparent;
      padding: 0 4px
    }

    .ff label span {
      color: var(--grn)
    }

    .ff input,
    .ff select,
    .ff textarea {
      width: 100%;
      padding: 18px 17px 8px;
      background: rgba(10, 15, 20, .8);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      color: var(--tx);
      font-family: var(--sans);
      font-size: 15.5px;
      line-height: 1.35;
      transition: border-color .25s, box-shadow .25s
    }

    .ff input:-webkit-autofill,
    .ff input:-webkit-autofill:hover,
    .ff input:-webkit-autofill:focus,
    .ff textarea:-webkit-autofill,
    .ff textarea:-webkit-autofill:hover,
    .ff textarea:-webkit-autofill:focus,
    .exit-popup__form input:-webkit-autofill,
    .exit-popup__form input:-webkit-autofill:hover,
    .exit-popup__form input:-webkit-autofill:focus,
    .chat-panel__input input:-webkit-autofill,
    .chat-panel__input input:-webkit-autofill:hover,
    .chat-panel__input input:-webkit-autofill:focus,
    .chat-contact input:-webkit-autofill,
    .chat-contact input:-webkit-autofill:hover,
    .chat-contact input:-webkit-autofill:focus,
    .chat-contact textarea:-webkit-autofill,
    .chat-contact textarea:-webkit-autofill:hover,
    .chat-contact textarea:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--tx);
      caret-color: var(--tx);
      box-shadow: 0 0 0 1000px rgba(10, 15, 20, .8) inset;
      -webkit-box-shadow: 0 0 0 1000px rgba(10, 15, 20, .8) inset;
      transition: background-color 9999s ease-out 0s, color 9999s ease-out 0s
    }

    .ff input:autofill,
    .ff textarea:autofill,
    .exit-popup__form input:autofill,
    .chat-panel__input input:autofill,
    .chat-contact input:autofill,
    .chat-contact textarea:autofill {
      color: var(--tx);
      caret-color: var(--tx);
      box-shadow: 0 0 0 1000px rgba(10, 15, 20, .8) inset
    }

    .ff input:-moz-autofill,
    .ff textarea:-moz-autofill,
    .exit-popup__form input:-moz-autofill,
    .chat-panel__input input:-moz-autofill,
    .chat-contact input:-moz-autofill,
    .chat-contact textarea:-moz-autofill {
      color: var(--tx);
      caret-color: var(--tx);
      box-shadow: 0 0 0 1000px rgba(10, 15, 20, .8) inset
    }

    .ff input:focus,
    .ff select:focus,
    .ff textarea:focus {
      outline: none;
      border-color: var(--grn);
      box-shadow: 0 0 0 4px var(--grn-gw)
    }

    .ff input:focus+label,
    .ff input:not(:placeholder-shown)+label,
    .ff input:-webkit-autofill+label,
    .ff input:autofill+label,
    .ff select:focus+label,
    .ff select:not([data-empty])+label,
    .ff textarea:focus+label,
    .ff textarea:not(:placeholder-shown)+label {
      top: -8px;
      left: 13px;
      font-size: 11px;
      color: var(--grn-l);
      font-weight: 600;
      background: var(--bg-card);
      padding: 0 6px
    }

    .ff textarea {
      resize: none;
      min-height: 110px
    }

    .ff select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d9bab' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      padding-top: 18px
    }

    .ff.has-value>label,
    .ff.ff--select2>label {
      top: -8px;
      left: 13px;
      font-size: 11px;
      color: var(--grn-l);
      font-weight: 600;
      background: var(--bg-card);
      padding: 0 6px
    }

    .ff .select2 {
      width: 100% !important
    }

    .ff .select2-container--default .select2-selection--single {
      height: 50px;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      background: rgba(10, 15, 20, .8);
      transition: border-color .25s, box-shadow .25s
    }

    .ff .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: var(--tx);
      font-family: var(--sans);
      font-size: 15.5px;
      line-height: 50px;
      padding-left: 17px;
      padding-right: 42px
    }

    .ff .select2-container--default .select2-selection--single .select2-selection__placeholder {
      color: var(--tx3)
    }

    .ff .select2-container--default .select2-selection--single .select2-selection__arrow {
      height: 50px;
      right: 12px
    }

    .ff .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: var(--tx3) transparent transparent transparent;
      margin-top: -1px
    }

    .ff .select2-container--default.select2-container--focus .select2-selection--single,
    .ff .select2-container--default.select2-container--open .select2-selection--single {
      border-color: var(--grn);
      box-shadow: 0 0 0 4px var(--grn-gw)
    }

    .ff .select2-container--default .select2-selection--single:focus,
    .ff .select2-container--default .select2-selection--single:focus-visible {
      outline: none;
      border-color: var(--grn);
      box-shadow: 0 0 0 4px var(--grn-gw)
    }

    .select2-container--default .select2-results__option {
      font-family: var(--sans);
      font-size: 15px
    }

    .staci-select2-dropdown {
      background: var(--bg-card);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(0, 0, 0, .45)
    }

    .staci-select2-dropdown .select2-search--dropdown {
      padding: 10px
    }

    .staci-select2-dropdown .select2-search__field {
      background: rgba(10, 15, 20, .9);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--tx);
      font-family: var(--sans);
      font-size: 14px;
      padding: 8px 10px
    }

    .staci-select2-dropdown .select2-results__option {
      color: var(--tx2);
      padding: 10px 14px
    }

    .staci-select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
      background: rgba(78, 175, 134, .15);
      color: var(--grn-l)
    }

    .staci-select2-dropdown .select2-results__option--selected {
      background: rgba(78, 175, 134, .22);
      color: var(--tx)
    }

    /* Validation checkmarks */
    .ff .check {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--grn-l);
      font-size: 16px;
      opacity: 0;
      transition: opacity .3s
    }

    .ff.valid .check {
      opacity: 1
    }

    .chk-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 18px 0
    }

    .chk-row input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      background: rgba(10, 15, 20, .85);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: border-color .2s, box-shadow .2s, background-color .2s, transform .15s
    }

    .chk-row input[type="checkbox"]::after {
      content: "";
      width: 10px;
      height: 10px;
      clip-path: polygon(14% 52%, 0 68%, 41% 100%, 100% 25%, 84% 11%, 39% 67%);
      background: #0a0f14;
      transform: scale(0);
      transition: transform .15s ease-out
    }

    .chk-row input[type="checkbox"]:hover {
      border-color: var(--grn)
    }

    .chk-row input[type="checkbox"]:focus-visible {
      outline: none;
      border-color: var(--grn);
      box-shadow: 0 0 0 4px var(--grn-gw)
    }

    .chk-row input[type="checkbox"]:checked {
      border-color: var(--grn);
      background: linear-gradient(135deg, var(--grn-l), var(--grn))
    }

    .chk-row input[type="checkbox"]:checked::after {
      transform: scale(1)
    }

    .chk-row input[type="checkbox"]:active {
      transform: scale(.96)
    }

    .chk-row label {
      font-size: 14px;
      color: var(--tx2);
      line-height: 1.5;
      cursor: pointer
    }

    .chk-row label button {
      color: var(--grn-l);
      text-decoration: underline;
      background: none;
      border: none;
      font-size: inherit;
      transition: color .2s;
      cursor: pointer
    }

    .chk-row label button:is(:hover, :focus-visible) {
      color: var(--grn-p);
      outline: none
    }

    .cap-row {
      display: flex;
      gap: 14px;
      align-items: center
    }

    .cap-code {
      padding: 12px 22px;
      background: var(--bg-surface);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: var(--mono);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 6px;
      color: var(--grn-l);
      user-select: none
    }

    .cap-row input {
      flex: 1
    }

    #cap {
      padding-top: 12px;
      padding-bottom: 12px;
      line-height: 1.2
    }

    .fsubmit {
      margin-top: 18px
    }

    .fsubmit .btn {
      width: 100%;
      justify-content: center
    }

    .fstatus {
      text-align: center;
      font-size: 14.5px;
      margin-top: 12px;
      min-height: 22px
    }

    .fstatus.ok {
      color: var(--grn)
    }

    .fstatus.err {
      color: #e05252
    }

    @media(max-width:800px) {
      .contact__bg-canvas {
        opacity: .14
      }

      .contact__lay {
        grid-template-columns: 1fr
      }

      .fcard {
        padding: 24px
      }

      .fgrid {
        grid-template-columns: 1fr
      }
    }

    /* #12 Closing Summary */
    .closing {
      background: rgba(18, 26, 34, .92);
      backdrop-filter: blur(8px);
      padding: 80px 0
    }

    .closing__bg-canvas {
      z-index: 1;
      opacity: .2
    }

    .closing__bg-canvas canvas {
      filter: saturate(.78) brightness(.72)
    }

    .closing>.container {
      position: relative;
      z-index: 2
    }

    .closing__lay {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center
    }

    .closing__features {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .closing__feat {
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 16px;
      align-items: start
    }

    .closing__feat:last-child {
      border-bottom: none
    }

    .closing__feat-ic {
      width: 40px;
      height: 40px;
      background: var(--grn-gw);
      border: 1px solid var(--border-g);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .closing__feat-ic svg {
      width: 20px;
      height: 20px;
      color: var(--grn-l)
    }

    .closing__feat h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px
    }

    .closing__feat p {
      color: var(--tx2);
      font-size: 15px;
      font-weight: 300
    }

    .closing__brand {
      padding: 40px;
      background: linear-gradient(135deg, rgba(78, 175, 134, .06), rgba(212, 168, 83, .04));
      border: 1px solid var(--border-g);
      border-radius: 24px
    }

    .closing__brand p {
      color: var(--tx2);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 24px
    }

    .closing__brand p strong {
      color: var(--tx);
      font-weight: 600
    }

    .closing__tagline {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--grn-l);
      line-height: 1.2;
      margin-bottom: 28px
    }

    @media(max-width:800px) {
      .closing__lay {
        grid-template-columns: 1fr
      }

      .closing__bg-canvas {
        opacity: .15
      }
    }

    /* Footer */
    .footer {
      background: rgba(18, 26, 34, .96);
      border-top: 1px solid var(--border);
      padding: 52px 0 28px;
      backdrop-filter: blur(12px)
    }

    .ft__grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 36px
    }

    /* #8 Footer logo bigger */
    .ft__brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px
    }

    .ft__brand img {
      height: 80px;
      filter: drop-shadow(0 0 14px rgba(78, 175, 134, .12))
    }

    .ft__tag {
      font-size: 15px;
      color: var(--tx2);
      line-height: 1.65;
      max-width: 300px;
      font-weight: 300
    }

    .ft__h {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .ft__links li+li {
      margin-top: 9px
    }

    .ft__links a {
      font-size: 15px;
      color: var(--tx2);
      transition: color .2s;
      font-weight: 300
    }

    .ft__links a:is(:hover, :focus-visible) {
      color: var(--grn-l)
    }

    .ft__bot {
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap
    }

    .ft__copy {
      font-size: 13px;
      color: var(--tx3)
    }

    .ft__disc {
      font-size: 11.5px;
      color: var(--tx3);
      max-width: 680px;
      line-height: 1.65;
      font-weight: 300
    }

    @media(max-width:700px) {
      .ft__grid {
        grid-template-columns: 1fr
      }
    }

    /* #10 Cookie Consent */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2001;
      background: rgba(18, 26, 34, .97);
      border-top: 1px solid var(--border);
      padding: 20px 28px;
      backdrop-filter: blur(20px);
      display: none;
      animation: slideUp .4s var(--ease)
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%)
      }

      to {
        transform: translateY(0)
      }
    }

    .cookie-banner.show {
      display: block
    }

    .cookie__row {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap
    }

    .cookie__text {
      flex: 1;
      min-width: 280px
    }

    .cookie__text h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px
    }

    .cookie__text p {
      font-size: 13.5px;
      color: var(--tx2);
      font-weight: 300
    }

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

    .cookie__btns button {
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 13.5px;
      font-weight: 600;
      transition: all .2s
    }

    .cookie__btns button:focus-visible {
      outline: none;
      box-shadow: 0 0 16px rgba(111, 201, 161, .34), 0 0 28px rgba(212, 168, 83, .2)
    }

    .cookie__accept {
      background: var(--grn);
      color: #0a0f14
    }

    .cookie__accept:is(:hover, :focus-visible) {
      background: var(--grn-l)
    }

    .cookie__reject {
      border: 1px solid var(--border);
      color: var(--tx2)
    }

    .cookie__reject:is(:hover, :focus-visible) {
      border-color: var(--tx3);
      color: var(--tx)
    }

    .cookie__custom {
      color: var(--grn-l);
      text-decoration: underline;
      font-size: 13px
    }

    /* Cookie preferences panel */
    .cookie-prefs {
      display: none;
      margin-top: 16px;
      max-width: var(--max);
      margin-left: auto;
      margin-right: auto
    }

    .cookie-prefs.show {
      display: block
    }

    .cookie-cat {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--border)
    }

    .cookie-cat:last-child {
      border-bottom: none
    }

    .cookie-cat__info h5 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px
    }

    .cookie-cat__info p {
      font-size: 12px;
      color: var(--tx3);
      font-weight: 300
    }

    .cookie-toggle {
      position: relative;
      width: 44px;
      height: 24px;
      flex-shrink: 0
    }

    .cookie-toggle input {
      opacity: 0;
      width: 0;
      height: 0
    }

    .cookie-toggle .slider {
      position: absolute;
      inset: 0;
      background: var(--bg-surface);
      border-radius: 12px;
      cursor: pointer;
      transition: .3s
    }

    .cookie-toggle .slider::before {
      content: '';
      position: absolute;
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background: #fff;
      border-radius: 50%;
      transition: .3s
    }

    .cookie-toggle input:checked+.slider {
      background: var(--grn)
    }

    .cookie-toggle input:checked+.slider::before {
      transform: translateX(20px)
    }

    .cookie-toggle input:disabled+.slider {
      opacity: .6;
      cursor: default
    }

    .cookie-save {
      margin-top: 12px;
      padding: 10px 24px;
      background: var(--grn);
      color: #0a0f14;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600
    }

    /* #14 Popup Contact Form Modal */
    .popup-form {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px
    }

    .popup-form.act {
      display: flex
    }

    .popup-form__bg {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .72);
      backdrop-filter: blur(5px)
    }

    .popup-form__box {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border-g);
      border-radius: 24px;
      padding: 40px;
      max-width: 480px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto
    }

    .popup-form__x {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 28px;
      color: var(--tx3);
      padding: 4px
    }

    .popup-form__box h3 {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 6px
    }

    .popup-form__box .ssub {
      font-size: 15px;
      margin-bottom: 24px
    }

    /* #17 FAQ Modal */
    .faq-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 24px;
      overflow-y: auto
    }

    .faq-modal.act {
      display: flex
    }

    .faq-modal__bg {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .75);
      backdrop-filter: blur(6px)
    }

    .faq-modal__box {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      max-width: 720px;
      width: 100%;
      margin: 60px auto;
      z-index: 1
    }

    .faq-modal__x {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 28px;
      color: var(--tx3);
      padding: 4px
    }

    .faq-modal__box h3 {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 28px;
      text-align: center
    }

    .faq-cat {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--gld);
      margin: 28px 0 14px;
      padding-top: 20px;
      border-top: 1px solid var(--border)
    }

    .faq-cat:first-of-type {
      margin-top: 0;
      padding-top: 0;
      border-top: none
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color .3s
    }

    .faq-item:hover {
      border-color: var(--border-g)
    }

    .faq-q {
      padding: 18px 20px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background .2s
    }

    .faq-q:hover {
      background: rgba(255, 255, 255, .02)
    }

    .faq-q::after {
      content: '+';
      font-size: 22px;
      color: var(--grn-l);
      font-weight: 300;
      transition: transform .3s;
      flex-shrink: 0
    }

    .faq-item.open .faq-q::after {
      content: '−'
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s var(--ease), padding .4s
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 20px 18px
    }

    .faq-a p {
      color: var(--tx2);
      font-size: 15px;
      line-height: 1.72;
      font-weight: 300
    }

    /* #9 Privacy/Terms Modals */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px
    }

    .modal.act {
      display: flex
    }

    .modal__bg {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .72);
      backdrop-filter: blur(5px)
    }

    .modal__box {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      max-width: 520px;
      width: 100%
    }

    .modal__x {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 28px;
      color: var(--tx3);
      padding: 4px
    }

    .modal__box h3 {
      font-family: var(--serif);
      font-size: 24px;
      margin-bottom: 16px
    }

    .modal__box p {
      color: var(--tx2);
      font-size: 16px;
      line-height: 1.72;
      margin-bottom: 12px;
      font-weight: 300
    }

    /* #23 Exit Intent */
    .exit-popup {
      position: fixed;
      inset: 0;
      z-index: 2001;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px
    }

    .exit-popup.act {
      display: flex
    }

    .exit-popup__bg {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .78);
      backdrop-filter: blur(8px)
    }

    .exit-popup__box {
      position: relative;
      background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
      border: 1px solid var(--border-g);
      border-radius: 28px;
      padding: 48px;
      max-width: 440px;
      width: 100%;
      text-align: center
    }

    .exit-popup__x {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 28px;
      color: var(--tx3)
    }

    .exit-popup__box h3 {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px
    }

    .exit-popup__box>p {
      color: var(--tx2);
      font-size: 16px;
      margin-bottom: 28px;
      font-weight: 300
    }

    .exit-popup__form {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .exit-popup__form input {
      padding: 14px 18px;
      background: rgba(10, 15, 20, .8);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      color: var(--tx);
      font-size: 15px;
      font-family: var(--sans);
      line-height: 1.35
    }

    .exit-popup__form input:focus {
      outline: none;
      border-color: var(--grn);
      box-shadow: 0 0 0 4px var(--grn-gw)
    }

    /* #11 Chat Widget */
    .chat-bubble {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px;
      height: 60px;
      background: var(--grn);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 28px rgba(78, 175, 134, .4);
      z-index: 1500;
      cursor: pointer;
      transition: transform .3s, box-shadow .3s
    }

    .chat-bubble:is(:hover, :focus-visible) {
      transform: scale(1.08);
      box-shadow: 0 8px 36px rgba(78, 175, 134, .55)
    }

    .chat-bubble:focus-visible {
      outline: none
    }

    .chat-bubble svg {
      width: 26px;
      height: 26px;
      color: #fff
    }

    .chat-bubble__badge {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 16px;
      height: 16px;
      background: var(--gld);
      border-radius: 50%;
      border: 2px solid var(--bg-deep);
      font-size: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700
    }

    .chat-panel {
      position: fixed;
      bottom: 100px;
      right: 28px;
      width: 380px;
      max-height: 520px;
      background: var(--bg-card);
      border: 1px solid var(--border-g);
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
      z-index: 1500;
      display: none;
      flex-direction: column;
      overflow: hidden
    }

    .chat-panel.open {
      display: flex
    }

    .chat-panel__header {
      padding: 18px 20px;
      background: linear-gradient(135deg, rgba(78, 175, 134, .1), rgba(22, 32, 43, 1));
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .chat-panel__header h4 {
      font-size: 16px;
      font-weight: 600
    }

    .chat-panel__header span {
      font-size: 12px;
      color: var(--grn-l)
    }

    .chat-panel__close {
      font-size: 22px;
      color: var(--tx3);
      padding: 4px
    }

    .chat-panel__body {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      touch-action: pan-y;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-height: 340px
    }

    .chat-msg {
      max-width: 85%;
      padding: 12px 16px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.6;
      font-weight: 300
    }

    .chat-msg--bot {
      background: linear-gradient(135deg, rgba(78, 175, 134, .14), rgba(78, 175, 134, .08));
      border: 1px solid rgba(111, 201, 161, .45);
      align-self: flex-start;
      color: var(--tx);
      box-shadow: 0 8px 24px rgba(78, 175, 134, .09)
    }

    .chat-msg--user {
      background: rgba(141, 155, 171, .08);
      border: 1px solid rgba(141, 155, 171, .22);
      color: var(--tx3);
      font-size: 13px;
      font-weight: 400;
      align-self: flex-end
    }

    .chat-sep {
      align-self: stretch;
      height: 1px;
      min-height: 1px;
      margin: 2px 0;
      background: linear-gradient(90deg, transparent, rgba(111, 201, 161, .35), transparent)
    }

    .chat-faq {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px
    }

    .chat-faq button {
      padding: 8px 14px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 12.5px;
      color: var(--tx2);
      transition: all .2s;
      font-family: var(--sans)
    }

    .chat-faq button:hover {
      border-color: var(--border-g);
      color: var(--grn-l);
      background: rgba(78, 175, 134, .05)
    }

    .chat-panel__input {
      padding: 14px 16px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 10px
    }

    .chat-panel__input input {
      flex: 1;
      padding: 10px 14px;
      background: rgba(10, 15, 20, .6);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--tx);
      font-size: 14px;
      font-family: var(--sans);
      line-height: 1.35
    }

    .chat-panel__input button {
      width: 38px;
      height: 38px;
      background: var(--grn);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .chat-panel__input button svg {
      width: 16px;
      height: 16px;
      color: #fff
    }

    .chat-contact {
      padding: 16px;
      border-top: 1px solid var(--border);
      display: none;
      flex-direction: column;
      gap: 10px
    }

    .chat-contact.show {
      display: flex
    }

    .chat-contact input,
    .chat-contact textarea {
      padding: 10px 14px;
      background: rgba(10, 15, 20, .6);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--tx);
      font-size: 14px;
      font-family: var(--sans);
      line-height: 1.35
    }

    .chat-contact textarea {
      resize: none;
      height: 60px
    }

    /* #16 Sticky Mobile CTA */
    .mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1500;
      padding: 12px 16px;
      background: rgba(10, 15, 20, .95);
      border-top: 1px solid var(--border-g);
      backdrop-filter: blur(16px)
    }

    .mobile-cta .btn {
      width: 100%;
      justify-content: center
    }

    @media(max-width:920px) {
      .mobile-cta {
        display: none
      }

      .chat-bubble {
        bottom: 28px
      }
    }

    .rv {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s var(--ease), transform .7s var(--ease)
    }

    .rv.vis {
      opacity: 1;
      transform: translateY(0)
    }

    .rv-d1 {
      transition-delay: .1s
    }

    .rv-d2 {
      transition-delay: .2s
    }

    .rv-d3 {
      transition-delay: .3s
    }

    #btt {
      position: fixed;
      bottom: 28px;
      right: 100px;
      width: 48px;
      height: 48px;
      background: var(--grn);
      color: #fff;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(78, 175, 134, .35);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .35s, transform .35s, box-shadow .25s;
      z-index: 900
    }

    #btt.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    #btt:is(:hover, :focus-visible) {
      transform: translateY(-2px);
      box-shadow: 0 10px 34px rgba(78, 175, 134, .5), 0 0 18px rgba(212, 168, 83, .2)
    }

    #btt:focus-visible {
      outline: none
    }

    html.modal-open #btt,
    html.nav-open #btt,
    html.modal-open .chat-bubble,
    html.modal-open .chat-panel,
    html:has(.modal.act) #btt,
    html:has(.popup-form.act) #btt,
    html:has(.faq-modal.act) #btt,
    html:has(.exit-popup.act) #btt,
    html:has(.modal.act) .chat-bubble,
    html:has(.popup-form.act) .chat-bubble,
    html:has(.faq-modal.act) .chat-bubble,
    html:has(.exit-popup.act) .chat-bubble,
    html:has(.modal.act) .chat-panel,
    html:has(.popup-form.act) .chat-panel,
    html:has(.faq-modal.act) .chat-panel,
    html:has(.exit-popup.act) .chat-panel {
      z-index: -1 !important;
      pointer-events: none !important
    }

    #btt svg {
      width: 20px;
      height: 20px
    }

    @media(max-width:920px) {
      #btt {
        bottom: 28px;
        right: 100px
      }
    }

    @media(max-width:430px) {
      :root {
        --hh: 80px
      }

      .hdr__logo {
        padding: 4px 10px;
        margin: -4px -10px
      }

      .hdr__logo img {
        height: 64px
      }

      .container {
        padding: 0 16px
      }

      .btn {
        white-space: normal
      }

      .btn--lg {
        padding: 13px 16px;
        font-size: 14.5px
      }

      .hero__acts .btn {
        width: 100%;
        justify-content: center
      }

      .mnav {
        width: 100vw;
        max-width: 100vw
      }

      .fcard {
        padding: 18px
      }

      .cookie-banner {
        padding: 14px 16px
      }

      .cookie__text {
        min-width: 0
      }

      .cookie__row {
        gap: 12px
      }

      .cookie__btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px
      }

      .cookie__btns button {
        min-width: 0;
        padding: 10px 12px
      }

      .cookie__custom {
        grid-column: 1 / -1;
        text-align: left;
        padding: 6px 0
      }

      .cookie-cat {
        align-items: flex-start;
        gap: 10px
      }

      .cookie-cat__info {
        min-width: 0
      }

      .chat-panel {
        right: 12px;
        bottom: 88px;
        width: calc(100vw - 24px)
      }

      .modal,
      .popup-form,
      .faq-modal,
      .exit-popup {
        padding: 14px
      }

      .modal__box,
      .popup-form__box,
      .faq-modal__box,
      .exit-popup__box {
        padding: 24px 18px;
        border-radius: 18px
      }
    }

    @media(max-width:360px) {
      .container {
        padding: 0 14px
      }

      .btn {
        white-space: normal
      }

      .btn--lg {
        padding: 14px 18px;
        font-size: 15px
      }

      .hero__t {
        font-size: clamp(2rem, 11vw, 2.6rem)
      }

      .hero__d {
        font-size: 16px;
        line-height: 1.62
      }

      .hero__acts {
        gap: 10px
      }

      .hero__acts .btn {
        width: 100%;
        justify-content: center
      }

      .hero__badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 10px 12px;
        gap: 8px
      }

      .hero__bdot {
        width: 34px;
        height: 34px
      }

      .hero__btx {
        font-size: 12px
      }

      .mnav {
        width: 100vw;
        max-width: 100vw
      }

      .fcard {
        padding: 16px
      }

      .cookie-banner {
        padding: 14px
      }

      .cookie__text {
        min-width: 0
      }

      .cookie__btns {
        width: 100%
      }

      .cookie__btns button {
        flex: 1 1 auto;
        min-width: 0;
        padding: 10px 12px
      }

      .modal,
      .popup-form,
      .faq-modal,
      .exit-popup {
        padding: 12px
      }

      .modal__box,
      .popup-form__box,
      .faq-modal__box,
      .exit-popup__box {
        padding: 22px 16px;
        border-radius: 16px
      }

      .faq-modal__box {
        margin: 16px auto
      }

      .chat-panel {
        right: 12px;
        bottom: 88px;
        width: calc(100vw - 24px)
      }

      #btt {
        bottom: 28px;
        right: 96px
      }
    }

    /* Honeypot anti-spam */
    .hp-field {
      position: absolute;
      left: -9999px;
      top: -9999px;
      opacity: 0;
      height: 0;
      width: 0;
      z-index: -1
    }

    .sacred {
      position: absolute;
      pointer-events: none;
      opacity: .016
    }

    /* ═══ UNIQUE SECTION BACKGROUNDS ═══ */
    .hero {
      background: radial-gradient(ellipse at 20% 40%, rgba(78, 175, 134, .08), transparent 55%), radial-gradient(ellipse at 85% 60%, rgba(212, 168, 83, .06), transparent 50%)
    }

    .about {
      background: linear-gradient(180deg, rgba(14, 22, 30, .98), rgba(20, 30, 42, .95))
    }

    .about::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse at 70% 50%, rgba(78, 175, 134, .08), transparent 60%);
      pointer-events: none
    }

    .acronym {
      background: linear-gradient(135deg, rgba(12, 18, 24, .99), rgba(24, 34, 48, .95))
    }

    .acronym::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, .06), transparent 55%);
      pointer-events: none
    }

    .whychoose {
      background: linear-gradient(180deg, rgba(20, 30, 42, .96), rgba(12, 20, 28, .99))
    }

    .whychoose::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 25% 70%, rgba(78, 175, 134, .08), transparent 50%), radial-gradient(ellipse at 75% 25%, rgba(212, 168, 83, .06), transparent 50%);
      pointer-events: none
    }

    .compare-sec {
      background: linear-gradient(180deg, rgba(8, 14, 20, .99), rgba(18, 28, 40, .96))
    }

    .compare-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 90%, rgba(78, 175, 134, .08), transparent 50%);
      pointer-events: none
    }

    .services {
      background: linear-gradient(135deg, rgba(22, 34, 48, .96), rgba(14, 22, 32, .99))
    }

    .services::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 85% 35%, rgba(212, 168, 83, .07), transparent 50%);
      pointer-events: none
    }

    .deepsteps {
      background: linear-gradient(180deg, rgba(10, 16, 24, .99), rgba(20, 32, 46, .96))
    }

    .deepsteps::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 15% 60%, rgba(78, 175, 134, .08), transparent 45%), radial-gradient(ellipse at 85% 30%, rgba(212, 168, 83, .05), transparent 45%);
      pointer-events: none
    }

    .perf {
      background: linear-gradient(180deg, rgba(16, 24, 36, .98), rgba(8, 14, 20, .99))
    }

    .perf::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 35% 40%, rgba(78, 175, 134, .09), transparent 50%);
      z-index: 0;
      pointer-events: none
    }

    .perf .sec-canvas {
      z-index: 1;
      opacity: .9
    }

    .perf>.container {
      position: relative;
      z-index: 2
    }

    .videos {
      background: linear-gradient(135deg, rgba(22, 34, 48, .96), rgba(14, 22, 30, .99))
    }

    .contact {
      background: linear-gradient(180deg, rgba(12, 18, 26, .99), rgba(22, 34, 48, .96))
    }

    .contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 75% 55%, rgba(78, 175, 134, .07), transparent 50%);
      pointer-events: none
    }

    .closing {
      background: linear-gradient(135deg, rgba(20, 34, 50, .96), rgba(28, 42, 58, .92))
    }

    .closing::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 55% 40%, rgba(212, 168, 83, .07), transparent 45%), radial-gradient(ellipse at 15% 80%, rgba(78, 175, 134, .06), transparent 45%);
      pointer-events: none
    }

    /* Section divider lines */
    .about,
    .whychoose,
    .services,
    .deepsteps,
    .perf,
    .videos,
    .contact,
    .closing,
    .acronym,
    .compare-sec {
      border-top: 1px solid rgba(255, 255, 255, .035)
    }

    /* Interactive bg canvases */
    .sec-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden
    }

    .sec-canvas canvas {
      width: 100%;
      height: 100%;
      display: block
    }
