/* =====================================================
   ENZ Opportunity Workbook — styles.css
   Brand: Inter, #081f0d hero, #16a34a green
   ===================================================== */

:root {
    --enz-hero:    #081f0d;
    --enz-green:   #16a34a;
    --enz-glow:    #4ade80;
    --enz-dark:    #0f172a;
    --enz-radius:  16px;
    --enz-shadow:  0 8px 24px rgba(15,23,42,.10);
    --enz-shadow-lg: 0 16px 48px rgba(15,23,42,.15);
    --enz-red:     #dc2626;
    --enz-amber:   #d97706;
    --enz-max-w:   860px;
}

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

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
    background: #f8fafc;
}

/* ---- HEADER ---- */
.enz-header {
    background: var(--enz-hero);
    position: relative;
    overflow: hidden;
}

.enz-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(22,163,74,.20) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 90% 110%, rgba(74,222,128,.07) 0%, transparent 55%);
    pointer-events: none;
}

.enz-header-inner {
    max-width: var(--enz-max-w);
    margin: 0 auto;
    padding: 40px 24px 44px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.enz-header-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}

.enz-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74,222,128,.12);
    border: 1px solid rgba(74,222,128,.25);
    color: var(--enz-glow);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .28rem .8rem;
    border-radius: 9999px;
    margin-bottom: 8px;
}

.enz-header-title {
    margin: 0 0 6px;
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.enz-header-sub {
    margin: 0;
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    max-width: 540px;
}

/* ---- STEPPER NAV ---- */
.enz-stepper-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.enz-stepper-wrap::-webkit-scrollbar { display: none; }

.enz-stepper {
    display: flex;
    align-items: flex-start;
    padding: 14px 24px 12px;
    gap: 0;
    min-width: max-content;
    position: relative;
}

/* Connecting line */
.enz-stepper::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 52px;
    right: 52px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.enz-stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    min-width: 72px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.enz-stepper-item:hover .enz-stepper-circle {
    border-color: var(--enz-green);
    color: var(--enz-green);
    transform: scale(1.1);
}

.enz-stepper-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #ffffff;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    position: relative;
    z-index: 1;
}

.enz-stepper-item.active .enz-stepper-circle {
    background: var(--enz-green);
    border-color: var(--enz-green);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(22,163,74,.18);
    transform: scale(1.12);
}

.enz-stepper-item.visited .enz-stepper-circle {
    background: #f0fdf4;
    border-color: var(--enz-green);
    color: var(--enz-green);
}

.enz-stepper-label {
    font-size: 9.5px;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
    transition: color .2s;
    letter-spacing: .01em;
}

.enz-stepper-item.active .enz-stepper-label {
    color: var(--enz-green);
}

.enz-stepper-item.visited .enz-stepper-label {
    color: #374151;
}

/* ---- HEADER CTA ---- */
.enz-header-cta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: #ffffff;
    transition: all .2s ease;
    flex-shrink: 0;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

.enz-header-cta:hover {
    background: rgba(22,163,74,.25);
    border-color: rgba(74,222,128,.4);
    transform: translateY(-2px);
}

.enz-header-cta svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--enz-glow);
}

.enz-header-cta span {
    font-size: 13px;
    line-height: 1.45;
}

.enz-header-cta strong {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
    color: #ffffff;
}

.enz-header-cta em, .enz-header-cta span:not(strong) {
    color: rgba(255,255,255,.65);
    font-style: normal;
    font-size: 12px;
}

/* ---- FILE UPLOAD ---- */
.enz-upload-zone {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    background: #fafafa;
    transition: all .2s ease;
    cursor: pointer;
}

.enz-upload-zone:hover,
.enz-upload-zone.drag-over {
    border-color: var(--enz-green);
    background: #f0fdf4;
}

.enz-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.enz-upload-icon {
    color: #9ca3af;
    margin-bottom: 10px;
}

.enz-upload-zone:hover .enz-upload-icon,
.enz-upload-zone.drag-over .enz-upload-icon {
    color: var(--enz-green);
}

.enz-upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #374151;
}

