/* TruGuard Theme – Main CSS
   Custom styles that extend Tailwind for brand-specific effects
   ============================================================== */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --brand-yellow: #F5C800;
    --brand-dark:   #1A1A1A;
    --brand-gray:   #F5F5F5;
    --header-h:     80px;
    --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: #1A1A1A; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; }

/* ── Sticky Header: shadow on scroll ──────────────────────── */
.site-header.scrolled .main-nav {
    background: rgba(26,26,26,0.98) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* ── Navigation Dropdown ───────────────────────────────────── */
.truguard-nav > li > .truguard-dropdown { display: none; }
.truguard-nav > li:hover > .truguard-dropdown { display: block; }
.truguard-nav > li.has-children > a::after { content: ''; }

/* ── Mobile Menu Transition ────────────────────────────────── */
#mobile-menu {
    overflow: hidden;
}

/* ── Mobile Dropdown ───────────────────────────────────────── */
.mobile-has-children > ul {
    display: none;
}
.mobile-has-children.active > ul {
    display: flex;
}

/* ── Before/After Slider ───────────────────────────────────── */
.before-after-container {
    user-select: none;
}
.ba-handle {
    pointer-events: none;
}
.ba-handle .ba-circle {
    pointer-events: all;
    cursor: col-resize;
}

/* ── Service Card Hover ────────────────────────────────────── */
.service-card:hover .service-card-overlay {
    opacity: 1;
}

/* ── Swiper Custom ─────────────────────────────────────────── */
.swiper-button-prev,
.swiper-button-next {
    background: white;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;
    font-weight: 900;
}
.swiper-pagination-bullet-active {
    background: var(--brand-yellow) !important;
}

/* ── Prose (service content) ───────────────────────────────── */
.service-content h2 { font-size: 1.75rem; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; color: var(--brand-dark); margin-top: 2rem; margin-bottom: 0.75rem; }
.service-content h3 { font-size: 1.25rem; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; color: var(--brand-dark); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.service-content ul { list-style: none; padding: 0; }
.service-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.9375rem; color: #4B5563; }
.service-content ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-yellow); }
.service-content a { color: var(--brand-yellow); text-decoration: underline; }
.service-content a:hover { color: #d4a800; }
.service-content blockquote { border-left: 4px solid var(--brand-yellow); padding-left: 1.25rem; font-style: italic; color: #6B7280; margin: 1.5rem 0; }

/* ── Line Clamp ────────────────────────────────────────────── */
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.line-clamp-4 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);    }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* ── Area Card ─────────────────────────────────────────────── */
.area-card:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}
.area-card img {
    transition: transform 0.4s ease;
}

/* ── Brand Logo Hover ──────────────────────────────────────── */
.brand-logo img {
    transition: filter 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}
.brand-logo img:hover {
    opacity: 1;
}

/* ── Feature Card ──────────────────────────────────────────── */
.feature-card .icon-circle {
    transition: all var(--transition);
}

/* ── Responsive fixes ──────────────────────────────────────── */
@media (max-width: 1023px) {
    .header-spacer { height: 64px !important; }
}

/* ── WordPress Admin Bar fix ───────────────────────────────── */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar #site-header { top: 46px; }
}

/* ── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand-yellow); border-radius: 3px; }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background: var(--brand-yellow); color: var(--brand-dark); }

/* ── Focus Styles ──────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: 2px; }

/* ── Sticky Sidebar ────────────────────────────────────────── */
@media (min-width: 1024px) {
    .sticky { position: sticky; top: calc(var(--header-h) + 16px); }
}
/* ============================================================
   Hero Estimate Form Card – paste into main.css
   ============================================================ */

/* Card wrapper */
.hero-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}

/* Title */
.hero-form-card h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 .25rem;
    line-height: 1.1;
}

/* Subtitle */
.hero-form-card p.subtitle {
    font-size: .9rem;
    color: #6b7280;
    margin: 0 0 1.25rem;
}

/* Form body padding */
.hero-form-card .hero-estimate-form,
.hero-form-card > div {
    padding: 1.75rem 2rem 2rem;
}

