:root {
      --sapc-dark: #040816;
      --sapc-navy: #07112f;
      --sapc-blue: #075cff;
      --sapc-blue-2: #00a7ff;
      --sapc-green: #98ff00;
      --sapc-yellow: #ffd400;
      --sapc-white: #ffffff;
      --sapc-muted: #b7c3e0;
      --sapc-card: rgba(255, 255, 255, .08);
      --sapc-card-2: rgba(255, 255, 255, .12);
      --sapc-border: rgba(255, 255, 255, .16);
      --sapc-shadow: 0 22px 80px rgba(0, 0, 0, .42);
      --sapc-radius: 28px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--sapc-white);
      background:
        radial-gradient(circle at top left, rgba(0, 167, 255, .25), transparent 32rem),
        radial-gradient(circle at top right, rgba(152, 255, 0, .15), transparent 28rem),
        linear-gradient(180deg, #03050d 0%, #07112f 42%, #03050d 100%);
      font-family: Arial, Helvetica, sans-serif;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

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

    .page-wrap {
      position: relative;
      overflow: hidden;
    }

    .page-wrap::before,
    .page-wrap::after {
      content: "";
      position: fixed;
      inset: auto;
      width: 460px;
      height: 460px;
      border-radius: 999px;
      filter: blur(12px);
      opacity: .18;
      pointer-events: none;
      z-index: 0;
    }

    .page-wrap::before {
      top: 120px;
      left: -180px;
      background: var(--sapc-blue-2);
    }

    .page-wrap::after {
      right: -210px;
      bottom: 160px;
      background: var(--sapc-green);
    }

    .section {
      position: relative;
      z-index: 1;
      padding: 92px 0;
    }

    .section-tight {
      padding: 64px 0;
    }

    .navbar {
      background: rgba(4, 8, 22, .84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--sapc-border);
    }

    .navbar-brand {
      color: var(--sapc-white) !important;
      font-weight: 900;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      color: #03050d;
      background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
      box-shadow: 0 0 28px rgba(152, 255, 0, .34);
      margin-right: 10px;
      font-weight: 900;
    }

    .nav-link {
      color: rgba(255, 255, 255, .78) !important;
      font-weight: 800;
      font-size: .92rem;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--sapc-green) !important;
    }

    .btn-main,
    .btn-alt,
    .btn-darkline {
      border: 0;
      border-radius: 999px;
      font-weight: 950;
      letter-spacing: -.02em;
      padding: 14px 24px;
      text-transform: uppercase;
      box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    }

    .btn-main {
      color: #051018;
      background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
    }

    .btn-main:hover,
    .btn-main:focus {
      color: #051018;
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(152, 255, 0, .28);
    }

    .btn-alt {
      color: var(--sapc-white);
      background: linear-gradient(135deg, var(--sapc-blue), var(--sapc-blue-2));
    }

    .btn-alt:hover,
    .btn-alt:focus {
      color: var(--sapc-white);
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(0, 167, 255, .25);
    }

    .btn-darkline {
      color: var(--sapc-white);
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--sapc-border);
    }

    .btn-darkline:hover,
    .btn-darkline:focus {
      color: var(--sapc-white);
      background: rgba(255, 255, 255, .14);
      transform: translateY(-2px);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 112px;
      padding-bottom: 80px;
      position: relative;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(4, 8, 22, .98) 0%, rgba(7, 17, 47, .92) 52%, rgba(5, 45, 118, .42) 100%),
        radial-gradient(circle at 78% 30%, rgba(0, 167, 255, .35), transparent 34rem);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 212, 0, .12);
      border: 1px solid rgba(255, 212, 0, .32);
      color: var(--sapc-yellow);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .03em;
      font-size: .88rem;
      margin-bottom: 22px;
    }

    .hero-title {
      font-weight: 950;
      letter-spacing: -.065em;
      line-height: .92;
      text-transform: uppercase;
      font-size: clamp(3.1rem, 8vw, 7.8rem);
      margin-bottom: 22px;
      text-shadow: 0 12px 38px rgba(0, 0, 0, .32);
    }

    .hero-title .yellow {
      color: var(--sapc-yellow);
      display: block;
    }

    .hero-title .green {
      color: var(--sapc-green);
    }

    .hero-subtitle {
      color: #e9f0ff;
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      line-height: 1.55;
      max-width: 700px;
      margin-bottom: 28px;
    }

    .hero-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      color: rgba(255, 255, 255, .88);
      background: rgba(255, 255, 255, .075);
      border: 1px solid var(--sapc-border);
      font-size: .92rem;
      font-weight: 800;
    }

    .trust-pill i {
      color: var(--sapc-green);
    }

    .hero-visual {
      position: relative;
      margin-top: 28px;
    }

    .hero-frame {
      position: relative;
      border-radius: 34px;
      padding: 14px;
      background: linear-gradient(135deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .04));
      border: 1px solid var(--sapc-border);
      box-shadow: var(--sapc-shadow);
      transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    }

    .hero-frame img {
      display: block;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, .16);
    }

    .floating-card {
      position: absolute;
      left: -18px;
      bottom: 28px;
      max-width: 260px;
      border-radius: 22px;
      padding: 18px;
      background: rgba(4, 8, 22, .86);
      border: 1px solid rgba(152, 255, 0, .26);
      box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
      backdrop-filter: blur(16px);
    }

    .floating-card strong {
      display: block;
      color: var(--sapc-green);
      font-size: 1.35rem;
      line-height: 1;
      text-transform: uppercase;
    }

    .floating-card span {
      color: var(--sapc-muted);
      font-weight: 700;
      font-size: .92rem;
    }

    .mini-proof {
      position: absolute;
      top: -18px;
      right: 16px;
      border-radius: 999px;
      padding: 12px 16px;
      background: linear-gradient(135deg, var(--sapc-blue), var(--sapc-blue-2));
      border: 1px solid rgba(255, 255, 255, .26);
      box-shadow: 0 18px 42px rgba(7, 92, 255, .28);
      font-weight: 950;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .strip-note {
      display: inline-block;
      color: #050508;
      background: var(--sapc-yellow);
      padding: 8px 16px;
      transform: rotate(-1deg);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: -.02em;
      box-shadow: 12px 12px 0 rgba(0, 0, 0, .25);
    }

    .section-title {
      font-weight: 950;
      letter-spacing: -.055em;
      line-height: .98;
      text-transform: uppercase;
      font-size: clamp(2.4rem, 5vw, 5rem);
      margin-bottom: 16px;
    }

    .section-title .yellow {
      color: var(--sapc-yellow);
    }

    .section-title .green {
      color: var(--sapc-green);
    }

    .section-kicker {
      color: var(--sapc-green);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }

    .section-lead {
      color: #d8e3ff;
      font-size: 1.18rem;
      line-height: 1.65;
      max-width: 830px;
    }

    .glass-card {
      height: 100%;
      border-radius: var(--sapc-radius);
      padding: 28px;
      background: var(--sapc-card);
      border: 1px solid var(--sapc-border);
      box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
      backdrop-filter: blur(16px);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .glass-card:hover {
      transform: translateY(-6px);
      background: var(--sapc-card-2);
      border-color: rgba(152, 255, 0, .3);
    }

    .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #03050d;
      background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
      font-size: 1.7rem;
      margin-bottom: 18px;
      box-shadow: 0 16px 36px rgba(152, 255, 0, .22);
    }

    .glass-card h3,
    .glass-card h4 {
      font-weight: 950;
      letter-spacing: -.035em;
      margin-bottom: 10px;
    }

    .glass-card p,
    .glass-card li {
      color: var(--sapc-muted);
      line-height: 1.62;
      font-weight: 600;
    }

    .comparison-wrap {
      border-radius: 34px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
      border: 1px solid var(--sapc-border);
      box-shadow: var(--sapc-shadow);
    }

    .comparison-side {
      padding: 42px;
      min-height: 100%;
    }

    .comparison-old {
      background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .22));
    }

    .comparison-new {
      background: radial-gradient(circle at top right, rgba(152, 255, 0, .16), transparent 20rem), linear-gradient(160deg, rgba(7, 92, 255, .38), rgba(4, 8, 22, .2));
    }

    .tag-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      color: #050508;
      background: var(--sapc-yellow);
      font-weight: 950;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .bad-label {
      color: var(--sapc-white);
      background: rgba(255, 255, 255, .13);
      border: 1px solid var(--sapc-border);
    }

    .social-post-box {
      border-radius: 24px;
      background: #f7f8fb;
      color: #111827;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    }

    .social-link {
      color: #005bdc;
      text-decoration: underline;
      word-break: break-all;
      font-size: 1.08rem;
    }

    .check-list,
    .x-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
    }

    .check-list li,
    .x-list li {
      position: relative;
      padding-left: 34px;
      margin-bottom: 12px;
      color: #dce7ff;
      font-weight: 750;
    }

    .check-list li::before,
    .x-list li::before {
      position: absolute;
      left: 0;
      top: 0;
      font-family: "bootstrap-icons";
      font-weight: 400;
    }

    .check-list li::before {
      content: "\F26A";
      color: var(--sapc-green);
    }

    .x-list li::before {
      content: "\F623";
      color: #ff6473;
    }

    .workflow-card {
      position: relative;
      border-radius: 30px;
      padding: 32px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--sapc-border);
      min-height: 260px;
      overflow: hidden;
    }

    .workflow-number {
      width: 62px;
      height: 62px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      color: #03050d;
      background: var(--sapc-yellow);
      font-weight: 950;
      font-size: 1.7rem;
      margin-bottom: 20px;
      box-shadow: 0 16px 38px rgba(255, 212, 0, .2);
    }

    .workflow-card h3 {
      font-weight: 950;
      letter-spacing: -.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .workflow-card p {
      color: var(--sapc-muted);
      font-weight: 650;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .workflow-card::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -70px;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(0, 167, 255, .28), transparent 70%);
    }

    .software-window {
      border-radius: 32px;
      background: #08142d;
      border: 1px solid rgba(255, 255, 255, .18);
      overflow: hidden;
      box-shadow: var(--sapc-shadow);
    }

    .software-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: linear-gradient(90deg, #111b35, #07112f);
      border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .32);
    }

    .software-body {
      display: grid;
      grid-template-columns: 220px 1fr;
      min-height: 430px;
    }

    .software-sidebar {
      padding: 22px;
      background: rgba(3, 5, 13, .45);
      border-right: 1px solid rgba(255, 255, 255, .09);
    }

    .software-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #c6d2f1;
      font-weight: 850;
      padding: 12px 10px;
      border-radius: 14px;
      margin-bottom: 8px;
    }

    .software-nav-item.active {
      color: #06101b;
      background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
    }

    .software-content {
      padding: 24px;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 16px;
    }

    .dash-box {
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--sapc-border);
      padding: 18px;
    }

    .dash-box span {
      color: var(--sapc-muted);
      display: block;
      font-size: .88rem;
      font-weight: 800;
    }

    .dash-box strong {
      display: block;
      color: var(--sapc-white);
      font-size: 1.9rem;
      font-weight: 950;
      margin-top: 8px;
    }

    .fake-editor {
      border-radius: 22px;
      background: #f6f8ff;
      color: #111827;
      padding: 22px;
      min-height: 220px;
    }

    .fake-editor h4 {
      font-weight: 950;
      color: #07112f;
    }

    .fake-line {
      height: 10px;
      border-radius: 999px;
      background: #d6dded;
      margin: 12px 0;
    }

    .fake-line.short {
      width: 62%;
    }

    .fake-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .fake-chip {
      border-radius: 999px;
      background: #e7efff;
      color: #075cff;
      padding: 8px 12px;
      font-weight: 850;
      font-size: .82rem;
    }

    .screenshot-card {
      overflow: hidden;
      border-radius: 30px;
      background: var(--sapc-card);
      border: 1px solid var(--sapc-border);
      box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
      height: 100%;
    }

    .screenshot-card img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .screenshot-card .cap {
      padding: 20px;
    }

    .screenshot-card h3 {
      font-size: 1.15rem;
      font-weight: 950;
      letter-spacing: -.03em;
      margin-bottom: 8px;
    }

    .screenshot-card p {
      color: var(--sapc-muted);
      font-weight: 650;
      line-height: 1.55;
      margin: 0;
    }

    .pricing-card {
      border-radius: 34px;
      padding: 34px;
      background:
        radial-gradient(circle at top right, rgba(152, 255, 0, .13), transparent 20rem),
        rgba(255, 255, 255, .08);
      border: 1px solid rgba(152, 255, 0, .24);
      box-shadow: var(--sapc-shadow);
    }

    .price-text {
      font-size: clamp(2.6rem, 5vw, 5rem);
      font-weight: 950;
      letter-spacing: -.055em;
      line-height: 1;
      color: var(--sapc-green);
    }

    .price-note {
      color: var(--sapc-muted);
      font-weight: 700;
    }

    .bonus-box {
      border-radius: 20px;
      background: rgba(0, 167, 255, .12);
      border: 1px solid rgba(0, 167, 255, .25);
      padding: 18px;
      height: 100%;
    }

    .bonus-box strong {
      display: block;
      color: var(--sapc-white);
      font-weight: 950;
      margin-bottom: 6px;
    }

    .bonus-box span {
      color: var(--sapc-muted);
      font-weight: 650;
    }

    .faq-item {
      border-radius: 24px;
      padding: 24px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid var(--sapc-border);
      margin-bottom: 14px;
    }

    .faq-item h3 {
      font-size: 1.15rem;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .faq-item p {
      color: var(--sapc-muted);
      font-weight: 650;
      line-height: 1.62;
      margin-bottom: 0;
    }

    .final-cta {
      border-radius: 38px;
      padding: 50px;
      background:
        radial-gradient(circle at top right, rgba(255, 212, 0, .26), transparent 24rem),
        linear-gradient(135deg, rgba(7, 92, 255, .46), rgba(4, 8, 22, .78));
      border: 1px solid rgba(255, 255, 255, .18);
      box-shadow: var(--sapc-shadow);
      overflow: hidden;
      position: relative;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -120px;
      bottom: -140px;
      background: var(--sapc-green);
      opacity: .16;
      border-radius: 999px;
      filter: blur(8px);
    }

    .footer {
      position: relative;
      z-index: 1;
      padding: 38px 0;
      border-top: 1px solid var(--sapc-border);
      background: rgba(4, 8, 22, .82);
      color: rgba(255, 255, 255, .72);
    }

    .footer a {
      color: rgba(255, 255, 255, .86);
      font-weight: 750;
    }

    .footer a:hover {
      color: var(--sapc-green);
    }

    .sticky-mobile-cta {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1040;
      padding: 10px 14px;
      background: rgba(4, 8, 22, .92);
      border-top: 1px solid var(--sapc-border);
      backdrop-filter: blur(16px);
    }

    @media (max-width: 991.98px) {
      .hero {
        min-height: auto;
        padding-top: 104px;
      }

      .hero-frame {
        transform: none;
      }

      .floating-card,
      .mini-proof {
        position: static;
        margin-top: 14px;
        max-width: none;
      }

      .software-body {
        grid-template-columns: 1fr;
      }

      .software-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 74px 0;
      }

      .comparison-side,
      .final-cta {
        padding: 30px;
      }
    }

    @media (max-width: 767.98px) {
      body {
        padding-bottom: 72px;
      }

      .hero-title {
        font-size: clamp(2.65rem, 15vw, 4.7rem);
      }

      .hero-cta-row .btn-main,
      .hero-cta-row .btn-alt,
      .hero-cta-row .btn-darkline {
        width: 100%;
      }

      .trust-pill {
        width: 100%;
        justify-content: center;
      }

      .software-sidebar {
        grid-template-columns: 1fr;
      }

      .sticky-mobile-cta {
        display: block;
      }
    }

    .legal-hero {
      padding-top: 152px;
      padding-bottom: 70px;
      background:
        linear-gradient(90deg, rgba(4, 8, 22, .98) 0%, rgba(7, 17, 47, .93) 60%, rgba(5, 45, 118, .44) 100%),
        radial-gradient(circle at 78% 32%, rgba(0, 167, 255, .38), transparent 34rem);
    }

    .legal-title {
      font-weight: 950;
      letter-spacing: -.06em;
      line-height: .96;
      text-transform: uppercase;
      font-size: clamp(2.6rem, 6vw, 6.2rem);
      margin-bottom: 18px;
      text-shadow: 0 12px 38px rgba(0, 0, 0, .32);
    }

    .legal-title .yellow {
      color: var(--sapc-yellow);
    }

    .legal-title .green {
      color: var(--sapc-green);
    }

    .legal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .legal-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      color: rgba(255, 255, 255, .88);
      background: rgba(255, 255, 255, .075);
      border: 1px solid var(--sapc-border);
      font-size: .92rem;
      font-weight: 800;
    }

    .legal-card {
      border-radius: 32px;
      padding: clamp(24px, 4vw, 46px);
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--sapc-border);
      box-shadow: var(--sapc-shadow);
      backdrop-filter: blur(16px);
    }

    .legal-content h2 {
      color: var(--sapc-white);
      font-weight: 950;
      letter-spacing: -.035em;
      margin-top: 34px;
      margin-bottom: 12px;
    }

    .legal-content h2:first-child {
      margin-top: 0;
    }

    .legal-content h3 {
      color: var(--sapc-yellow);
      font-weight: 900;
      margin-top: 24px;
      margin-bottom: 10px;
    }

    .legal-content p,
    .legal-content li {
      color: var(--sapc-muted);
      font-size: 1.03rem;
      line-height: 1.72;
      font-weight: 600;
    }

    .legal-content a {
      color: var(--sapc-green);
      font-weight: 850;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .legal-content ul,
    .legal-content ol {
      padding-left: 1.25rem;
      margin-bottom: 20px;
    }

    .notice-box {
      border-radius: 24px;
      padding: 22px;
      background: rgba(255, 212, 0, .12);
      border: 1px solid rgba(255, 212, 0, .32);
      margin-bottom: 26px;
    }

    .notice-box strong {
      color: var(--sapc-yellow);
      display: block;
      font-weight: 950;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .notice-box p {
      margin: 0;
      color: #f2f6ff;
    }

    .contact-panel {
      border-radius: 30px;
      padding: 30px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--sapc-border);
      box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
      height: 100%;
    }

    .form-control,
    .form-select {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      color: var(--sapc-white);
      border-radius: 16px;
      padding: 14px 16px;
      font-weight: 650;
    }

    .form-control:focus,
    .form-select:focus {
      background: rgba(255, 255, 255, .10);
      border-color: rgba(152, 255, 0, .55);
      color: var(--sapc-white);
      box-shadow: 0 0 0 .25rem rgba(152, 255, 0, .12);
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, .48);
    }

    .form-label {
      font-weight: 900;
      color: #eef4ff;
    }

    .small-muted {
      color: var(--sapc-muted);
      font-weight: 650;
      line-height: 1.55;
    }

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

    .legal-link-grid a {
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 18px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid var(--sapc-border);
      color: var(--sapc-white);
      font-weight: 850;
    }

    .legal-link-grid a:hover,
    .legal-link-grid a:focus {
      color: #06101b;
      background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
    }

    @media (max-width: 767.98px) {
      .legal-link-grid {
        grid-template-columns: 1fr;
      }

      .legal-hero {
        padding-top: 122px;
      }
    }

