
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #0B1120;
      line-height: 1.5;
      overflow-x: hidden;
    }
    :root {
      --ink: #0B1120;
      --sky: #0057FF;
      --sky-light: #EEF3FF;
      --mint: #00C896;
      --sand: #F5F4F0;
      --white: #ffffff;
      --deadline: #FF4444;
    }
    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 5%;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e8eaed;
    }
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--sky);
      letter-spacing: -0.5px;
    }
    .nav-logo span { color: var(--ink); }
    .nav-logo sup { font-size: 0.55rem; vertical-align: super; color: var(--sky); }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--ink);
      font-size: 0.85rem;
      font-weight: 500;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      background: var(--sky);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: #0044CC; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-signin {
      color: var(--ink);
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      border: 1px solid #d9dce2;
      white-space: nowrap;
      transition: border-color 0.2s, color 0.2s;
    }
    .nav-signin:hover { border-color: var(--sky); color: var(--sky); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 5% 72px;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 87, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
    }
    .hero-text {
      flex: 1 1 55%;
      min-width: 280px;
    }
    .hero-visual {
      flex: 0 0 38%;
      min-width: 240px;
      margin-top: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 8px;
      backdrop-filter: blur(4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .hero-visual img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      image-rendering: pixelated;
    }
    /* HERO SLIDESHOW – looping crossfade */
    .hero-slideshow {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 2;
      border-radius: 12px;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      image-rendering: auto;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }
    .hero-slide.is-active { opacity: 1; }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide { transition: none; }
    }
    .deadline-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 68, 68, 0.15);
      border: 1px solid rgba(255, 68, 68, 0.35);
      border-radius: 100px;
      padding: 4px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #FF8080;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
      width: fit-content;
    }
    .deadline-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--deadline);
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.4); }
    }
    .hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.8rem, 3.6vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      letter-spacing: -0.8px;
      max-width: 700px;
      margin-bottom: 18px;
    }
    .hero h1 em { font-style: normal; color: var(--mint); }
    .hero-sub {
      font-size: clamp(0.9rem, 1.4vw, 1rem);
      color: rgba(255, 255, 255, 0.58);
      max-width: 520px;
      margin-bottom: 32px;
      font-weight: 300;
      line-height: 1.6;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
    .btn-primary {
      background: var(--sky);
      color: var(--white);
      padding: 11px 26px;
      border-radius: 9px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-primary:hover { background: #0044CC; transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 11px 26px;
      border-radius: 9px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.22);
      cursor: pointer;
      transition: border-color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-outline:hover { border-color: rgba(255, 255, 255, 0.55); transform: translateY(-2px); }

    /* STATS – single line, now placed below mandate banner */
    .stats-strip {
      background: #0B1120;
      padding: 14px 5%;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .stat-item {
      display: flex;
      flex-direction: row;
      align-items: baseline;
      gap: 8px;
      flex-wrap: nowrap;
      white-space: nowrap;
    }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--mint);
      line-height: 1.2;
      white-space: nowrap;
    }
    .stat-label {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.3px;
      font-weight: 400;
      white-space: nowrap;
    }

    /* mandate banner */
    .mandate {
      background: var(--sky-light);
      padding: 16px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      border-top: 3px solid var(--sky);
    }
    .mandate-item { text-align: center; }
    .mandate-date {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--sky);
    }
    .mandate-desc { font-size: 0.7rem; color: #8A94A6; margin-top: 2px; }
    .mandate-divider { width: 1px; height: 30px; background: #C8D5F0; }

    /* sections */
    section { padding: 72px 5%; }
    .section-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.6px;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 0.9rem;
      color: #8A94A6;
      max-width: 520px;
      line-height: 1.6;
    }

    /* benefits */
    .benefits { background: var(--sand); }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 40px;
    }
    .benefit-card {
      background: var(--white);
      border-radius: 14px;
      padding: 24px 22px;
      border: 1px solid #E8EAED;
      transition: transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .benefit-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--sky);
    }
    .benefit-icon {
      width: 38px; height: 38px;
      background: var(--sky-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .benefit-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .benefit-card p { font-size: 0.8rem; color: #8A94A6; line-height: 1.6; }

    /* features */
    .features { background: var(--sky-light); }
    .feature-cat {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 8px;
    }
    .benefit-card .mini-badge {
      display: inline-block;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      padding: 2px 7px;
      border-radius: 100px;
      margin-left: 6px;
      vertical-align: middle;
      background: #E8FFF5;
      color: #00A67D;
    }
    .benefit-card .mini-badge.roadmap { background: #FDECEC; color: #C23B3B; }

    /* how it works */
    .how-it-works { background: var(--white); }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
      margin-top: 44px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: #E0E5EF;
      z-index: 0;
    }
    .step {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 8px;
    }
    .step-num {
      width: 46px; height: 46px;
      background: var(--sky);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--white);
      margin: 0 auto 16px;
      border: 4px solid var(--white);
      box-shadow: 0 0 0 2px var(--sky);
    }
    .step h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .step p { font-size: 0.75rem; color: #8A94A6; line-height: 1.5; }

    /* demo section */
    .demo-section {
      background: var(--ink);
      padding: 72px 5%;
      text-align: center;
    }
    .demo-section .section-label { color: var(--mint); }
    .demo-section .section-title { color: var(--white); max-width: 600px; margin: 0 auto 12px; }
    .demo-section .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 32px; text-align: center; }

    /* compliance */
    .compliance { background: var(--ink); color: var(--white); }
    .compliance .section-title { color: var(--white); }
    .compliance .section-sub { color: rgba(255,255,255,0.5); }
    .compliance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 40px;
      align-items: center;
    }
    .timeline { display: flex; flex-direction: column; gap: 0; }
    .timeline-item {
      display: flex;
      gap: 16px;
      padding-bottom: 22px;
      position: relative;
    }
    .timeline-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 17px;
      top: 36px;
      width: 2px;
      bottom: 0;
      background: rgba(255,255,255,0.08);
    }
    .timeline-dot {
      width: 34px; height: 34px;
      min-width: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 700;
    }
    .dot-done { background: var(--mint); color: var(--ink); }
    .dot-now { background: var(--sky); color: var(--white); }
    .dot-sme { background: rgba(255,68,68,0.15); border: 2px solid var(--deadline); color: var(--deadline); }
    .tl-date {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--mint);
      margin-bottom: 2px;
    }
    .tl-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
    .compliance-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 30px;
    }
    .compliance-box h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 18px;
      color: var(--white);
    }
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }
    .check-list li::before {
      content: '✓';
      background: var(--mint);
      color: var(--ink);
      border-radius: 50%;
      width: 18px;
      height: 18px;
      min-width: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.55rem;
      font-weight: 800;
      margin-top: 2px;
    }

    /* pricing */
    .pricing { background: var(--sand); }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      margin-top: 40px;
      max-width: 800px;
    }
    .price-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 22px;
      border: 1px solid #E8EAED;
      transition: transform 0.2s;
    }
    .price-card:hover { transform: translateY(-3px); }
    .price-card.featured {
      background: var(--sky);
      color: var(--white);
      border-color: var(--sky);
      position: relative;
    }
    .featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--mint);
      color: var(--ink);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 100px;
    }
    .plan-name {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      opacity: 0.65;
    }
    .plan-price {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 4px;
    }
    .plan-cycle {
      font-size: 0.72rem;
      opacity: 0.5;
      margin-bottom: 18px;
    }
    .price-card.featured .plan-cycle { color: rgba(255,255,255,0.6); }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 22px;
    }
    .plan-features li {
      font-size: 0.78rem;
      display: flex;
      gap: 6px;
      align-items: flex-start;
      color: #8A94A6;
    }
    .price-card.featured .plan-features li { color: rgba(255,255,255,0.8); }
    .plan-features li::before { content: '→'; font-weight: 700; color: var(--sky); }
    .price-card.featured .plan-features li::before { color: var(--mint); }
    .plan-btn {
      width: 100%;
      padding: 10px;
      border-radius: 9px;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-align: center;
      text-decoration: none;
      display: block;
      transition: background 0.2s;
    }
    .plan-btn-outline { background: transparent; color: var(--sky); border: 2px solid var(--sky); }
    .plan-btn-outline:hover { background: var(--sky); color: var(--white); }
    .plan-btn-solid { background: var(--white); color: var(--sky); }
    .plan-btn-solid:hover { background: #EEF3FF; }

    /* contact */
    .contact-section {
      background: var(--white);
      padding: 72px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .contact-detail {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
    }
    .contact-detail-icon {
      width: 36px; height: 36px;
      min-width: 36px;
      background: var(--sky-light);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }
    .contact-detail-text { font-size: 0.8rem; color: #8A94A6; line-height: 1.4; }
    .contact-detail-text strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.85rem; }
    .contact-form-box {
      background: var(--sand);
      border-radius: 18px;
      padding: 32px;
      border: 1px solid #E8EAED;
    }
    .contact-form-box h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 12px;
    }
    .form-group label {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--ink);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 9px 12px;
      border: 1.5px solid #DDE1EA;
      border-radius: 9px;
      font-size: 0.8rem;
      font-family: 'Inter', sans-serif;
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--sky); }
    .form-group textarea { resize: vertical; min-height: 70px; }
    .form-submit {
      width: 100%;
      padding: 11px;
      background: var(--sky);
      color: var(--white);
      border: none;
      border-radius: 9px;
      font-size: 0.85rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 4px;
    }
    .form-submit:hover { background: #0044CC; }
    .form-note {
      font-size: 0.65rem;
      color: #8A94A6;
      text-align: center;
      margin-top: 8px;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 16px;
      background: #E8FFF5;
      border-radius: 10px;
      border: 1px solid #00C896;
      color: #006B52;
      font-weight: 600;
      font-size: 0.85rem;
      margin-top: 12px;
    }

    /* cta */
    .cta-section {
      background: linear-gradient(135deg, var(--sky) 0%, #0033AA 100%);
      padding: 72px 5%;
      text-align: center;
      color: var(--white);
    }
    .cta-section h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 3.2vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }
    .cta-section p { font-size: 0.9rem; opacity: 0.72; margin-bottom: 28px; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* WhatsApp fixed */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5); }
    .whatsapp-float svg { width: 28px; height: 28px; }

    /* footer */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.38);
      padding: 28px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.72rem;
    }
    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      color: var(--white);
      font-size: 0.95rem;
    }
    .footer-logo sup { font-size: 0.5rem; vertical-align: super; color: rgba(255,255,255,0.6); }
    .footer-links { display: flex; gap: 18px; }
    .footer-links a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-logo { font-size: 1.05rem; }
      .nav-actions { gap: 12px; }
      .nav-signin { padding: 6px 2px; font-size: 0.8rem; border: none; }
      .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
      .cta-long { display: none; }
      .compliance-grid { grid-template-columns: 1fr; }
      .contact-section { grid-template-columns: 1fr; gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .steps::before { display: none; }
      .mandate { gap: 16px; }
      .mandate-divider { display: none; }
      .hero-visual { flex: 1 1 100%; }
      .stat-item { flex-wrap: nowrap; }
      .stat-label { font-size: 0.55rem; }
      .stat-num { font-size: 1.1rem; }
      .stats-strip { gap: 20px; padding: 12px 5%; }
    }

    /* ============ LEGAL PAGES (Privacy / Terms) ============ */
    .legal-page { display: none; }
    body.view-legal > section:not(.legal-page),
    body.view-legal > .stats-strip,
    body.view-legal > .mandate { display: none !important; }
    body.view-legal .legal-page.is-active { display: block; }
    .legal-wrap { max-width: 820px; margin: 0 auto; padding: 104px 5% 72px; }
    .legal-back {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.8rem; font-weight: 600; color: var(--sky);
      text-decoration: none; margin-bottom: 26px;
    }
    .legal-back:hover { text-decoration: underline; }
    .legal-eyebrow {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--sky); margin-bottom: 12px;
    }
    .legal-page h1 {
      font-family: 'Syne', sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.4rem);
      font-weight: 800; letter-spacing: -0.6px; color: var(--ink); margin-bottom: 8px;
    }
    .legal-updated { font-size: 0.8rem; color: #8A94A6; margin-bottom: 30px; }
    .legal-note {
      background: #FFF8E6; border: 1px solid #F0D48A; color: #7A5B00;
      border-radius: 10px; padding: 14px 16px; font-size: 0.8rem;
      line-height: 1.6; margin-bottom: 8px;
    }
    .legal-toc {
      background: var(--sand); border: 1px solid #E8EAED; border-radius: 12px;
      padding: 18px 22px; margin-top: 22px;
    }
    .legal-toc strong {
      display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #8A94A6; margin-bottom: 10px;
    }
    .legal-toc ol {
      margin: 0; padding-left: 18px; columns: 2; column-gap: 28px; font-size: 0.78rem;
    }
    .legal-toc li { margin-bottom: 5px; break-inside: avoid; }
    .legal-toc a { color: #5A6472; text-decoration: none; }
    .legal-toc a:hover { color: var(--sky); }
    .legal-page section {
      padding: 24px 0; border-top: 1px solid #E8EAED; scroll-margin-top: 80px;
    }
    .legal-page h2 {
      font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
      color: var(--ink); margin-bottom: 12px;
    }
    .legal-page p.legal-sub {
      font-weight: 600; color: var(--ink); font-size: 0.86rem; margin: 16px 0 6px;
    }
    .legal-page p, .legal-page li { font-size: 0.875rem; line-height: 1.7; color: #3A4453; }
    .legal-page p { margin-bottom: 12px; }
    .legal-page ul { margin: 0 0 12px; padding-left: 20px; }
    .legal-page li { margin-bottom: 7px; }
    .legal-page a { color: var(--sky); }
    .legal-key {
      background: var(--sky-light); border: 1px solid #D6E2FF; border-radius: 10px;
      padding: 14px 16px; margin-bottom: 12px; font-size: 0.875rem;
      line-height: 1.7; color: #26324A;
    }
    .legal-table-wrap { overflow-x: auto; }
    .legal-page table {
      border-collapse: collapse; width: 100%; margin: 4px 0 12px; font-size: 0.82rem;
    }
    .legal-page th, .legal-page td {
      text-align: left; padding: 9px 14px 9px 0; border-bottom: 1px solid #E8EAED;
      vertical-align: top; color: #3A4453;
    }
    .legal-page th { font-weight: 600; color: var(--ink); }
    @media (max-width: 768px) {
      .legal-toc ol { columns: 1; }
      .legal-wrap { padding-top: 92px; }
    }
  