/* Row: two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    margin-bottom: .55rem;
}

/* Row: full width */
.form-row.full {
    grid-template-columns: 1fr;
}

/* All inputs + select */
.hero-form-card input[type="text"],
.hero-form-card input[type="tel"],
.hero-form-card input[type="email"],
.hero-form-card select {
    width: 100%;
    padding: .75rem 1rem;
    border: none;
    border-bottom: 1.5px solid #e5e7eb;
    border-radius: 0;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    color: #374151;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .2s ease;
}

.hero-form-card input::placeholder {
    color: #9ca3af;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    border-bottom-color: #F5C800;
}

/* Select arrow */
.hero-form-card select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2.2rem;
    color: #9ca3af;
    cursor: pointer;
}

/* Submit button */
.estimate-submit-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: none;
    padding: .5rem 0 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    transition: color .2s ease;
}

.estimate-submit-btn:hover {
    color: #b38a00;
}

.estimate-submit-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Consent text */
.form-consent {
    font-size: .75rem;
    color: #9ca3af;
    margin-top: .75rem;
    line-height: 1.5;
}

/* Mobile: stack columns */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-form-card > div,
    .hero-form-card .hero-estimate-form {
        padding: 1.25rem 1.25rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   WHY CHOOSE US — TruGuard
   Place in: assets/css/sections/why-choose-us.css
   Enqueue in functions.php or @import in main stylesheet
═══════════════════════════════════════════════════════════════════ */

/* ---------- Section shell ---------- */
.wcu-section {
    background: #fafaf8;
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}

.wcu-bg-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8b800 0%, #f5cb00 50%, #e8b800 100%);
}

.wcu-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.wcu-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #c9960a;
    margin-bottom: 12px;
}

.wcu-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #111111;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.wcu-card {
    border: 1px solid #e9e5d8;
    border-radius: 10px;
    border-right: 1px solid #e9e5d8;
}

.wcu-heading span {
    color: #c9960a;
}

/* ---------- Grid ---------- */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
   
    border-radius: 12px;
    overflow: hidden;
 
}

/* ---------- Card ---------- */
.wcu-card {
    padding: 36px 18px 32px;
    text-align: center;
    border-right: 1px solid #e9e5d8;
    position: relative;
    background: #fff;
    transition: background 0.22s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.wcu-card:last-child {
    border-right: none;
}

/* Gold underline reveal on hover */
.wcu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: #e8b800;
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
}

.wcu-card:hover {
    background: #fffef5;
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.wcu-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---------- Icon ---------- */
.wcu-icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #f0e090;
    background: #fffde8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.22s ease, border-color 0.22s ease;
    color: #c9960a;
}

.wcu-icon-ring svg {
    width: 26px;
    height: 26px;
    transition: color 0.22s ease;
}

.wcu-card:hover .wcu-icon-ring {
    background: #f5e800;
    border-color: #d4a800;
    color: #7a5a00;
}

/* ---------- Text ---------- */
.wcu-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.wcu-card:hover .wcu-title {
    color: #c9960a;
}

.wcu-desc {
    font-size: 12.5px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Footer ---------- */
.wcu-footer {
    text-align: center;
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.wcu-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1a1a;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.wcu-cta:hover {
    background: #c9960a;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.wcu-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.wcu-badge {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wcu-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e8b800;
    display: inline-block;
    flex-shrink: 0;
}

/* ── Mobile: 2×3 grid ──────────────────────────────────────── */
@media (max-width: 767px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        overflow-x: visible !important;
        gap: 12px !important;
    }
    .wcu-card {
        min-width: 0 !important;
        border-right: 1px solid #e9e5d8 !important;
        border-radius: 10px !important;
    }
    .wcu-card:last-child {
        border-right: 1px solid #e9e5d8 !important;
    }
}

/* ── Tablet: 3×2 grid ─────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .wcu-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: auto !important;
        overflow-x: visible !important;
        gap: 16px !important;
    }
    .wcu-card {
        min-width: 0 !important;
        border-right: 1px solid #e9e5d8 !important;
        border-radius: 10px !important;
    }
    .wcu-card:last-child {
        border-right: 1px solid #e9e5d8 !important;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   HERO — Phone inline button
═══════════════════════════════════════════════════════════════════ */
.hero-phone-btn {
    border-radius: 4px;
}

.hero-phone-btn .hero-phone-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.hero-phone-btn:hover .hero-phone-icon {
    background: rgba(245,200,0,0.2);
}


/* ═══════════════════════════════════════════════════════════════════
   GLOBAL HEADING TYPOGRAPHY — Grayson-style: large, bold, eye-catching
   Matches reference: clamp sizes, tight tracking, heavy weight
═══════════════════════════════════════════════════════════════════ */

/* All h2 section titles across the site */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
}

