/**
 * DESANDRO Website Check - Frontend Styles v3.2
 * DESANDRO Corporate Design with Filson Pro
 */

/* Filson Pro font - falls back to system fonts if not available */
@font-face {
    font-family: 'Filson Pro';
    src: local('Filson Pro'), local('FilsonPro');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Filson Pro';
    src: local('Filson Pro Medium'), local('FilsonPro-Medium');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Filson Pro';
    src: local('Filson Pro Bold'), local('FilsonPro-Bold');
    font-weight: 700;
    font-style: normal;
}

:root {
    --dwc-primary: #001A2E;
    --dwc-accent: #00FFFA;
    --dwc-success: #10b981;
    --dwc-warning: #f59e0b;
    --dwc-error: #ef4444;
    --dwc-purple: #8b5cf6;
    --dwc-gray: #64748b;
    --dwc-light: #f8fafc;
    --dwc-white: #ffffff;
}

* { box-sizing: border-box; }

.dwc-container {
    font-family: 'Filson Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--dwc-primary);
    line-height: 1.6;
}

/* Header */
.dwc-header {
    text-align: center;
    margin-bottom: 40px;
}

.dwc-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--dwc-primary);
    margin: 0 0 12px 0;
}

.dwc-title-accent {
    background: linear-gradient(135deg, var(--dwc-accent) 0%, #00d4d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dwc-subtitle {
    font-size: 1.0625rem;
    color: var(--dwc-gray);
    max-width: 550px;
    margin: 0 auto;
}

/* Form Card */
.dwc-form-card {
    background: var(--dwc-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 26, 46, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
}

.dwc-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dwc-primary) 0%, var(--dwc-accent) 100%);
    border-radius: 20px 20px 0 0;
}

.dwc-form-group { margin-bottom: 20px; }

.dwc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dwc-primary);
    margin-bottom: 8px;
}

.dwc-label svg { width: 18px; height: 18px; }

.dwc-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dwc-primary);
    background: var(--dwc-light);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
}

.dwc-input:focus {
    outline: none;
    border-color: var(--dwc-accent);
    background: var(--dwc-white);
    box-shadow: 0 0 0 4px rgba(0, 255, 250, 0.1);
}

.dwc-input::placeholder { color: #94a3b8; }

.dwc-hint {
    font-size: 0.8125rem;
    color: var(--dwc-gray);
    margin-top: 6px;
}

/* Checkbox */
.dwc-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--dwc-light);
    border-radius: 10px;
    margin: 24px 0;
}

.dwc-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--dwc-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.dwc-checkbox-label {
    font-size: 0.875rem;
    color: var(--dwc-primary);
    line-height: 1.5;
    cursor: pointer;
}

.dwc-checkbox-label a {
    color: var(--dwc-primary);
    font-weight: 600;
}

/* Submit Button - matches CTA button style */
.dwc-submit-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    font-family: inherit;
    color: #001A2E !important;
    background: #00FFFA !important;
    background-color: #00FFFA !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.3s;
}

.dwc-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 250, 0.4) !important;
    background: #00FFFA !important;
    background-color: #00FFFA !important;
}

.dwc-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.dwc-btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dwc-btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dwc-spinner-small {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 26, 46, 0.2);
    border-top-color: var(--dwc-primary);
    border-radius: 50%;
    animation: dwc-spin 1s linear infinite;
}

/* Disclaimer */
.dwc-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(0, 255, 250, 0.05) 0%, rgba(0, 26, 46, 0.02) 100%);
    border: 1px solid rgba(0, 26, 46, 0.08);
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--dwc-gray);
}

.dwc-disclaimer svg {
    color: var(--dwc-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.dwc-disclaimer strong { color: var(--dwc-primary); }

/* Loading Card */
.dwc-loading-card {
    background: var(--dwc-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 26, 46, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.dwc-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 26, 46, 0.1);
    border-top-color: var(--dwc-primary);
    border-radius: 50%;
    animation: dwc-spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.dwc-loading-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dwc-primary);
    min-height: 28px;
}

.dwc-loading-sub {
    font-size: 0.875rem;
    color: var(--dwc-gray);
    margin-top: 8px;
    margin-bottom: 30px;
}

.dwc-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
}

.dwc-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dwc-light);
    border-radius: 8px;
    font-size: 0.875rem;
    opacity: 0.5;
    transition: all 0.3s;
}

.dwc-step.active {
    opacity: 1;
    background: rgba(0, 255, 250, 0.1);
    border-left: 3px solid var(--dwc-accent);
}

.dwc-step.completed {
    opacity: 1;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--dwc-success);
}

.dwc-step-icon { font-size: 1.125rem; }

/* Results */
.dwc-results { animation: dwc-fadeIn 0.5s ease; }

@keyframes dwc-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Report Header */
.dwc-report-header {
    background: var(--dwc-primary);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    color: var(--dwc-white);
}

.dwc-report-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dwc-url-box {
    background: rgba(0, 255, 250, 0.1);
    border: 1px solid rgba(0, 255, 250, 0.2);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}

