.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 72px 40px 96px;
    gap: 72px;
    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);
    margin-bottom: 1.5rem;
}

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

.hero-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-strip {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    background: var(--surface-2);
    border: 1.5px solid #c8d0d8;
    border-radius: 12px;
    overflow: hidden;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--blue));
    -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(--ink-2);
    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.9rem;
    color: var(--ink-2);
    font-weight: 400;
    line-height: 1.55;
    padding: 12px 16px;
    background: var(--surface-2);
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.proof-item:hover {
    border-color: var(--accent);
}

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

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

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

.form-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

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

.form-panel-inner {
    padding: 0;
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--ink-2);
    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: var(--line);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-dot.active {
    background: var(--accent);
    width: 18px;
    border-radius: 3px;
}

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

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

.form-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    padding: 11px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: var(--ink-2);
    opacity: 0.5;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46,195,150,0.1);
}

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

.role-btn {
    background: #fff;
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    padding: 10px 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    line-height: 1.35;
}

.role-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.role-btn.selected {
    background: rgba(46,195,150,0.07);
    border-color: var(--accent);
    color: var(--ink);
}

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

.obj-btn {
    background: #fff;
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.obj-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.obj-btn.selected {
    background: rgba(46,195,150,0.07);
    border-color: var(--accent);
    color: var(--ink);
}

.cta-btn {
    width: 100%;
    margin-top: 1.1rem;
    background: linear-gradient(120deg, var(--accent), var(--blue));
    border: none;
    border-radius: 8px;
    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(46,195,150,0.22);
}

.cta-btn:hover {
    box-shadow: 0 8px 22px rgba(46,195,150,0.35);
    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: var(--ink-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
}

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

.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: #c8d0d8;
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

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

#global-progress { margin-bottom: 1rem; }
#global-progress-fill { width: 0%; }

.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%; }

.icon-sm { font-size: 11px; }
.icon-xs { font-size: 10px; margin-right: 6px; }

.assess-note {
    font-size: 0.8rem;
    color: var(--ink-2);
    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: var(--ink-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
    opacity: 0.6;
}

.assess-h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.35;
}

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

.assess-opt {
    background: #fff;
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    padding: 11px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    width: 100%;
}

.assess-opt:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.assess-opt.selected {
    background: rgba(46,195,150,0.07);
    border-color: var(--accent);
    color: var(--ink);
}

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

.btn-ghost {
    background: transparent;
    border: 1.5px solid #c8d0d8;
    border-radius: 8px;
    padding: 11px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-ghost:hover {
    border-color: var(--ink-2);
    color: var(--ink);
}

.btn-next {
    flex: 1;
    background: linear-gradient(120deg, var(--accent), var(--blue));
    border: none;
    border-radius: 8px;
    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(46,195,150,0.18);
}

.btn-next:hover {
    box-shadow: 0 6px 18px rgba(46,195,150,0.32);
    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;
}

.result-badge.green {
    background: rgba(46,195,150,0.12);
    color: var(--accent);
    border: 1px solid rgba(46,195,150,0.3);
}

.result-badge.amber {
    background: rgba(96,149,190,0.12);
    color: var(--blue);
    border: 1px solid rgba(96,149,190,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-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.result-body {
    font-size: 0.88rem;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.result-divider {
    height: 1px;
    background: #c8d0d8;
    margin: 1.25rem 0;
}

.result-cta {
    display: block;
    width: 100%;
    background: linear-gradient(120deg, var(--accent), var(--blue));
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(46,195,150,0.22);
}

.result-cta:hover {
    box-shadow: 0 6px 20px rgba(46,195,150,0.38);
    transform: translateY(-1px);
}

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

.assess-validation-error {
    background: rgba(220,90,80,0.08);
    border: 1px solid rgba(220,90,80,0.3);
    color: #e0776f;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
}

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

.assess-validation-item {
    margin-bottom: 4px;
}

.gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--ink-2);
    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);
}

.checkbox-text { flex: 1; }

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

.checkbox-text a:hover { opacity: 0.75; }

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 40px 24px 60px;
    }

    .hero-right {
        position: static;
    }

    .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%;
    }
}

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