/* Hero H1 — massive impact */
.hero-section h1,
.hero-section .hero-copy h1 {
    font-size: clamp(2.4rem, 7vw, 5.5rem) !important;
    font-weight: 900 !important;
    line-height: 0.92 !important;
    letter-spacing: -0.02em !important;
}

/* Main section H2s — bold and prominent like Grayson */
.services-section h2,
.portfolio-section h2,
.testimonials-section h2,
.about-mission h2,
.areas-section h2,
.financing-banner h3 {
    font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.0 !important;
    letter-spacing: -0.02em !important;
}

/* WCU heading override — already styled but boost it */
.wcu-heading {
    font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
    letter-spacing: -0.02em !important;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST REASONS SECTION — Grayson-style dark navy, TruGuard yellow
═══════════════════════════════════════════════════════════════════ */
.trust-reasons-section {
    background: var(--brand-dark);  /* site brand dark #1A1A1A */
    padding: 80px 24px 88px;
    position: relative;
    overflow: hidden;
}

/* subtle texture overlay */
.trust-reasons-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(245,200,0,0.04) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(245,200,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-reasons-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.trust-reasons-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-reasons-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #f5c800;
    margin-bottom: 14px;
}

.trust-reasons-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.0;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.trust-reasons-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}

/* 4-column grid */
.trust-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.trust-reason-card {
    text-align: center;
    padding: 8px 16px;
}

/* Icon box — rounded square with brand-appropriate styling */
.trust-reason-icon {
    width: 72px;
    height: 72px;
    background: rgba(245,200,0,0.08);
    border: 1px solid rgba(245,200,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #f5c800;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.trust-reason-icon svg {
    width: 32px;
    height: 32px;
}

.trust-reason-card:hover .trust-reason-icon {
    background: rgba(245,200,0,0.18);
    border-color: rgba(245,200,0,0.5);
    transform: translateY(-3px);
}

/* Title */
.trust-reason-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Description */
.trust-reason-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
    margin: 0;
}

/* Tablet: 2×2 */
@media (max-width: 900px) {
    .trust-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
}

/* Mobile: 1 col */
@media (max-width: 540px) {
    .trust-reasons-section {
        padding: 56px 20px 64px;
    }
    .trust-reasons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .trust-reason-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }
    .trust-reason-icon {
        flex-shrink: 0;
        margin: 0;
    }
    .trust-reason-title,
    .trust-reason-desc {
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO BUTTON EQUAL SIZE FIX
   ABOUT PAGE — Full layout matching service detail page design
═══════════════════════════════════════════════════════════════════ */

/* ── About Hero ────────────────────────────────────────────────── */
.about-page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.about-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.about-page-hero-bg--gradient {
    background: linear-gradient(135deg, #111 0%, #333 100%);
}
.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.85) 40%, rgba(0,0,0,.35) 100%);
}
.about-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 700px;
}
@media (max-width: 640px) {
    .about-page-hero-content { padding: 48px 20px; }
}
.about-page-breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    letter-spacing: .3px;
    margin-bottom: 16px;
}
.about-page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.about-page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 28px;
}
.about-page-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    transition: filter .2s, transform .15s;
}
.about-page-hero-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* ── Stats Bar ─────────────────────────────────────────────────── */
.about-stats-bar {
    background: var(--brand-dark);
    position: relative;
}
.about-stats-topline {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow) 0%, #e8b800 100%);
}
.about-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
    margin: 0 auto;
}
.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}
.about-stat-divider {
    border-right: 1px solid rgba(255,255,255,.1);
}
.about-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--brand-yellow);
    line-height: 1.0;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}