.dwc-url-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.dwc-url-value {
    font-size: 0.9375rem;
    color: var(--dwc-accent);
    word-break: break-all;
}

.dwc-report-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Tech Grid */
.dwc-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.dwc-tech-card {
    background: var(--dwc-white);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.dwc-tech-icon { font-size: 1.5rem; margin-bottom: 10px; }
.dwc-tech-label { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; color: var(--dwc-gray); margin-bottom: 4px; }
.dwc-tech-value { font-size: 0.9375rem; font-weight: 600; color: var(--dwc-primary); }

/* Section Cards */
.dwc-section {
    background: var(--dwc-white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.dwc-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dwc-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dwc-section-icon.lighthouse { background: rgba(245, 158, 11, 0.1); }
.dwc-section-icon.seo { background: rgba(0, 255, 250, 0.15); }
.dwc-section-icon.neuro { background: rgba(139, 92, 246, 0.1); }
.dwc-section-icon.legal { background: rgba(100, 116, 139, 0.1); }
.dwc-section-icon.ai { background: rgba(16, 185, 129, 0.1); }
.dwc-section-icon.summary { background: rgba(0, 255, 250, 0.15); }

.dwc-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.dwc-section-score {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9375rem;
}

.dwc-section-score.good { background: rgba(16, 185, 129, 0.1); color: var(--dwc-success); }
.dwc-section-score.average { background: rgba(245, 158, 11, 0.1); color: var(--dwc-warning); }
.dwc-section-score.poor { background: rgba(239, 68, 68, 0.1); color: var(--dwc-error); }

/* Score Cards (Lighthouse) */
.dwc-scores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.dwc-score-card { text-align: center; }

.dwc-score-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    position: relative;
}

.dwc-score-ring svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.dwc-score-ring circle { fill: none; stroke-width: 6; }
.dwc-score-ring .bg { stroke: #e2e8f0; }
.dwc-score-ring .progress { stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.dwc-score-ring .progress.good { stroke: var(--dwc-success); }
.dwc-score-ring .progress.average { stroke: var(--dwc-warning); }
.dwc-score-ring .progress.poor { stroke: var(--dwc-error); }

.dwc-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.125rem;
    font-weight: 700;
}

.dwc-score-value.good { color: var(--dwc-success); }
.dwc-score-value.average { color: var(--dwc-warning); }
.dwc-score-value.poor { color: var(--dwc-error); }

.dwc-score-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dwc-gray);
}

/* Vitals Grid */
.dwc-vitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.dwc-vital { background: var(--dwc-light); border-radius: 8px; padding: 12px; text-align: center; }
.dwc-vital-value { font-size: 0.9375rem; font-weight: 700; color: var(--dwc-primary); }
.dwc-vital-label { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; color: var(--dwc-gray); margin-top: 4px; }

/* Item Rows */
.dwc-items-list { display: flex; flex-direction: column; }

.dwc-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.dwc-item-row:last-child { margin-bottom: 0; }
.dwc-item-row.good { background: rgba(16, 185, 129, 0.08); border-left: 3px solid var(--dwc-success); }
.dwc-item-row.warning { background: rgba(245, 158, 11, 0.08); border-left: 3px solid var(--dwc-warning); }
.dwc-item-row.bad { background: rgba(239, 68, 68, 0.08); border-left: 3px solid var(--dwc-error); }
.dwc-item-row.info { background: var(--dwc-light); border-left: 3px solid var(--dwc-gray); }

.dwc-item-content { flex: 1; min-width: 0; }
.dwc-item-label { font-weight: 600; display: block; }
.dwc-item-value { color: var(--dwc-gray); font-size: 0.8125rem; margin-top: 2px; word-break: break-word; }
.dwc-item-note { font-size: 0.75rem; color: var(--dwc-gray); margin-top: 4px; font-style: italic; }

/* Neuro Items */
.dwc-neuro-item { background: var(--dwc-light); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.dwc-neuro-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dwc-neuro-label { font-weight: 600; }
.dwc-neuro-score { font-weight: 700; padding: 4px 12px; border-radius: 20px; font-size: 0.875rem; }
.dwc-neuro-score.good { background: rgba(16, 185, 129, 0.15); color: var(--dwc-success); }
.dwc-neuro-score.average { background: rgba(245, 158, 11, 0.15); color: var(--dwc-warning); }
.dwc-neuro-score.poor { background: rgba(239, 68, 68, 0.15); color: var(--dwc-error); }
.dwc-neuro-comment { font-size: 0.875rem; color: var(--dwc-gray); line-height: 1.5; }

/* Summary Section */
.dwc-section.summary { background: var(--dwc-primary); color: var(--dwc-white); border: none; }
.dwc-section.summary .dwc-section-title { color: var(--dwc-white); }

.dwc-fazit-grade {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.dwc-grade-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dwc-white);
}

.dwc-grade-circle.good { background: var(--dwc-success); }
.dwc-grade-circle.average { background: var(--dwc-warning); }
.dwc-grade-circle.poor { background: var(--dwc-error); }

.dwc-grade-info { text-align: left; }
.dwc-grade-text { font-size: 1rem; color: rgba(255, 255, 255, 0.9); max-width: 400px; }
.dwc-grade-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; margin-top: 4px; }

/* Strengths/Weaknesses */
.dwc-summary-list { margin-bottom: 24px; }
.dwc-summary-list h4 { font-size: 1rem; font-weight: 600; margin: 0 0 12px 0; color: var(--dwc-white); }

.dwc-strength-item, .dwc-weakness-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.dwc-strength-item { background: rgba(16, 185, 129, 0.15); color: #a7f3d0; }
.dwc-weakness-item { background: rgba(239, 68, 68, 0.15); color: #fecaca; }

/* Quick Fixes */
.dwc-quickfix-item {
    background: rgba(0, 255, 250, 0.1);
    border: 1px solid rgba(0, 255, 250, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.dwc-quickfix-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dwc-quickfix-badge { background: var(--dwc-accent); color: var(--dwc-primary); font-size: 0.625rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.dwc-quickfix-title { font-weight: 600; color: var(--dwc-white); font-size: 0.9375rem; }
.dwc-quickfix-priority { margin-left: auto; font-size: 0.6875rem; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; font-weight: 600; }
.dwc-priority-hoch { background: var(--dwc-error); color: white; }
.dwc-priority-mittel { background: var(--dwc-warning); color: white; }
.dwc-priority-niedrig { background: var(--dwc-success); color: white; }
.dwc-quickfix-desc { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); line-height: 1.5; }

/* Email Section */
.dwc-email-section {
    background: var(--dwc-primary);
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    text-align: center;
}

.dwc-email-title { font-size: 1.125rem; font-weight: 600; color: var(--dwc-white); margin: 0 0 8px 0; }
.dwc-email-sub { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); margin: 0 0 8px 0; }
.dwc-email-hint { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); margin: 0 0 16px 0; }

.dwc-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--dwc-primary);
    background: var(--dwc-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.dwc-email-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.dwc-email-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.dwc-email-status { margin-top: 15px; font-size: 0.875rem; }
.dwc-email-status.success { color: var(--dwc-success); }
.dwc-email-status.error { color: #fecaca; }

/* CTA Section */
.dwc-cta-section {
    background: linear-gradient(135deg, var(--dwc-primary) 0%, #003050 100%);
    border-radius: 20px;
    padding: 40px 32px;
    margin-top: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dwc-cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dwc-cta-emoji { font-size: 3rem; margin-bottom: 16px; position: relative; }
.dwc-cta-section h3 { font-size: 1.5rem; font-weight: 700; color: var(--dwc-white); margin: 0 0 12px 0; position: relative; }
.dwc-cta-section p { font-size: 1rem; color: rgba(255, 255, 255, 0.85); max-width: 480px; margin: 0 auto 24px; line-height: 1.6; position: relative; }
.dwc-cta-features { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; position: relative; }
.dwc-cta-feature { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; }
.dwc-cta-feature svg { color: var(--dwc-accent); }

.dwc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--dwc-primary);
    background: var(--dwc-accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.dwc-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 255, 250, 0.35); }

/* New Analysis */
.dwc-new-check { text-align: center; margin-top: 24px; }

.dwc-secondary-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--dwc-primary);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.dwc-secondary-btn:hover { border-color: var(--dwc-primary); background: var(--dwc-light); }

/* Footer */
.dwc-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.8125rem;
    color: var(--dwc-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Modal - LARGER */
.dwc-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 26, 46, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dwc-modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.dwc-modal-box {
    background: var(--dwc-white);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.dwc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.dwc-modal-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dwc-primary);
    margin: 0;
}

.dwc-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: var(--dwc-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dwc-gray);
    transition: all 0.2s;
}

.dwc-modal-close:hover { background: #e2e8f0; }

.dwc-modal-body {
    flex: 1;
    overflow: auto;
}

#dwc-cal-iframe {
    width: 100%;
    height: 750px;
    min-height: 700px;
    border: none;
}

/* Error */
.dwc-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--dwc-error);
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .dwc-container { padding: 24px 16px; }
    .dwc-form-card, .dwc-loading-card { padding: 24px; }
    .dwc-scores-grid { grid-template-columns: repeat(3, 1fr); }
    .dwc-cta-features { flex-direction: column; gap: 10px; }
    .dwc-fazit-grade { flex-direction: column; text-align: center; }
    .dwc-grade-info { text-align: center; }
    .dwc-modal-box { max-width: 95%; }
    #dwc-cal-iframe { height: 600px; min-height: 500px; }
    .dwc-cta-section { padding: 32px 20px; }
    .dwc-cta-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9375rem;
        justify-content: center;
    }
    .dwc-cta-section h3 { font-size: 1.25rem; }
    .dwc-cta-section p { font-size: 0.9375rem; }
}

@media (max-width: 480px) {
    .dwc-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .dwc-vitals-grid { grid-template-columns: repeat(2, 1fr); }
    .dwc-score-ring { width: 65px; height: 65px; }
    .dwc-score-ring svg { width: 65px; height: 65px; }
    .dwc-score-value { font-size: 1rem; }
}