/* Upgraded legal/support page styling */
.legal-hero {
  position: relative;
  z-index: 1;
  padding-top: 148px;
  padding-bottom: 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 8, 22, .98) 0%, rgba(7, 17, 47, .94) 48%, rgba(5, 45, 118, .58) 100%),
    radial-gradient(circle at 82% 30%, rgba(0, 167, 255, .48), transparent 34rem),
    radial-gradient(circle at 16% 86%, rgba(152, 255, 0, .18), transparent 26rem);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 86%);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-title {
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .92;
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 7.2rem);
  margin-bottom: 18px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, .32);
}

.legal-title .yellow,
.legal-title .highlight-yellow {
  color: var(--sapc-yellow);
}

.legal-title .green,
.legal-title .highlight-green {
  color: var(--sapc-green);
}

.legal-hero-copy {
  max-width: 780px;
}

.legal-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-meta span,
.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .075);
  border: 1px solid var(--sapc-border);
  font-size: .92rem;
  font-weight: 800;
}

.legal-meta i,
.legal-pill i {
  color: var(--sapc-green);
}

.legal-visual-stack {
  position: relative;
}

.legal-visual-card {
  position: relative;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .055));
  border: 1px solid var(--sapc-border);
  box-shadow: var(--sapc-shadow);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  overflow: hidden;
}

