/* === Wilson Computers Custom Styles v2 === */
/* Palette: Teal accent + Charcoal CTAs + Clean whites */

/* Typography utility classes */
.font-mono {
    font-family: "Sometype Mono", monospace !important;
}
.font-quote {
    font-family: "Playfair Display", serif !important;
    font-style: italic;
}

/* Stat numbers - Sometype Mono */
.wc-stat {
    font-family: "Sometype Mono", monospace;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: #23C4CC;
}
.wc-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    margin-top: 0.5rem;
}

/* Testimonial quotes */
.wc-testimonial blockquote,
.wc-testimonial .wp-block-quote p {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #404041;
}
.wc-testimonial blockquote cite {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 0.875rem;
    color: #64748B;
}
.wc-testimonial blockquote cite strong {
    color: #1a1a2e;
}

/* === Primary CTA - Dark Charcoal === */
.wp-block-button .wp-block-button__link,
.wc-btn-primary {
    background-color: #32373c !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    text-decoration: none;
}
.wp-block-button .wp-block-button__link:hover,
.wc-btn-primary:hover {
    background-color: #44546A !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
}

/* Outline / secondary buttons */
.wp-block-button.is-style-outline .wp-block-button__link,
.wc-btn-secondary {
    background-color: transparent !important;
    color: #32373c !important;
    border: 2px solid #32373c;
    border-radius: 6px;
    padding: 12px 26px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wc-btn-secondary:hover {
    background-color: #32373c !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* === Cards === */
.wc-card {
    background: #fff;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.08);
}

/* === Section backgrounds === */
.wc-section-gray {
    background-color: #F7F7F7 !important;
}
.wc-section-dark {
    background-color: #0F172A !important;
}
.wc-section-dark h1,
.wc-section-dark h2,
.wc-section-dark h3 {
    color: #fff;
}
.wc-section-dark p {
    color: #cbd5e1;
}
.wc-section-dark .wc-stat {
    color: #23C4CC;
}

/* === Trust bar === */
.wc-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
}
.wc-trust-bar img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}
.wc-trust-bar img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* === Links === */
a {
    color: #23C4CC;
    transition: color 0.2s ease;
}
a:hover {
    color: #1a1a2e;
}

/* Service card learn more links */
.wc-card a {
    color: #23C4CC;
    text-decoration: none;
    font-weight: 500;
}
.wc-card a:hover {
    color: #1a9da4;
}

/* === Hero === */
.wc-hero {
    padding: 96px 0 80px;
}
.wc-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    max-width: 720px;
    line-height: 1.15;
}
.wc-hero p {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 560px;
    line-height: 1.6;
}

/* Override blockquote border */
.wp-block-quote {
    border-left: 3px solid #23C4CC;
    padding-left: 24px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .wc-stat {
        font-size: 2rem;
    }
    .wc-trust-bar {
        gap: 24px;
    }
    .wc-trust-bar img {
        max-height: 32px;
    }
}