.enz-upload-text strong {
    font-weight: 700;
    color: #0f172a;
}

.enz-upload-text span {
    font-size: 12px;
    color: #6b7280;
}

.enz-upload-types {
    font-size: 11px !important;
    color: #9ca3af !important;
}

.enz-file-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.enz-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0fdf4;
    border: 1px solid rgba(22,163,74,.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #15803d;
}

.enz-file-item span { font-weight: 600; }
.enz-file-size { font-weight: 400 !important; color: #9ca3af !important; font-size: 11px !important; }

/* ---- MAIN LAYOUT ---- */
.enz-main {
    max-width: var(--enz-max-w);
    margin: 0 auto;
    padding: 32px 24px 120px;
}

/* ---- STEP CARD ---- */
.enz-step {
    background: #ffffff;
    border-radius: var(--enz-radius);
    box-shadow: var(--enz-shadow);
    padding: 32px 36px 36px;
    margin-bottom: 0;
    animation: stepIn .25s ease;
}

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

.enz-step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.enz-step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--enz-green);
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.enz-step-title {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.enz-step-desc {
    margin: 0;
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.55;
}

/* ---- FIELDS ---- */
.enz-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enz-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enz-field label:not(.enz-radio):not(.enz-check-label) {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.enz-field input[type="text"],
.enz-field input[type="number"],
.enz-field input[type="email"],
.enz-field input[type="tel"],
.enz-field select,
.enz-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    font-size: 14px;
    font-family: inherit;
    color: #111827;
    background: #ffffff;
    transition: border-color .2s, box-shadow .2s;
    appearance: auto;
}

.enz-field input:focus,
.enz-field select:focus,
.enz-field textarea:focus {
    outline: none;
    border-color: var(--enz-green);
    box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.enz-field textarea {
    resize: vertical;
    min-height: 88px;
}

.enz-field small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #9ca3af;
}

.enz-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.enz-prefix {
    padding: 9px 10px 9px 12px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 9px 0 0 9px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    line-height: 1.4;
}

.enz-input-group .enz-prefix + input {
    border-radius: 0 9px 9px 0;
}

.enz-suffix-select {
    border-radius: 0 9px 9px 0 !important;
    border-left: none !important;
    width: auto !important;
    min-width: 80px;
}

.enz-unit-suffix {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-left: none;
    border-radius: 0 9px 9px 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
}

.enz-input-group input:not(:last-child) {
    border-radius: 9px 0 0 9px;
}

/* ---- RADIO & CHECKBOX GROUPS ---- */
.enz-radio-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.enz-radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    transition: border-color .15s, background .15s;
}

.enz-radio:hover {
    border-color: var(--enz-green);
    background: #f0fdf4;
}

.enz-radio input[type="radio"] {
    margin-top: 1px;
    accent-color: var(--enz-green);
    flex-shrink: 0;
}

.enz-radio.selected,
.enz-radio:has(input:checked) {
    border-color: var(--enz-green);
    background: #f0fdf4;
}

.enz-check-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enz-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 9px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    transition: border-color .15s, background .15s;
}

.enz-check-label:hover {
    border-color: var(--enz-green);
    background: #f0fdf4;
}

.enz-check-label input[type="checkbox"] {
    accent-color: var(--enz-green);
}

/* ---- INFO BOX ---- */
.enz-info-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.5;
}

/* ---- LABELS ---- */
.req { color: var(--enz-red); font-weight: 700; }
.opt { color: #9ca3af; font-size: .85em; font-weight: 400; }

/* ---- NAVIGATION ---- */
.enz-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid #e5e7eb;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}

.enz-save-note {
    font-size: 12px;
    color: #9ca3af;
}

.enz-nav-btn {
    padding: 11px 28px;
    border-radius: 9999px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s ease;
}

.enz-btn-back {
    background: #f3f4f6;
    color: #374151;
}

.enz-btn-back:hover {
    background: #e5e7eb;
}

.enz-btn-next {
    background: var(--enz-green);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(22,163,74,.35);
}

.enz-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(22,163,74,.4);
}

