        .audit-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
        .audit-eyebrow {
            display: inline-block;
            background: rgba(0, 151, 178, 0.1);
            color: #0097b2;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .quiz-wrapper {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }
        .quiz-card {
            background: white;
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid #e8eaed;
        }
        .quiz-step { display: none; }
        .quiz-step.active { display: block; }

        /* Progress */
        .quiz-progress { margin-bottom: 32px; }
        .quiz-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 13px;
            color: #5f6368;
        }
        .quiz-progress-bar {
            height: 6px;
            background: #e8eaed;
            border-radius: 3px;
            overflow: hidden;
        }
        .quiz-progress-fill {
            height: 100%;
            background: #0097b2;
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        /* Question */
        .quiz-area-badge {
            display: inline-block;
            background: rgba(0, 151, 178, 0.1);
            color: #0097b2;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .quiz-question {
            font-size: 22px;
            font-weight: 600;
            color: #202124;
            line-height: 1.4;
            margin-bottom: 32px;
        }

        /* Options */
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .quiz-option {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            border: 2px solid #e8eaed;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: white;
            text-align: left;
            font-size: 16px;
            color: #202124;
            font-family: inherit;
            width: 100%;
        }
        .quiz-option:hover { border-color: #0097b2; background: rgba(0, 151, 178, 0.04); }
        .quiz-option.selected { border-color: #0097b2; background: rgba(0, 151, 178, 0.08); }
        .quiz-option-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .opt-yes .quiz-option-icon { background: #dcfce7; }
        .opt-partially .quiz-option-icon { background: #fef9c3; }
        .opt-no .quiz-option-icon { background: #fee2e2; }

        /* Buttons */
        .quiz-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0097b2;
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            text-decoration: none;
        }
        .quiz-btn-primary:hover { background: #007a8f; color: white; }
        .quiz-btn-primary:disabled, .quiz-btn-primary.loading {
            opacity: 0.5;
            pointer-events: none;
        }
        .quiz-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #5f6368;
            padding: 14px 28px;
            border-radius: 8px;
            border: 2px solid #e8eaed;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }
        .quiz-btn-secondary:hover { border-color: #9ca3af; color: #202124; }

        /* Intro */
        .intro-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 32px 0;
        }
        .intro-feature {
            text-align: center;
            padding: 20px 12px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .intro-feature-icon { font-size: 28px; margin-bottom: 8px; }
        .intro-feature-text { font-size: 13px; color: #5f6368; line-height: 1.4; }

        /* Nav */
        .quiz-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
        }

        /* Result */
        .result-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .result-bar-bg {
            height: 12px;
            background: #e8eaed;
            border-radius: 6px;
            overflow: hidden;
            margin: 8px 0 24px;
        }
        .result-bar-fill {
            height: 100%;
            border-radius: 6px;
            transition: width 1s ease;
        }
        .result-areas {
            margin: 24px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .result-area-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e8eaed;
            font-size: 14px;
        }
        .result-area-item:last-child { border-bottom: none; }
        .result-area-name { display: flex; align-items: center; color: #202124; }
        .result-area-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
        }

        /* Contact form */
        .contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group label { font-size: 14px; font-weight: 500; color: #202124; }
        .form-group input {
            padding: 12px 16px;
            border: 2px solid #e8eaed;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            color: #202124;
            transition: border-color 0.2s;
            background: white;
        }
        .form-group input:focus { outline: none; border-color: #0097b2; }
        .form-group input::placeholder { color: #9ca3af; }
        .form-required { color: #ef4444; }
        .form-consent { font-size: 12px; color: #5f6368; line-height: 1.5; margin: 0; }
        .form-consent a { color: #0097b2; }

        /* Thanks */
        .thanks-icon {
            width: 72px;
            height: 72px;
            background: #dcfce7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 24px;
        }

        @media (max-width: 600px) {
            .quiz-card { padding: 28px 20px; }
            .intro-features { grid-template-columns: 1fr; }
            .quiz-question { font-size: 18px; }
            .audit-hero { padding: 60px 0 20px; }
            .quiz-nav { flex-direction: column-reverse; gap: 12px; }
            .quiz-nav button { width: 100%; justify-content: center; }
        }
