/* Futturu Audit - Lead Magnet Version */

.futturu-audit-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.futturu-audit-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.futturu-header {
    text-align: center;
    margin-bottom: 30px;
}

.futturu-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.futturu-header p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Form Styles */
.futturu-form-group {
    margin-bottom: 20px;
}

.futturu-form-group label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 15px;
}

.futturu-form-group input[type="url"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.futturu-form-group input[type="url"]:focus {
    outline: none;
    border-color: #3498db;
}

.futturu-form-group small {
    display: block;
    color: #95a5a6;
    margin-top: 6px;
    font-size: 13px;
}

/* Buttons */
.futturu-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.futturu-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.futturu-btn-primary:active {
    transform: translateY(0);
}

/* Error Message */
.futturu-error {
    background: #fee;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 500;
}

/* Loading Spinner */
.futturu-loading-container {
    text-align: center;
    padding: 40px 20px;
}

.futturu-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ecf0f1;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.futturu-loading-container p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Score Overview */
.futturu-score-overview {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.score-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 120px;
    flex: 1;
    max-width: 150px;
}

.score-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.score-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
}

.score-high .score-number { color: #27ae60; }
.score-medium .score-number { color: #f39c12; }
.score-low .score-number { color: #e74c3c; }

.score-card.speed .score-number { color: #3498db; }
.score-card.seo .score-number { color: #9b59b6; }
.score-card.security .score-number { color: #e67e22; }

/* Detailed Report */
.futturu-detailed-report {
    margin-bottom: 40px;
}

.futturu-detailed-report h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.report-category {
    margin-bottom: 30px;
}

.report-category h4 {
    color: #34495e;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.checks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checks-list li {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-left: 4px solid #bdc3c7;
}

.checks-list li.check-pass {
    background: #e8f8f5;
    border-left-color: #27ae60;
}

.checks-list li.check-fail {
    background: #fdedec;
    border-left-color: #e74c3c;
}

.checks-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.check-pass strong { color: #27ae60; }
.check-fail strong { color: #e74c3c; }

.check-msg {
    display: block;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.check-fix {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    color: #2980b9;
    font-size: 14px;
    font-weight: 500;
}

/* CTA Box */
.futturu-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.futturu-cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.futturu-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.futturu-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    display: inline-block;
}

.futturu-benefits-list li {
    padding: 8px 0;
    font-size: 15px;
}

.futturu-btn-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.futturu-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .futturu-audit-card {
        padding: 25px;
    }
    
    .futturu-score-overview {
        flex-direction: column;
    }
    
    .score-card {
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .score-number {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .futturu-cta-box h3 {
        font-size: 20px;
    }
}