/* ---- CONFIRMATION HEADER ---- */
.enz-confirm-header {
    background: var(--enz-hero);
    border-radius: var(--enz-radius);
    padding: 36px 40px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enz-confirm-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% -5%, rgba(22,163,74,.22) 0%, transparent 65%);
    pointer-events: none;
}

.enz-confirm-tick {
    width: 64px;
    height: 64px;
    background: rgba(74,222,128,.15);
    border: 2px solid rgba(74,222,128,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4ade80;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.enz-confirm-title {
    margin: 0 0 12px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.enz-confirm-body {
    margin: 0;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ---- STATUS PANEL ---- */
.enz-status-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--enz-radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enz-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.enz-status-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enz-status-pending {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #9ca3af;
}

.enz-status-label {
    color: #374151;
}

.enz-status-label.pending {
    color: #9ca3af;
}

/* ---- SCORE DIVIDER ---- */
.enz-score-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.enz-score-divider::before,
.enz-score-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.enz-score-divider-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #9ca3af;
    white-space: nowrap;
}

/* ---- CONFIRM FOOTER ---- */
.enz-confirm-footer {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    margin: 0 0 16px;
}

/* ---- RESULTS ---- */
.enz-results-hero {
    background: var(--enz-hero);
    border-radius: var(--enz-radius);
    padding: 36px 40px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enz-results-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% -5%, rgba(22,163,74,.22) 0%, transparent 65%);
    pointer-events: none;
}

.enz-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74,222,128,.12);
    border: 1px solid rgba(74,222,128,.25);
    color: var(--enz-glow);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .28rem .8rem;
    border-radius: 9999px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.enz-results-title {
    margin: 0 0 8px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.enz-results-sub {
    margin: 0;
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    position: relative;
    z-index: 1;
}

/* ---- SCORE SUMMARY ---- */
.enz-score-summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.enz-total-card {
    background: #ffffff;
    border-radius: var(--enz-radius);
    box-shadow: var(--enz-shadow);
    padding: 24px;
    text-align: center;
    border-top: 4px solid var(--enz-green);
}

.enz-total-card.rag-red   { border-top-color: var(--enz-red); }
.enz-total-card.rag-amber { border-top-color: var(--enz-amber); }
.enz-total-card.rag-green { border-top-color: var(--enz-green); }

.enz-total-label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.enz-total-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 2px;
}

.enz-total-outof {
    font-size: .8rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.enz-total-rag {
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rag-badge-red    { background: #fef2f2; color: var(--enz-red); }
.rag-badge-amber  { background: #fffbeb; color: var(--enz-amber); }
.rag-badge-green  { background: #f0fdf4; color: var(--enz-green); }

.enz-score-context {
    background: #ffffff;
    border-radius: var(--enz-radius);
    box-shadow: var(--enz-shadow);
    padding: 24px;
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    display: flex;
    align-items: center;
}

/* ---- DIMENSION GRID ---- */
.enz-section-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin: 0 0 12px;
}

.enz-dimension-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.enz-dim-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--enz-shadow);
    padding: 18px 20px;
    border-left: 4px solid #e5e7eb;
}

.enz-dim-card.rag-red   { border-left-color: var(--enz-red); }
.enz-dim-card.rag-amber { border-left-color: var(--enz-amber); }
.enz-dim-card.rag-green { border-left-color: var(--enz-green); }

.enz-dim-name {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.enz-dim-score {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}

.enz-dim-outof {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.enz-dim-bar {
    height: 5px;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.enz-dim-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width .5s ease;
}

.rag-red   .enz-dim-fill { background: var(--enz-red); }
.rag-amber .enz-dim-fill { background: var(--enz-amber); }
.rag-green .enz-dim-fill { background: var(--enz-green); }

.enz-dim-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rag-red   .enz-dim-label { color: var(--enz-red); }
.rag-amber .enz-dim-label { color: var(--enz-amber); }
.rag-green .enz-dim-label { color: var(--enz-green); }

/* ---- PRIORITY FLAGS ---- */
.enz-flags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.enz-flag {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 16px;
}

.enz-flag-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.enz-flag-text {
    font-size: 13px;
    color: #991b1b;
    line-height: 1.5;
}

.enz-flag-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}

/* ---- NEXT STEPS ---- */
.enz-next-steps-wrap {
    margin-bottom: 28px;
}

.enz-next-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enz-next-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--enz-shadow);
    padding: 16px 20px;
}

.enz-step-num {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    background: var(--enz-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enz-step-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
    padding-top: 4px;
}

.enz-step-text strong {
    display: block;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

/* ---- RESULTS CTA ---- */
.enz-results-cta {
    background: #f0fdf4;
    border: 1px solid rgba(22,163,74,.2);
    border-radius: var(--enz-radius);
    padding: 36px 40px;
    text-align: center;
    margin-bottom: 24px;
}

.enz-cta-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.enz-cta-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.enz-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.enz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 13px 28px;
    font-size: .9rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border-radius: 9999px;
    transition: all .25s ease;
    min-width: 240px;
}

.enz-btn-primary {
    background: var(--enz-green);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(22,163,74,.3);
}

.enz-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(22,163,74,.4);
}

.enz-btn-secondary {
    background: #ffffff;
    color: var(--enz-green);
    border: 2px solid var(--enz-green);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.enz-btn-secondary:hover {
    background: var(--enz-green);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(22,163,74,.3);
}

.enz-cta-note {
    font-size: .8rem;
    color: #9ca3af;
    margin: 0;
}

/* ---- PDF BUTTON ---- */
.enz-pdf-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.enz-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--enz-green) 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(22,163,74,.3);
}

.enz-pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22,163,74,.4);
}

