﻿
  :root {
    --main-color: rgb(106, 165, 184);
    --accent-color: rgb(46, 195, 150);
    --accent-color-2: rgb(96, 149, 190);
    --accent-color-gradient: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
    --dark-gradient: linear-gradient(to top right, rgba(46,46,46,1), rgba(26,26,26,0.8));
    --background-accent: rgb(22, 22, 22);
    --card-background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006));
    --shadow: 0 6px 18px rgba(2,6,23,0.35);
    --muted: #9aa6b2;
    --panel: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.04);
    --text: #eef6f8;
    --header-bg: linear-gradient(to bottom, rgb(5, 46, 70), #0e5c75);
  }

  *, *:before, *:after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    min-height: 100vh;
    color: var(--text);
    background-color: #1c1c1c;
    font-family: 'Inter', sans-serif;
    line-height: 1.25;
  }

  h1,h2,h3,h4,h5,ul,p { margin: 0; padding: 0; font-weight: 400; }
  a { text-decoration: none; color: var(--accent-color); }

  #disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(14,92,117,0.8);
    width: 100%;
    font-size: 12px;
    padding: 2px 0;
    z-index: 100;
    position: relative;
  }
  #disclaimer p { padding: 10px; color: var(--text); }
  #disclaimer a { text-decoration: underline; color: var(--text); }

  .nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
  }

  .nav-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    gap: 60px;
    align-items: start;
  }

  .hero-left { padding-top: 10px; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
  }

  .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-color);
    flex-shrink: 0;
  }

  .hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .highlight {
    background: var(--accent-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-body {
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2.5rem;
  }

  .stat-strip {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
  }

  .stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .stat:last-child { border-right: none; }

  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--accent-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .proof-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .proof-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(238,246,248,0.72);
    font-weight: 400;
    line-height: 1.55;
    padding: 12px 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: border-color 0.2s;
  }

  .proof-item:hover { border-color: rgba(96,149,190,0.2); }

  .proof-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(96,149,190,0.12);
    border: 1px solid rgba(96,149,190,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .proof-icon i { font-size: 8px; color: var(--accent-color); }

  .hero-right {
    position: sticky;
    top: 100px;
  }

  .form-panel {
    background: linear-gradient(135deg, rgba(40,40,40,0.95), rgba(20,20,20,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
  }

  .form-panel-top {
    display: none;
  }

  .form-panel-inner { padding: 2.25rem 2.5rem 2.5rem; }

  .form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .form-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .step-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 1.4rem;
    align-items: center;
  }

  .step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .step-dot.active {
    background: var(--accent-color);
    width: 18px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(96,149,190,0.5);
  }

  .form-group { margin-bottom: 0.85rem; }

  .form-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 11px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .form-input::placeholder { color: rgba(255,255,255,0.22); }

  .form-input:focus {
    border-color: rgba(96,149,190,0.45);
    box-shadow: 0 0 0 3px rgba(96,149,190,0.07);
  }

  .role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .role-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 10px 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(238,246,248,0.6);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    line-height: 1.35;
  }

  .role-btn:hover { border-color: rgba(96,149,190,0.35); color: var(--text); background: rgba(96,149,190,0.05); }

  .role-btn.selected {
    background: rgba(96,149,190,0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 10px rgba(96,149,190,0.07);
  }

  .objective-grid { display: flex; flex-direction: column; gap: 5px; }

  .obj-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(238,246,248,0.6);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
  }

  .obj-btn:hover { border-color: rgba(96,149,190,0.35); color: var(--text); background: rgba(96,149,190,0.05); }

  .obj-btn.selected {
    background: rgba(96,149,190,0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
  }

  .cta-btn {
    width: 100%;
    margin-top: 1.1rem;
    background: var(--accent-color-gradient);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 14px rgba(96,149,190,0.2);
  }

  .cta-btn:hover { box-shadow: 0 8px 22px rgba(96,149,190,0.38); transform: translateY(-1px); }
  .cta-btn:active { transform: scale(0.99); }

  .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1rem;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .trust-item i { font-size: 10px; color: var(--accent-color); opacity: 0.7; }

  .assessment-step { display: none; }
  .assessment-step.active { display: block; animation: jpjSlideUp 0.22s ease; }

  @keyframes jpjSlideUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
    border: none;
    box-shadow: none;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-2));
    border-radius: 2px;
    transition: width 0.35s ease;
  }

  /* Global progress specific overrides */
  #global-progress { margin-bottom: 1rem; }
  #global-progress-fill { width: 0%; }

  /* Per-step static widths moved from inline HTML */
  .assessment-step#step-1 .progress-fill { width: 14%; }
  .assessment-step#step-2 .progress-fill { width: 28%; }
  .assessment-step#step-3 .progress-fill { width: 42%; }
  .assessment-step#step-4 .progress-fill { width: 56%; }
  .assessment-step#step-5 .progress-fill { width: 70%; }
  .assessment-step#step-6 .progress-fill { width: 84%; }
  .assessment-step#step-7 .progress-fill { width: 96%; }

  /* Small utility icon sizes and spacing */
  .icon-sm { font-size: 11px; }
  .icon-xs { font-size: 10px; margin-right: 6px; }

  /* Final step helper styles */
  .assess-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
  .final-inputs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0.5rem; }
  textarea.form-input { resize: none; line-height: 1.6; }

  .step-label-text {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
  }

  .assess-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.35;
  }

  .assess-opts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0.5rem;
  }

  .assess-opt {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 11px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(238,246,248,0.6);
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    width: 100%;
  }

  .assess-opt:hover { border-color: rgba(96,149,190,0.35); color: var(--text); background: rgba(96,149,190,0.05); }
  .assess-opt.selected { background: rgba(96,149,190,0.1); border-color: var(--accent-color); color: var(--accent-color); }

  .assess-nav {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 11px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.38);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .btn-ghost:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }

  .btn-next {
    flex: 1;
    background: var(--accent-color-gradient);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(96,149,190,0.15);
  }

  .btn-next:hover { box-shadow: 0 6px 18px rgba(96,149,190,0.3); transform: translateY(-1px); }

  .result-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
  }

  .result-badge.green { background: rgba(96,149,190,0.12); color: var(--accent-color); border: 1px solid rgba(96,149,190,0.3); }
  .result-badge.amber { background: rgba(106,165,184,0.12); color: var(--main-color); border: 1px solid rgba(106,165,184,0.3); }
  .result-badge.red   { background: rgba(220,90,80,0.1); color: #e0776f; border: 1px solid rgba(220,90,80,0.25); }

  .result-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .result-body {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

  .result-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 1.25rem 0; }

  .result-cta {
    width: 100%;
    background: var(--accent-color-gradient);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(96,149,190,0.2);
  }

  .result-cta:hover { box-shadow: 0 6px 20px rgba(96,149,190,0.35); transform: translateY(-1px); }

  .result-badge-icon { margin-right: 6px; font-size: 10px; }
  .result-cta-icon   { font-size: 11px; }

  .assess-validation-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .assess-validation-title { display: block; margin-bottom: 8px; }
  .assess-validation-item  { margin-bottom: 4px; }

  footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.015);
    padding: 1.75rem 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
  }

  .footer-links { display: flex; gap: 1.75rem; }

  .footer-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.03em;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.6); }

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

  .hero-left > * { animation: fadeUp 0.55s ease both; }
  .eyebrow { animation-delay: 0.05s; }
  .hero-headline { animation-delay: 0.15s; }
  .hero-body { animation-delay: 0.22s; }
  .stat-strip { animation-delay: 0.3s; }
  .proof-list { animation-delay: 0.38s; }
  .hero-right { animation: fadeUp 0.55s 0.2s ease both; }

  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 40px 24px 60px; }
    .hero-right { position: static; }
    footer { padding: 1.5rem 24px; flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .stat-strip { flex-wrap: wrap; }
    .stat { flex: none; width: 50%; }
  }

  @media (max-width: 500px) {
    .form-panel-inner { padding: 1.5rem; }
    .role-grid { grid-template-columns: 1fr 1fr; }
    .stat { width: 100%; }
  }

  .gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(238,246,248,0.75);
    line-height: 1.5;
    cursor: pointer;
  }

  .gdpr-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent-color);
  }

  .checkbox-text {
    flex: 1;
  }

  .checkbox-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: opacity 0.2s;
  }

  .checkbox-text a:hover {
    opacity: 0.75;
  }
  @media (max-width: 600px) {
    .gdpr-checkbox { font-size: 0.8rem; }
  }