/* Core Layout & Typography */
main.container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: #1e293b !important;
    background-color: #f8fafc;
    padding: 40px 15px !important;
    border-radius: 16px;
}

.counter-hero {
    text-align: center;
    margin-bottom: 30px;
}
.counter-title-main {
    font-size: 2.2rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    margin-bottom: 10px !important;
}
.counter-subtitle-main {
    font-size: 16px !important;
    color: #64748b !important;
    font-weight: 500;
}

.counter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .counter-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.counter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
}

.small-action-btn {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #4f46e5;
    border-radius: 6px;
    cursor: pointer;
}

/* Form Elements & Badge Triggers */
.counter-textarea {
    width: 100%;
    height: 220px;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    resize: none;
    box-sizing: border-box;
    line-height: 1.5;
    background: #f8fafc;
}
.counter-textarea:focus {
    border-color: #4f46e5;
    background: #fff;
}

.basic-stats-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.stat-badge {
    font-size: 12px;
    font-weight: 750;
    color: #475569;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
}
.stat-badge span { color: #4f46e5; font-weight: 850; }

/* Platform Rows Layout & Progress Tracking Indicators */
.platform-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    flex: 1;
}
.platform-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.platform-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 750;
}
.platform-name { color: #334155; }
.platform-limits { color: #64748b; font-variant-numeric: tabular-nums; }

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    width: 0%;
    height: 100%;
    background: #22c55e;
    border-radius: 4px;
    transition: width 0.1s ease, background-color 0.2s ease;
}

/* SEO Step-Guide Styles */
.seo-guide-section { max-width: 1200px; margin: 50px auto 0 auto; }
.step-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 25px; }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { background: #fff; border: 1px solid #e2e8f0; padding: 22px; border-radius: 12px; position: relative; }
.step-num { position: absolute; top: -12px; left: 20px; background: #4f46e5; color: #fff; font-weight: 800; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 13px; }
.step-card h4 { margin: 8px 0 8px 0; font-size: 16px; font-weight: 750; color: #0f172a; }
.step-card p { margin: 0; font-size: 13.5px; color: #475569; line-height: 1.5; }

/* FAQ Styles */
.faq-section { max-width: 850px; margin: 50px auto 20px auto; }
.faq-main-title { font-size: 24px !important; font-weight: 850 !important; color: #0f172a; text-align: center; margin-bottom: 25px; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; margin-bottom: 15px; }
.faq-question { font-size: 16px !important; font-weight: 750 !important; color: #0f172a; margin-top: 0; margin-bottom: 8px; }
.faq-answer { font-size: 14px; color: #475569; line-height: 1.6; margin: 0; }