.legal-visual-card img {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.legal-visual-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(152,255,0,.22), transparent 34%, rgba(0,167,255,.22));
  pointer-events: none;
  mix-blend-mode: screen;
}

.legal-float-card {
  position: absolute;
  left: -22px;
  bottom: 28px;
  max-width: 260px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(4, 8, 22, .9);
  border: 1px solid rgba(152, 255, 0, .3);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.legal-float-card strong {
  display: block;
  color: var(--sapc-green);
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 950;
}

.legal-float-card span {
  display: block;
  color: var(--sapc-muted);
  font-weight: 700;
  font-size: .92rem;
  margin-top: 5px;
}

.legal-mini-badge {
  position: absolute;
  top: -16px;
  right: 12px;
  z-index: 3;
  border-radius: 999px;
  padding: 12px 16px;
  color: #06101b;
  background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
  box-shadow: 0 18px 42px rgba(152, 255, 0, .28);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-quick-row {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.legal-quick-card {
  height: 100%;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--sapc-border);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.legal-quick-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #03050d;
  background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
  font-size: 1.55rem;
  margin-bottom: 14px;
  box-shadow: 0 16px 36px rgba(152, 255, 0, .22);
}

.legal-quick-card h2,
.legal-quick-card h3 {
  font-weight: 950;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.legal-quick-card p {
  color: var(--sapc-muted);
  line-height: 1.58;
  font-weight: 650;
  margin-bottom: 0;
}

.legal-section-bg {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 167, 255, .12), transparent 26rem),
    radial-gradient(circle at 92% 72%, rgba(152, 255, 0, .09), transparent 24rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 96px;
}

.legal-side-card {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--sapc-border);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
  margin-bottom: 18px;
}

.legal-side-card h2,
.legal-side-card h3 {
  color: var(--sapc-white);
  font-weight: 950;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-side-card p,
.legal-side-card li {
  color: var(--sapc-muted);
  font-weight: 650;
  line-height: 1.58;
}

.legal-nav-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.legal-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-weight: 850;
}

.legal-nav-list a:hover,
.legal-nav-list a:focus {
  color: #06101b;
  background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
}

.legal-card {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 50px);
  background:
    radial-gradient(circle at top right, rgba(0, 167, 255, .10), transparent 23rem),
    rgba(255, 255, 255, .08);
  border: 1px solid var(--sapc-border);
  box-shadow: var(--sapc-shadow);
  backdrop-filter: blur(16px);
}