/* ---- DISCLAIMER ---- */
.enz-disclaimer {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.6;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 8px;
}

/* ---- CHATBOT BUBBLE ---- */
.enz-chat-bubble {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: var(--enz-green);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(22,163,74,.4);
    transition: all .2s ease;
    z-index: 300;
}

.enz-chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22,163,74,.45);
}

/* ---- CHATBOT PANEL ---- */
.enz-chatbot {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 360px;
    max-height: 500px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--enz-shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 400;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
    overflow: hidden;
}

.enz-chatbot.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.enz-chat-header {
    background: var(--enz-hero);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enz-chat-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.enz-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: var(--enz-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enz-chat-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.enz-chat-status {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.enz-chat-close {
    background: rgba(255,255,255,.12);
    border: none;
    color: rgba(255,255,255,.85);
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.enz-chat-close:hover {
    background: rgba(255,255,255,.25);
    color: #ffffff;
}

.enz-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enz-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.55;
}

.enz-msg-bot {
    background: #f3f4f6;
    color: #111827;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.enz-msg-user {
    background: var(--enz-green);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.enz-msg a {
    color: var(--enz-green);
    text-decoration: underline;
}

.enz-msg-bot a {
    color: var(--enz-green);
}

.enz-msg-user a {
    color: #ffffff;
}

.enz-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
}

.enz-suggestion {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit;
}

.enz-suggestion:hover {
    background: #f0fdf4;
    border-color: var(--enz-green);
    color: var(--enz-green);
}

.enz-chat-footer {
    padding: 12px 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    gap: 8px;
}

.enz-chat-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

.enz-chat-input:focus {
    border-color: var(--enz-green);
}

.enz-chat-send {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: var(--enz-green);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.enz-chat-send:hover { background: #15803d; }

/* ---- RESPONSIVE ---- */
@media (max-width: 680px) {
    .enz-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px 32px;
        gap: 16px;
    }

    .enz-step {
        padding: 24px 20px;
    }

    .enz-field-row {
        grid-template-columns: 1fr;
    }

    .enz-score-summary {
        grid-template-columns: 1fr;
    }

    .enz-results-cta {
        padding: 28px 20px;
    }

    .enz-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .enz-btn {
        width: 100%;
        min-width: auto;
    }

    .enz-chatbot {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 75px;
    }

    .enz-chat-bubble {
        right: 12px;
        bottom: 75px;
    }

    .enz-dimension-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .enz-dimension-grid {
        grid-template-columns: 1fr;
    }
}
