/* Page-specific styles */
        .tool-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 4rem;
            text-align: center;
        }

        .tool-hero h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .tool-hero p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 650px;
            margin: 0 auto 2rem;
        }

        .badge {
            display: inline-block;
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        /* URL Input Form */
        .url-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0.75rem;
        }

        .url-input {
            flex: 1;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            outline: none;
            transition: all 0.2s ease;
        }

        .url-input:focus {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.08);
        }

        .url-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .analyze-btn {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            background: #fff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .analyze-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .analyze-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading State */
        .loading-state {
            display: none;
            text-align: center;
            padding: 4rem 0;
            position: relative;
            z-index: 10;
        }

        .loading-state.active {
            display: block;
            opacity: 1 !important;
        }

        .loading-state * {
            opacity: 1 !important;
        }

        .loading-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1.5rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: #fff !important;
            font-size: 1.125rem;
        }

        .loading-subtext {
            color: #a3a3a3 !important;
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        .progress-bar {
            max-width: 400px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin: 1.5rem auto 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: #22c55e;
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Results Section */
        .results-section {
            display: none;
            padding: 3rem 0 6rem;
            position: relative;
            z-index: 10;
        }

        .results-section.active {
            display: block;
            opacity: 1 !important;
        }

        .results-section * {
            opacity: 1 !important;
        }

        .results-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Overall Score Card */
        .score-card {
            background: rgba(10, 10, 10, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .score-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .overall-score {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .score-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                var(--score-color) calc(var(--score-percent) * 1%),
                rgba(255, 255, 255, 0.1) calc(var(--score-percent) * 1%)
            );
        }

        .score-inner {
            position: relative;
            width: 85%;
            height: 85%;
            background: #0a0a0a;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .score-number {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .score-grade {
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.25rem;
        }

        .grade-a { color: #22c55e; }
        .grade-b { color: #84cc16; }
        .grade-c { color: #eab308; }
        .grade-d { color: #f97316; }
        .grade-f { color: #ef4444; }

        .score-info {
            flex: 1;
        }

        .score-info h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .score-info p {
            color: #a3a3a3;
            font-size: 1rem;
            line-height: 1.6;
        }

        .score-info .domain {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        /* Screenshot */
        .screenshot-container {
            margin-bottom: 2rem;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .screenshot-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Category Scores Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.25rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .category-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
        }

        .category-card.active {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .category-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 0.75rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .category-name {
            font-size: 0.8125rem;
            color: #a3a3a3;
            margin-bottom: 0.5rem;
        }

        .category-score {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .score-low { color: #ef4444; }
        .score-mid { color: #eab308; }
        .score-high { color: #22c55e; }

        /* Detail Sections */
        .detail-section {
            background: rgba(10, 10, 10, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .detail-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .detail-header:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .detail-header h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .detail-header .score-badge {
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 100px;
        }

        .score-badge.high {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }

        .score-badge.mid {
            background: rgba(234, 179, 8, 0.1);
            color: #eab308;
        }

        .score-badge.low {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .detail-toggle {
            width: 24px;
            height: 24px;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.2s ease;
        }

        .detail-section.open .detail-toggle {
            transform: rotate(180deg);
        }

        .detail-content {
            display: none;
            padding: 0 1.5rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .detail-section.open .detail-content {
            display: block;
        }

        /* Check Items */
        .check-list {
            margin-top: 1rem;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .check-item:last-child {
            border-bottom: none;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .check-icon.pass {
            color: #22c55e;
        }

        .check-icon.fail {
            color: #ef4444;
        }

        .check-icon.warn {
            color: #eab308;
        }

        .check-text {
            flex: 1;
        }

        .check-text .label {
            font-size: 0.9375rem;
            color: #fff;
        }

        .check-text .value {
            font-size: 0.8125rem;
            color: #a3a3a3;
            margin-top: 0.25rem;
        }

        /* Metrics Grid */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        .metric-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
        }

        .metric-value {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #a3a3a3;
            margin-top: 0.25rem;
        }

        /* Tech Stack */
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .tech-tag {
            padding: 0.375rem 0.75rem;
            font-size: 0.8125rem;
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 6px;
        }

        .tech-category {
            margin-top: 1rem;
        }

        .tech-category-label {
            font-size: 0.75rem;
            color: #a3a3a3;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        /* Priority Fixes */
        .priority-fixes {
            background: rgba(10, 10, 10, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .priority-fixes h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .fix-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .fix-item:last-child {
            border-bottom: none;
        }

        .fix-number {
            width: 24px;
            height: 24px;
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .fix-text {
            font-size: 0.9375rem;
            color: #d4d4d4;
            line-height: 1.5;
        }

        /* PDF Download */
        .download-section {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .download-section h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .download-section p {
            color: #a3a3a3;
            font-size: 0.9375rem;
            margin-bottom: 1.5rem;
        }

        .download-btn {
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            background: #22c55e;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .download-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        /* Share Section */
        .share-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(10, 10, 10, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
        }

        .share-text {
            color: #a3a3a3;
            font-size: 0.875rem;
        }

        .share-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .share-btn {
            padding: 0.5rem 1rem;
            font-size: 0.8125rem;
            font-weight: 500;
            color: #d4d4d4;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.15s ease;
            text-decoration: none;
        }

        .share-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        /* Error State */
        .error-message {
            display: none;
            margin-top: 1rem;
            text-align: center;
            color: #ef4444;
        }

        .error-message.active {
            display: block;
        }

        /* Rate Limit Notice */
        .rate-limit-notice {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 1rem;
        }

        /* Try Another */
        .try-another {
            text-align: center;
            margin-top: 2rem;
        }

        .try-another-btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #d4d4d4;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .try-another-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            text-align: center;
        }

        .cta-content {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 4rem 2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        /* Email Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 2rem;
            max-width: 400px;
            width: 90%;
        }

        .modal-content h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .modal-content p {
            color: #a3a3a3;
            font-size: 0.9375rem;
            margin-bottom: 1.5rem;
        }

        .modal-input {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            margin-bottom: 1rem;
            outline: none;
        }

        .modal-input:focus {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .modal-btn {
            width: 100%;
            padding: 0.875rem;
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            background: #22c55e;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-bottom: 0.75rem;
        }

        .modal-close {
            width: 100%;
            padding: 0.75rem;
            font-size: 0.875rem;
            color: #a3a3a3;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }

            .tool-hero {
                padding: 7rem 0 3rem;
            }

            .url-form {
                flex-direction: column;
            }

            .analyze-btn {
                width: 100%;
            }

            .score-header {
                flex-direction: column;
                text-align: center;
            }

            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            @media (max-width: 480px) {
                .category-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            .share-section {
                flex-direction: column;
                text-align: center;
            }

            .score-card, .detail-section, .priority-fixes, .download-section {
                padding: 1.5rem;
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .cta-content {
                padding: 2.5rem 1.5rem;
                margin: 0 1rem;
            }
        }

        /* AI Search Readiness Styles */
        .crawler-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .crawler-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 0.875rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            font-size: 0.875rem;
        }

        .crawler-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .crawler-status.allowed {
            background: #22c55e;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
        }

        .crawler-status.blocked {
            background: #ef4444;
            box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
        }

        .ai-search-checklist {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .ai-check-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .ai-check-item svg {
            flex-shrink: 0;
        }

        .ai-check-item.pass svg {
            color: #22c55e;
        }

        .ai-check-item.fail svg {
            color: #ef4444;
        }

        /* Action Plan Styles */
        .generate-action-plan {
            text-align: center;
            padding: 2rem;
            margin: 1.5rem 0;
            background: linear-gradient(135deg, rgba(80, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(80, 70, 229, 0.2);
            border-radius: 16px;
        }

        .action-plan-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #5046E5, #8B5CF6);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .action-plan-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(80, 70, 229, 0.3);
        }

        .action-plan-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .action-plan-desc {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .action-plan-section {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .action-plan-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .action-plan-header h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .score-projection {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .score-projection .current {
            color: rgba(255, 255, 255, 0.6);
        }

        .score-projection .arrow {
            color: rgba(255, 255, 255, 0.4);
        }

        .score-projection .potential {
            color: #22c55e;
        }

        .score-projection .improvement {
            font-size: 0.875rem;
            color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        .action-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .action-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
        }

        .action-priority {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            font-size: 0.875rem;
            font-weight: 700;
            color: #fff;
            background: rgba(80, 70, 229, 0.2);
            border-radius: 8px;
            flex-shrink: 0;
        }

        .action-details {
            flex: 1;
        }

        .action-title {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .action-category {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .action-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.75rem;
        }

        .action-badges {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 0.75rem;
        }

        .action-badge {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        .action-badge.impact-high {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }

        .action-badge.impact-medium {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
        }

        .action-badge.impact-low {
            background: rgba(156, 163, 175, 0.1);
            color: #9ca3af;
        }

        .action-badge.difficulty-easy {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }

        .action-badge.difficulty-medium {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
        }

        .action-badge.difficulty-hard {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .action-how-to {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.02);
            padding: 0.75rem;
            border-radius: 8px;
            border-left: 3px solid rgba(80, 70, 229, 0.5);
        }

        .quick-wins {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .quick-wins h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: #22c55e;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .quick-wins-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .quick-win-item {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            padding-left: 1.25rem;
            position: relative;
        }

        .quick-win-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            background: #22c55e;
            border-radius: 50%;
        }

        .personalized-summary {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(80, 70, 229, 0.05);
            border-radius: 12px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .action-plan-loading {
            text-align: center;
            padding: 3rem;
        }

        .action-plan-loading svg {
            animation: spin 1s linear infinite;
            color: #5046E5;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .spinning {
            animation: spin 1s linear infinite;
        }

        .action-plan-btn .spinning {
            display: inline-block;
            margin-right: 0.25rem;
            flex-shrink: 0;
        }

        .action-plan-btn svg {
            display: inline-block;
            vertical-align: middle;
            flex-shrink: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 0 2rem;
        }

        .faq-section h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .faq-grid {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 1.25rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .faq-question:hover {
            color: #fff;
        }

        .faq-icon {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.2s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }