/* COUNTDOWN GRID STYLES */
.countdown-hero {
    background: linear-gradient(to bottom right, var(--surface, #ffffff), #f8fafc);
    border-radius: 16px;
    padding: 3.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid var(--border, #e2e8f0);
    border-top: 5px solid var(--primary, #2563eb);
    margin: 35px auto 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

/* New Massive Hero Result */
.hero-massive-result {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary, #2563eb);
    line-height: 1;
    margin: 1.5rem 0 0.5rem 0;
    text-shadow: 2px 2px 0px rgba(37, 99, 235, 0.1);
}
.hero-massive-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Progress Bar */
.progress-wrapper {
    max-width: 600px;
    margin: 2.5rem auto 0 auto;
    text-align: left;
}
.progress-bar-bg {
    background: #e2e8f0;
    height: 12px;
    border-radius: 50px;
    width: 100%;
    overflow: hidden;
    margin-top: 8px;
}
.progress-bar-fill {
    height: 100%;
    background: var(--primary, #2563eb);
    width: 0%; /* Set via JS */
    border-radius: 50px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    margin-top: 5px;
}

/* SEO Table Styles */
.seo-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-radius: 8px;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface, #ffffff);
    font-size: 0.95rem;
}
.seo-table th, .seo-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.seo-table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-main, #1e293b);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.seo-table tr:last-child td {
    border-bottom: none;
}
.seo-table tr:hover td {
    background: #f1f5f9;
}

/* Existing Metric Grid Styles... */
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.metric-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.5rem; text-align: center; border-top: 3px solid var(--primary, #3b82f6); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.metric-box:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: var(--primary, #3b82f6); }
.metric-question { font-size: 0.95rem; font-weight: 700; color: var(--text-main, #1e293b); margin-bottom: 1rem; line-height: 1.4; }
.metric-result { font-size: 2.5rem; font-weight: 800; color: var(--primary, #2563eb); display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.metric-unit { font-size: 1rem; font-weight: 600; color: var(--text-muted, #64748b); text-transform: uppercase; }