.sc-home {
    color: #1f2937;
}

.sc-home section {
    padding: 3rem 1.5rem;
}

.sc-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sc-section-inner-narrow {
    max-width: 780px;
}

.sc-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sc-section-head h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.sc-section-head p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.sc-section-foot {
    text-align: center;
    margin-top: 2rem;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.3;
}

.sc-btn-primary {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.sc-btn-primary:hover,
.sc-btn-primary:focus {
    background: #d8412f;
    border-color: #d8412f;
    color: #fff;
}

.sc-btn-secondary {
    background: #fff;
    color: #1f2937;
    border-color: #d1d5db;
}

.sc-btn-secondary:hover,
.sc-btn-secondary:focus {
    border-color: #1f2937;
    color: #1f2937;
}

.sc-btn-on-dark {
    background: #fff;
    color: #1f2937;
    border-color: #fff;
}

.sc-btn-on-dark:hover,
.sc-btn-on-dark:focus {
    background: #f3f4f6;
    color: #1f2937;
    border-color: #f3f4f6;
}

.sc-hero {
    background: #f9fafb;
    padding: 3.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.sc-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.sc-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
    margin: 0 0 1rem;
}

.sc-hero-sub {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

.sc-hero-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-categories {
    background: #fff;
}

.sc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sc-category-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sc-category-card:hover,
.sc-category-card:focus {
    border-color: #9ca3af;
}

.sc-category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.sc-category-card > p {
    color: #6b7280;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.sc-category-link {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.sc-bestseller {
    background: #f9fafb;
}

.sc-bestseller .woocommerce ul.products {
    margin-top: 0;
}

.sc-how {
    background: #fff;
}

.sc-how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.sc-how-step {
    text-align: center;
    padding: 1rem;
}

.sc-how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.sc-how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.4rem;
}

.sc-how-step p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.sc-faq {
    background: #f9fafb;
}

.sc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sc-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.sc-faq-item summary {
    padding: 0.95rem 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    font-size: 0.95rem;
}

.sc-faq-item summary::-webkit-details-marker {
    display: none;
}

.sc-faq-item summary::after {
    content: "+";
    color: #6b7280;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.sc-faq-item[open] summary::after {
    content: "−";
}

.sc-faq-body {
    padding: 0 1.1rem 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sc-faq-body p {
    margin: 0;
}

.sc-faq-body a {
    color: #1f2937;
    text-decoration: underline;
}

.sc-final-cta {
    background: #1f2937;
    color: #fff;
    text-align: center;
}

.sc-final-cta h2 {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.sc-final-cta p {
    color: #d1d5db;
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

@media (max-width: 1024px) {
    .sc-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sc-how-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .sc-home section {
        padding: 2.25rem 1.25rem;
    }
    .sc-hero {
        padding: 2.5rem 1.25rem;
    }
    .sc-hero h1 {
        font-size: 1.5rem;
    }
    .sc-hero-sub {
        font-size: 1rem;
    }
    .sc-section-head h2,
    .sc-final-cta h2 {
        font-size: 1.35rem;
    }
    .sc-category-grid {
        grid-template-columns: 1fr;
    }
    .sc-hero-ctas .sc-btn {
        width: 100%;
    }
}

.sc-values {
    background: #fff;
}

.sc-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sc-value-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
    padding: 1.5rem;
}

.sc-value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.sc-value-card p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.sc-products-windows {
    background: #fff;
}

.sc-products-office {
    background: #f9fafb;
}

@media (max-width: 1024px) {
    .sc-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .sc-values-grid {
        grid-template-columns: 1fr;
    }
    .sc-hero-meta {
        font-size: 0.8rem;
    }
}