.about-stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .12em;
    display: block;
}
@media (max-width: 640px) {
    .about-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat-divider {
        border-right: none;
    }
    .about-stat-item:nth-child(1),
    .about-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .about-stat-item:nth-child(1),
    .about-stat-item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,.1);
    }
}

/* ── Mission (When Should You layout) ─────────────────────────── */
.about-mission-section {
    background: #fff;
    padding: 72px 24px;
}
.about-mission-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.about-mission-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: #c9960a;
    margin-bottom: 12px;
}
.about-mission-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin: 0 0 16px;
}
.about-mission-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 14px;
}
.about-mission-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-mission-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
}
.about-mission-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-dark);
}
.about-mission-check svg {
    width: 13px;
    height: 13px;
}
.about-mission-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.about-mission-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    text-align: center;
    gap: 8px;
}

/* ── Process Steps ─────────────────────────────────────────────── */
.about-process-section {
    background: #f5f5f5;
    padding: 72px 24px;
}
.about-process-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.about-process-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: #c9960a;
    margin-bottom: 10px;
}
.about-process-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.about-process-sub {
    font-size: 15px;
    color: #666;
    margin: 0 0 52px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.about-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
/* connector line */
.about-process-line {
    position: absolute;
    top: 30px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand-yellow), #e8b800);
    z-index: 0;
}
.about-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.about-process-circle {
    width: 60px;
    height: 60px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    box-shadow: 0 4px 16px rgba(245,200,0,.4);
}
.about-process-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1;
}
.about-process-emoji {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 18px;
    line-height: 1;
}
.about-process-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 8px;
}
.about-process-step-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 640px) {
    .about-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .about-process-line { display: none; }
}

/* ── Logos / Materials ─────────────────────────────────────────── */
.about-logos-section {
    background: #fff;
    padding: 60px 24px;
    border-top: 1px solid #f0f0f0;
}
.about-logos-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.about-logos-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.about-logos-sub {
    font-size: 14px;
    color: #888;
    margin: 0 0 36px;
}
.about-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* ── ACF fields for new about sections ────────────────────────── */
/* (logos_title, logos_subtitle, process fields handled in PHP defaults) */

/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE STATS SECTION
   Large bold numbers on dark bg — sits after Why Us section
═══════════════════════════════════════════════════════════════════ */
.home-stats-section {
    background: var(--brand-dark);
    position: relative;
}
.home-stats-topbar {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow) 0%, #d4aa00 100%);
}
.home-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
}
.home-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 52px 24px;
    gap: 6px;
    position: relative;
}
.home-stat-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.1);
}
.home-stat-icon {
    color: var(--brand-yellow);
    opacity: 0.7;
    margin-bottom: 8px;
    line-height: 0;
}
.home-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--brand-yellow);
    line-height: 1.0;
    letter-spacing: -0.02em;
    display: block;
}
.home-stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .14em;
    display: block;
}

