/* Container & Layout */
#ww-audit-container {
    max-width: 850px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ww-glass-morphism {
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Typography */
.ww-hypnotic-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.ww-subtitle {
    font-size: 1.1rem;
    color: #86868b;
    margin-bottom: 30px;
}

/* Input & Buttons */
.ww-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ww-main-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ww-main-input:focus {
    border-color: #0071e3;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.ww-primary-btn {
    padding: 18px 35px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ww-primary-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
}

/* Results Grid */
.ww-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.ww-card {
    padding: 25px;
    background: #f5f5f7;
    border-radius: 15px;
    border: 1px solid #e5e5e7;
}

.ww-card h4 {
    margin-top: 0;
    color: #1d1d1f;
    font-size: 1.1rem;
}

.ww-highlight-card {
    background: #e1f5fe;
    border-color: #b3e5fc;
}

.ww-summary-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #424245;
}

/* Progress Bar */
.ww-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e5e7;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

#ww-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0071e3, #40a9ff);
    transition: width 1.5s ease-in-out;
}

/* Lead Capture */
.ww-capture-section {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border: 2px solid #0071e3;
    border-radius: 15px;
    text-align: center;
}

.ww-form-grid {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.ww-form-grid input {
    flex: 1;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
}

.ww-submit-btn {
    width: 100%;
    padding: 15px;
    background: #1d1d1f;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}