.audit-app-cf3623eb {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    color: #2d3436;
}

.audit-intro-cf3623eb h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.audit-intro-cf3623eb .subtitle {
    color: #636e72;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.audit-form-cf3623eb .form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .audit-form-cf3623eb .form-inputs {
        grid-template-columns: 1fr;
    }
}

.audit-form-cf3623eb input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.audit-form-cf3623eb input:focus {
    border-color: #6c5ce7;
}

.audit-app-cf3623eb .primary-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #6c5ce7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.audit-app-cf3623eb .primary-btn:hover {
    background-color: #5b4bc4;
}

.audit-app-cf3623eb .primary-btn:active {
    transform: scale(0.99);
}

.audit-app-cf3623eb .d-none {
    display: none !important;
}

/* Loading Panel */
.audit-loading-cf3623eb {
    text-align: center;
    padding: 40px 20px;
}

.scanner-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.scanner-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #6c5ce7;
    border-top-color: transparent;
    animation: spin-cf3623eb 1.2s linear infinite;
}

@keyframes spin-cf3623eb {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scanning-status {
    font-weight: 600;
    color: #2d3436;
    margin-top: 15px;
}

.progress-bar-container {
    background-color: #f1f2f6;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    max-width: 300px;
    margin: 20px auto 0;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background-color: #6c5ce7;
    transition: width 0.3s ease;
}

/* Results Panel */
.results-header {
    text-align: center;
    margin-bottom: 25px;
}

.results-header h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.overall-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.score-ring-fill {
    transition: stroke-dashoffset 1s ease-out;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 800;
    color: #2d3436;
}

.score-meta h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.score-meta p {
    color: #6c5ce7;
    font-weight: 700;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

.metric-card {
    border: 1px solid #f1f2f6;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow 0.3s;
}

.metric-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-head h5 {
    font-size: 16px;
    margin: 0;
}

.score-bar {
    background-color: #f1f2f6;
    border-radius: 4px;
    height: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.2s ease-in-out;
}

.seo-bar { background-color: #2ecc71; }
.aeo-bar { background-color: #3498db; }
.geo-bar { background-color: #e67e22; }
.ai-bar { background-color: #9b59b6; }

.score-label {
    font-size: 14px;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
}

.actionable-insights {
    background-color: #fff9f0;
    border-left: 4px solid #f39c12;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}

.actionable-insights h4 {
    margin-top: 0;
    color: #d35400;
    font-size: 18px;
    margin-bottom: 12px;
}

.actionable-insights ul {
    margin: 0;
    padding-left: 20px;
}

.actionable-insights li {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 8px;
}

.restart-btn {
    max-width: 250px;
    margin: 0 auto;
}