/* ── Tablet: 2×2 ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .home-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-stat-divider::after { display: none; }
    .home-stat-item {
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .home-stat-item:nth-child(1),
    .home-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .home-stat-item:nth-child(3),
    .home-stat-item:nth-child(4) {
        border-bottom: none;
    }
    .home-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.07);
    }
}

/* ── Mobile: single column ────────────────────────────────────── */
@media (max-width: 480px) {
    .home-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-stat-item {
        padding: 36px 16px;
    }
    .home-stat-number {
        font-size: 2.4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE TYPOGRAPHY — Prominent headings on small screens
   Override all section headings to be large & readable on mobile
═══════════════════════════════════════════════════════════════════ */

/* Base: ensure Barlow Condensed everywhere */
h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 900 !important;
}

/* Mobile heading scale — proper hierarchy */
@media (max-width: 767px) {

    /* H1 — Hero */
    .hero-section h1,
    .hero-copy h1,
    .about-page-hero-title {
        font-size: 2.6rem !important;
        line-height: 0.95 !important;
        letter-spacing: -0.02em !important;
    }

    /* H2 — All main section titles */
    .wcu-heading,
    .services-section h2,
    .portfolio-section h2,
    .testimonials-section h2,
    .trust-reasons-heading,
    .about-mission-title,
    .about-process-title,
    .about-logos-title,
    .about-page-hero-title,
    .font-heading.font-black.uppercase.text-brand-dark {
        font-size: 1.4rem !important;
        line-height: 1.0 !important;
        letter-spacing: -0.015em !important;
    }

    /* Financing banner heading */
    .financing-banner h3 {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
    }

    /* CTA section heading */
    .about-cta h2,
    .tgsb-cta__inner h2 {
        font-size: 1.8rem !important;
    }

    /* Section subtitles — readable body size */
    .wcu-section p,
    .services-section p,
    .trust-reasons-sub,
    .about-mission-body,
    .about-process-sub {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* Eyebrow labels — keep tight */
    .wcu-eyebrow,
    .trust-reasons-eyebrow,
    .about-mission-eyebrow,
    .about-process-eyebrow {
        font-size: 10px !important;
        letter-spacing: 0.35em !important;
    }

    /* WCU card titles — larger on mobile */
    .wcu-title {
        font-size: 13px !important;
        letter-spacing: 0.05em !important;
    }

    /* Trust reason titles */
    .trust-reason-title {
        font-size: 16px !important;
    }

    /* Tailwind utility heading classes — force size on mobile */
    .text-4xl { font-size: 2rem !important; }
    .text-5xl { font-size: 2.4rem !important; }
    .text-6xl { font-size: 2.8rem !important; }

    /* Section padding tighter on mobile */
    .wcu-section,
    .services-section,
    .portfolio-section,
    .testimonials-section,
    .areas-section,
    .trust-reasons-section {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero-section h1,
    .hero-copy h1 {
        font-size: 2.1rem !important;
    }
    .wcu-heading,
    .trust-reasons-heading {
        font-size: 1.8rem !important;
    }
}
/*
 * TruGuard — Heading Weight Patch
 * Apply via: Appearance → Customize → Additional CSS
 * OR: add <link> to this file in header.php
 *
 * Change: headings less bold (700 instead of 900),
 *         slightly smaller sizes, same layout untouched.
 */

/* ── Global heading weight reset ────────────── */
h1, h2, h3, h4, h5, h6,
.font-black,
.font-heading {
    font-weight: 700 !important;
}

/* ── Hero H1 ─────────────────────────────────── */
.hero-section h1,
.hero-copy h1,
.hero-section .hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: 0em !important;
}

/* ── Section H2s ─────────────────────────────── */
.wcu-heading,
.services-section h2,
.portfolio-section h2,
.testimonials-section h2,
.areas-section h2,
.trust-reasons-section h2,
.financing-banner h2,
.financing-banner h3,
.cta-section h2,
h2.font-heading,
.section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.1 !important;
}

/* ── Financing / CTA banner headings ────────── */
.financing-banner h2,
.financing-banner h3,
.cta-section h2,
.bottom-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
    font-weight: 700 !important;
}

/* ── Service hero H1 ─────────────────────────── */
.service-hero h1,
.service-banner h1,
.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
}

/* ── WCU card titles ─────────────────────────── */
.wcu-title {
    font-weight: 700 !important;
    font-size: 13px !important;
}

/* ── Trust reason titles ─────────────────────── */
.trust-reason-title {
    font-weight: 700 !important;
}

/* ── Mobile adjustments ──────────────────────── */
@media (max-width: 767px) {
    .hero-section h1,
    .hero-copy h1 {
        font-size: 2rem !important;
        font-weight: 700 !important;
    }

    .wcu-heading,
    h2.font-heading,
    .section__title {
        font-size: 1.7rem !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 380px) {
    .hero-section h1,
    .hero-copy h1 {
        font-size: 1.8rem !important;
    }
    .wcu-heading,
    h2.font-heading {
        font-size: 1.5rem !important;
    }
}