.legal-content h2 {
  position: relative;
  color: var(--sapc-white);
  font-weight: 950;
  letter-spacing: -.04em;
  margin-top: 42px;
  margin-bottom: 13px;
  padding-top: 8px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sapc-green), var(--sapc-yellow));
}

.legal-content h3 {
  color: var(--sapc-yellow);
  font-weight: 900;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--sapc-muted);
  font-size: 1.03rem;
  line-height: 1.72;
  font-weight: 600;
}

.legal-content a {
  color: var(--sapc-green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 20px;
}

.notice-box {
  border-radius: 26px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, .16), rgba(152, 255, 0, .07));
  border: 1px solid rgba(255, 212, 0, .34);
  margin-bottom: 30px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .18);
}

.notice-box strong {
  color: var(--sapc-yellow);
  display: block;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.notice-box p {
  margin: 0;
  color: #f2f6ff;
}

.legal-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.legal-highlight {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
}

.legal-highlight strong {
  display: block;
  color: var(--sapc-white);
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-highlight span {
  color: var(--sapc-muted);
  font-weight: 650;
  line-height: 1.56;
}

.contact-panel {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(152, 255, 0, .11), transparent 20rem),
    rgba(255, 255, 255, .08);
  border: 1px solid var(--sapc-border);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
  height: 100%;
  backdrop-filter: blur(16px);
}

.contact-hero-card {
  border-radius: 32px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, .18), transparent 18rem),
    rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--sapc-shadow);
}

.contact-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.contact-step:last-child {
  border-bottom: 0;
}

.contact-step .step-dot {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #06101b;
  background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
  font-weight: 950;
}

.contact-step strong {
  display: block;
  color: var(--sapc-white);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 4px;
}

.contact-step span {
  color: var(--sapc-muted);
  font-weight: 650;
  line-height: 1.5;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--sapc-white);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 650;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(152, 255, 0, .55);
  color: var(--sapc-white);
  box-shadow: 0 0 0 .25rem rgba(152, 255, 0, .12);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .48);
}

.form-select option {
  color: #07112f;
}

.form-label {
  font-weight: 900;
  color: #eef4ff;
}

.small-muted {
  color: var(--sapc-muted);
  font-weight: 650;
  line-height: 1.55;
}

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

.legal-link-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--sapc-border);
  color: var(--sapc-white);
  font-weight: 850;
}

.legal-link-grid a:hover,
.legal-link-grid a:focus {
  color: #06101b;
  background: linear-gradient(135deg, var(--sapc-green), var(--sapc-yellow));
}

@media (max-width: 991.98px) {
  .legal-visual-card {
    transform: none;
  }

  .legal-float-card,
  .legal-mini-badge {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-quick-row {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .legal-hero {
    padding-top: 122px;
    padding-bottom: 58px;
  }

  .legal-title {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .legal-hero-actions .btn,
  .legal-meta span,
  .legal-pill {
    width: 100%;
    justify-content: center;
  }

  .legal-highlight-grid,
  .legal-link-grid {
    grid-template-columns: 1fr;
  }
}
