.font-heading.font-black.uppercase.text-brand-dark.text-2xl.leading-tight.mb-1 {
  background: #f5c800;
  padding: 20px;
  text-align: center;
  font-size: 18px !important;
}
.home-stats-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:120px;
    flex-wrap:wrap;
}

.home-stat-divider{
    position:relative;
}

.home-stat-divider::after{
    content:'';
    position:absolute;
    right:-60px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:170px;
    background:rgba(255,255,255,0.12);
}


/* MOBILE */
@media(max-width:767px){

    .home-stats-inner{
        gap:0;
    }
	.font-heading.font-black.uppercase.text-brand-dark {
		font-size: 17px !important;}

    .home-stat-item{
        width:50%;
        text-align:center;
        padding:20px 10px;
    }

    .home-stat-divider::after{
        right:0;
        height:120px;
    }

    .home-stat-number{
        font-size:52px;
        line-height:1;
    }

}
#menu-primary-menu .text-sm {
	font-size: 12px !important;}
#menu-primary-menu .px-3 {
 
  padding-left: 9px;
  padding-right: 9px;
}
/* Desktop dropdown */
#main-nav li.menu-item-has-children > ul,
#main-nav .truguard-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 8px 0;
    z-index: 9999;
    border-top: 2px solid #f5c800;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.absolute.-top-2.-right-2.w-6.h-6.rounded-full.bg-brand-dark.text-brand-yellow.text-xs.font-black.flex.items-center.justify-center {
  top: -30px;
  left: 19px;
  right: 0;
}
/* Mobile submenu */
.truguard-mobile-nav .mobile-has-children > ul {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid #374151;
}
a.inline-flex.items-center.gap-2.bg-brand-yellow.text-brand-dark.font-heading.font-bold.uppercase.tracking-wider.text-sm.px-7.py-\[18px\].hover\:bg-yellow-400.transition-colors.shadow-lg.shadow-yellow-900\/30.leading-none {
    padding: 25px;
}
.hero-cta-primary.inline-flex.items-center.gap-2.bg-brand-yellow.text-brand-dark.font-heading.font-bold.uppercase.tracking-wider.text-sm.px-5.py-\[18px\].hover\:bg-yellow-400.transition-colors.shadow-lg.shadow-yellow-900\/30.leading-none {
  font-size: 10px;
	padding: 28px 22px;
}
.text-\[15px\] {
  font-size: 13px !important;
}
.estimate-submit-btn {
  background: #f5c800;
  padding: 10px 20px;
}

@media (min-width: 1280px) {
  .xl\:text-6xl {
    font-size: 2.75rem;
    line-height: 1;
  }
}

@media (max-width: 540px) {

  .trust-reasons-grid {
    grid-template-columns: 1fr !important;
  }
	.hero-cta-primary.inline-flex.items-center.gap-2.bg-brand-yellow.text-brand-dark.font-heading.font-bold.uppercase.tracking-wider.text-sm.px-5.py-\[18px\].hover\:bg-yellow-400.transition-colors.shadow-lg.shadow-yellow-900\/30.leading-none {
  font-size: 13px;
  
}

  .trust-reason-card {
    display: flex;
    flex-direction: column; /* 👈 IMPORTANT */
    width: 100%;
    padding: 16px;
    gap: 12px;
  }

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

  .trust-reason-title {
    font-size: 16px;
  }

  .trust-reason-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}


/***************************About**********************/

/* ============================================================
   ABOUT PAGE — CSS additions
   Add these rules to your existing about-page.css / style.css
   (All existing .about-* classes remain unchanged)
   ============================================================ */

/* ── Hero: dual CTA button wrapper ───────────────────────────── */
.about-page-hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Primary yellow button */
.about-page-hero-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-brand-yellow, #f5c800);
    color: var(--color-brand-dark, #111);
    font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 2rem;
    line-height: 1;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.about-page-hero-btn--primary:hover {
    background: #ffd700;
}
.about-page-hero-btn--primary svg {
    flex-shrink: 0;
}

/* Secondary outlined phone button — matches homepage hero exactly */
.about-page-hero-btn--secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.65);
    color: #fff;
    font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    line-height: 1;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.about-page-hero-btn--secondary:hover {
    border-color: var(--color-brand-yellow, #f5c800);
    color: var(--color-brand-yellow, #f5c800);
}
.about-page-hero-btn--secondary svg {
    flex-shrink: 0;
}

/* Phone text stack inside secondary button */
.about-hero-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.about-hero-phone-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.55;
    font-weight: 500;
    margin-bottom: 2px;
}
.about-hero-phone-number {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* Mobile: stack buttons vertically */
@media (max-width: 480px) {
    .about-page-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-page-hero-btn--primary,
    .about-page-hero-btn--secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ── Process: SVG icon inside circle ─────────────────────────── */
/* Replaces .about-process-emoji which held broken emoji chars */
.about-process-icon {
    position: absolute;
    top: -30px;          /* floats above the numbered circle */
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    color: var(--color-brand-dark, #111);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-process-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Mission: body text spacing ──────────────────────────────── */
/* Ensures wp_kses_post() paragraph tags get proper spacing */
.about-mission-body p {
    color: #4b5563;          /* gray-600 */
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-mission-body p:last-child {
    margin-bottom: 0;
}

/* ── Google Reviews wrapper ───────────────────────────────────── */
.about-google-reviews {
    width: 100%;
}
/* Trustindex widget overrides to keep it within our layout */
.about-google-reviews .ti-widget {
    max-width: 100% !important;
}