/*
Theme Name: dmc
Theme URI: https://wordpress.org/themes/twentyfourteen/
Author: Asif Raza
Author URI: https://wordpress.org/
Description: Fully custom theme by Asif Raza the wordPress Dev
Version: 4.4
Requires at least: 3.6
Tested up to: 6.9
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, news, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready, block-patterns
Text Domain: twentyfourteen
*/

/* ============================================================
   TABLE OF CONTENTS
   1.0  Reset (WP base)
   2.0  CSS Variables
   3.0  Reset & Base
   4.0  Typography Utilities
   5.0  Buttons
   6.0  Urgency Bar
   7.0  Proof Ticker
   8.0  Top Bar
   9.0  Header / Nav
   10.0 Hero
   11.0 Hero Form Card
   12.0 Trust Bar
   13.0 Services Grid
   14.0 Industries
   15.0 Results / Stats Band
   16.0 Why Us
   17.0 Process
   18.0 Testimonials
   19.0 FAQ
   20.0 Final CTA Band
   21.0 Audit Form Section
   22.0 About / Who We Are
   23.0 Footer
   24.0 Sticky Mobile CTA Bar
   25.0 Back To Top
   26.0 Page Hero (inner pages)
   27.0 Checklist Features
   28.0 Pricing Cards
   29.0 Team Cards
   30.0 City Area Chips
   31.0 Breadcrumb
   32.0 Industry Detail Section
   33.0 Industries Widget & Audit Widget
   34.0 FAQ Page — Section, Tabs & Answer Links
   35.0 FAQ Page Hero — Breadcrumb Variant
   36.0 Back To Top — .back-top alias
   37.0 Accessibility — Reduced Motion
============================================================ */


/* ============================================================
   1.0 RESET (WordPress base)
============================================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; max-width: 100%; }
html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + 48px);
}


/* ============================================================
   2.0 CSS VARIABLES
============================================================ */
:root {
    --blue: #1E3A8A;
    --blue-dark: #152a66;
    --blue-light: #2563EB;
    --orange: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FB923C;
    --green: #059669;
    --green-light: #ECFDF5;
    --dark: #111827;
    --dark-gray: #1F2937;
    --mid-gray: #4B5563;
    --light-gray: #9CA3AF;
    --pale: #F3F4F6;
    --white: #FFFFFF;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;
    --sh-sm: 0 1px 2px rgba(0,0,0,0.05);
    --sh-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --sh-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --sh-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --sh-orange: 0 4px 14px rgba(249,115,22,0.4);
    --t: 0.3s ease;
    --tf: 0.15s ease;
}


/* ============================================================
   3.0 RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--dark-gray); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tf); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }


/* ============================================================
   4.0 TYPOGRAPHY UTILITIES
============================================================ */
.section-label { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.0625rem; color: var(--mid-gray); max-width: 600px; line-height: 1.7; }
.highlight { color: var(--orange); }
.highlight-blue { color: var(--blue-light); }
.text-center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   5.0 BUTTONS
============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-head); font-size: 1rem; font-weight: 600; padding: 0.875rem 1.75rem; border-radius: var(--r-md); min-height: 52px; transition: var(--t); white-space: nowrap; cursor: pointer; border: 2px solid transparent; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: var(--sh-orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.5); }
.btn-secondary { background: var(--white); color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--pale); transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1rem; min-height: auto; font-size: 0.8125rem; }
.btn-full { width: 100%; }


/* ============================================================
   6.0 URGENCY BAR
============================================================ */
.urgency-bar { background: var(--orange); color: var(--white); text-align: center; padding: 0.6rem 1rem; font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.01em; }
.urgency-bar strong { font-weight: 800; }
@media (min-width: 1024px) { .urgency-bar { font-size: 0.875rem; } }


/* ============================================================
   7.0 PROOF TICKER
============================================================ */
.proof-ticker { background: var(--dark-gray); padding: 0.5rem 0; overflow: hidden; }
.proof-ticker__track { display: flex; gap: 3rem; animation: ticker 28s linear infinite; white-space: nowrap; }
.proof-ticker__item { font-size: 0.8125rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
.proof-ticker__item span { color: var(--orange-light); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ============================================================
   8.0 TOP BAR
============================================================ */
.top-bar { background: var(--dark); padding: 0.625rem 0; display: none; }
@media (min-width: 1024px) { .top-bar { display: block; } }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar__left { display: flex; align-items: center; gap: 1.5rem; }
.tb-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--light-gray); }
.tb-badge svg { width: 16px; height: 16px; }
.tb-badge--hl { color: var(--orange-light); }
.top-bar__right { display: flex; align-items: center; gap: 1.25rem; }
.top-bar__phone { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 500; font-size: 0.875rem; }
.top-bar__phone:hover { color: var(--orange-light); }


/* ============================================================
   9.0 HEADER / NAV
============================================================ */
.header { position: sticky; top: 0; background: var(--white); z-index: 1000; transition: var(--t); }
.header--scrolled { box-shadow: var(--sh-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
@media (min-width: 1024px) { .header .container { height: 80px; } }
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo__icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.logo__icon svg { width: 24px; height: 24px; }
.logo__text { font-family: var(--font-head); font-weight: 800; font-size: 1.125rem; color: var(--dark); line-height: 1.2; }
.logo__text span { display: block; font-size: 0.6875rem; font-weight: 500; color: var(--mid-gray); letter-spacing: 0.02em; }
.nav { display: none; }
@media (min-width: 1024px) { .nav { display: flex; align-items: center; gap: 0.25rem; } }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 0.375rem; padding: 0.625rem 1rem; font-size: 0.9375rem; font-weight: 500; color: var(--dark-gray); border-radius: var(--r-sm); }
.nav__link:hover { color: var(--blue); background: var(--pale); }
.nav__link.active { color: var(--blue); font-weight: 600; }
.nav__link svg { width: 14px; height: 14px; transition: var(--tf); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); border-radius: var(--r-md); box-shadow: var(--sh-xl); padding: 0.75rem; min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--t); border: 1px solid rgba(0,0,0,0.06); }
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; font-size: 0.9375rem; color: var(--dark-gray); border-radius: var(--r-sm); }
.dropdown__link:hover { background: var(--pale); color: var(--blue); }
.dropdown__icon { width: 32px; height: 32px; background: var(--pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown__icon svg { width: 18px; height: 18px; color: var(--blue); }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__phone { display: none; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--dark); }
@media (min-width: 1024px) { .header__phone { display: flex; } }
.header__phone svg { width: 18px; height: 18px; color: var(--blue); }
.header__phone:hover { color: var(--blue); }
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }
.mob-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
@media (min-width: 1024px) { .mob-toggle { display: none; } }
.mob-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }
.mob-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mob-toggle.open span:nth-child(2) { opacity: 0; }
.mob-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mob-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; overflow-y: auto; padding: 1.5rem; transform: translateX(100%); transition: var(--t); }
.mob-nav.open { transform: translateX(0); }
.mob-nav__item { border-bottom: 1px solid var(--pale); }
.mob-nav__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-size: 1.0625rem; font-weight: 500; color: var(--dark); width: 100%; }
.mob-nav__link svg { width: 20px; height: 20px; transition: var(--tf); }
.mob-nav__item.open .mob-nav__link svg { transform: rotate(180deg); }
.mob-drop { display: none; padding-bottom: 1rem; }
.mob-nav__item.open .mob-drop { display: block; }
.mob-drop a { display: block; padding: 0.75rem 1rem; font-size: 1rem; color: var(--mid-gray); border-radius: var(--r-sm); }
.mob-drop a:hover { background: var(--pale); color: var(--blue); }
.mob-nav__cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.mob-nav__phone { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-size: 1.125rem; font-weight: 600; color: var(--blue); }


/* ============================================================
   10.0 HERO
============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 3rem 0 4rem;
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 5rem 0 6rem; } }
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37,99,235,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}
.hero .container { position: relative; z-index: 1;  }
.hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 420px; gap: 4rem; } }
.hero__content { text-align: center; }
@media (min-width: 1024px) { .hero__content { text-align: left; } }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; border-radius: var(--r-full); font-size: 0.875rem; font-weight: 500; color: var(--white); margin-bottom: 1.5rem; }
.hero__badge svg { width: 16px; height: 16px; color: var(--orange-light); fill: var(--orange-light); }
.hero__title { font-family: var(--font-head); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem; }
.hero__title .highlight { color: var(--orange-light); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 540px;margin: 0 auto; }


.hero__buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .hero__buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero__buttons { justify-content: flex-start; } }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero__stat { text-align: center; }
@media (min-width: 1024px) { .hero__stat { text-align: left; } }
.hero__stat-value { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); }
.hero__stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }


/* ============================================================
   11.0 HERO FORM CARD
============================================================ */
.hero__form-card { background: var(--white); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--sh-xl); }
@media (min-width: 1024px) { .hero__form-card { padding: 2.5rem; } }
.hero__form-header { text-align: center; margin-bottom: 1.5rem; }
.hero__form-title { font-family: var(--font-head); font-size: 1.375rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.hero__form-subtitle { font-size: 0.9375rem; color: var(--mid-gray); }
.hero__form { display: flex; flex-direction: column; gap: 1rem; }

/* Form Groups — shared across hero form & audit section */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--dark-gray); }
.form-group label span { color: var(--orange); }
.form-group input,
.form-group select {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    border: 2px solid var(--pale);
    border-radius: var(--r-md);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--tf);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
}
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    height: 120px;
    border: 2px solid var(--pale);
    border-radius: var(--r-md);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--tf);
    background: var(--white);
    resize: vertical;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group select option { background: white; color: var(--dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-gray); }
.form-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.form-badge { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--mid-gray); }
.form-badge svg { width: 13px; height: 13px; color: var(--green); }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--mid-gray); margin-top: 1rem; }
.form-trust svg { width: 14px; height: 14px; color: var(--green); }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success__icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9375rem; color: var(--mid-gray); }


/* ============================================================
   12.0 TRUST BAR
============================================================ */
.trust-bar { background: var(--pale); padding: 1.5rem 0; }
@media (min-width: 1024px) { .trust-bar { padding: 2rem 0; } }
.trust-bar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.trust-bar__item { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.trust-bar__icon { width: 40px; height: 40px; background: var(--white); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
.trust-bar__icon svg { width: 22px; height: 22px; color: var(--blue); }
.trust-bar__label { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--dark-gray); line-height: 1.3; }
.trust-bar__label span { display: block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; color: var(--mid-gray); }


/* ============================================================
   13.0 SERVICES GRID
============================================================ */
.services { padding: 5rem 0; background: var(--pale); }
.services__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.services__grid { display: grid; gap: 1.5rem; }
.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border: 1px solid transparent; transition: var(--t); box-shadow: var(--sh-sm); }
.svc-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.svc-card__icon { width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__icon--blue { background: rgba(30,58,138,0.1); color: var(--blue); }
.svc-card__icon--orange { background: rgba(249,115,22,0.1); color: var(--orange); }
.svc-card__icon--green { background: var(--green-light); color: var(--green); }
.svc-card__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.svc-card__desc { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 1.25rem; }
.svc-card__link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 600; color: var(--blue); }
.svc-card:hover .svc-card__link { color: var(--orange); gap: 0.75rem; }
.svc-card__link svg { width: 16px; height: 16px; }


/* ============================================================
   14.0 INDUSTRIES
============================================================ */
.industries { padding: 5rem 0; }
.industries__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.ind-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.ind-tab { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: var(--r-full); border: 2px solid var(--pale); background: var(--white); font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--mid-gray); cursor: pointer; transition: var(--t); min-height: 44px; }
.ind-tab:hover { border-color: var(--orange); color: var(--orange); }
.ind-tab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.ind-panel { display: none; }
.ind-panel.active { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .ind-panel.active { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ind-panel__content { text-align: center; }
@media (min-width: 1024px) { .ind-panel__content { text-align: left; } }
.ind-panel__content h3 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.ind-panel__content p { color: var(--mid-gray); margin-bottom: 1.5rem; line-height: 1.7; }
.ind-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.ind-feature { display: flex; align-items: center; gap: 0.75rem; text-align: left; }
.ind-feature-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.ind-feature span { font-size: 0.9375rem; color: var(--dark-gray); }
.ind-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ind-stat { background: var(--pale); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; }
.ind-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--blue); display: block; line-height: 1; }
.ind-stat .lbl { font-size: 0.8125rem; color: var(--mid-gray); margin-top: 0.5rem; display: block; }


/* ============================================================
   15.0 RESULTS / STATS BAND
============================================================ */
.results { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 5rem 0; position: relative; overflow: hidden; }
.results::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 90%, rgba(249,115,22,0.2) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(37,99,235,0.2) 0%, transparent 40%); pointer-events: none; }
.results .container { position: relative; z-index: 1; }
.results__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.results__header .section-label { color: var(--orange-light); }
.results__header .section-title { color: var(--white); }
.results__header .section-subtitle { color: rgba(255,255,255,0.8); margin: 0 auto; }
.results__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .results__grid { grid-template-columns: repeat(4, 1fr); } }
.res-stat { text-align: center; }
.res-stat__val { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1; }
.res-stat__lbl { font-size: 0.9375rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
.results__cta { text-align: center; }


/* ============================================================
   16.0 WHY US
============================================================ */
.why-us { padding: 5rem 0; }
.why-us__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .why-us__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-us__content { text-align: center; }
@media (min-width: 1024px) { .why-us__content { text-align: left; } }
.why-us__text { color: var(--mid-gray); margin-bottom: 2rem; line-height: 1.7; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature { display: flex; gap: 1rem; text-align: left; }
.why-feature__icon { width: 48px; height: 48px; background: rgba(249,115,22,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feature__icon svg { width: 24px; height: 24px; color: var(--orange); }
.why-feature__title { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.why-feature__text { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.5; }


/* ============================================================
   17.0 PROCESS
============================================================ */
.process { background: var(--pale); padding: 5rem 0; }
.process__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.process__timeline { display: grid; gap: 2rem; }
@media (min-width: 768px) { .process__timeline { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.proc-step { position: relative; text-align: center; }
@media (min-width: 768px) { .proc-step:not(:last-child)::after { content: ''; position: absolute; top: 28px; left: calc(50% + 36px); width: calc(100% - 72px); height: 2px; background: linear-gradient(90deg, var(--orange), var(--blue-light)); } }
.proc-step__num { width: 56px; height: 56px; background: var(--orange); color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.proc-step__title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.proc-step__text { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.5; }


/* ============================================================
   18.0 TESTIMONIALS
============================================================ */
.testimonials { padding: 5rem 0; }
.testimonials__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.testi-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testi-card { background: var(--white); border: 1px solid var(--pale); border-radius: var(--r-lg); padding: 2rem; position: relative; transition: var(--t); box-shadow: var(--sh-sm); }
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.testi-card::before { content: '"'; position: absolute; top: 1rem; right: 1.25rem; font-family: var(--font-head); font-size: 5rem; color: rgba(249,115,22,0.12); line-height: 1; }
.testi-stars { color: var(--orange); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--dark); }
.testi-biz { font-size: 0.8125rem; color: var(--mid-gray); }


/* ============================================================
   19.0 FAQ
============================================================ */
.faq { background: var(--pale); padding: 5rem 0; }
.faq__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { background: var(--white); border-radius: var(--r-md); margin-bottom: 0.75rem; overflow: hidden; border: 1px solid var(--pale); }
.faq-item__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.375rem 1.5rem; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--dark); cursor: pointer; width: 100%; text-align: left; transition: var(--tf); min-height: 44px; }
.faq-item__q:hover { color: var(--blue); }
.faq-item.active .faq-item__q { color: var(--blue); }
.faq-item__icon { width: 32px; height: 32px; background: var(--pale); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--t); }
.faq-item__icon svg { width: 16px; height: 16px; color: var(--blue); }
.faq-item.active .faq-item__icon { background: var(--blue); transform: rotate(180deg); }
.faq-item.active .faq-item__icon svg { color: var(--white); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-item__a { max-height: 500px; }
.faq-item__a-inner { padding: 0 1.5rem 1.5rem; font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.7; }


/* ============================================================
   20.0 FINAL CTA BAND
============================================================ */
.final-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 5rem 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 70%, rgba(249,115,22,0.2) 0%, transparent 50%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta__title { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.final-cta__sub { font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.final-cta__btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .final-cta__btns { flex-direction: row; } }


/* ============================================================
   21.0 AUDIT FORM SECTION
============================================================ */
.audit-section { padding: 5rem 0; background: var(--white); }
.audit-section__inner { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-xl); padding: 3rem 2rem; border: 1px solid var(--pale); }
@media (min-width: 768px) { .audit-section__inner { padding: 3rem; } }
.audit-section__header { text-align: center; margin-bottom: 2rem; }
.audit-section__title { font-size: 1.75rem; }
.audit-section__desc { color: var(--mid-gray); font-size: 0.9375rem; }
.audit-section__submit { margin-top: 0.5rem; }
.audit-highlight { background: linear-gradient(90deg, rgba(249,115,22,0.12), rgba(30,58,138,0.08)); border: 1px solid rgba(249,115,22,0.3); border-radius: var(--r-md); padding: 0.75rem 1.25rem; font-size: 0.875rem; color: var(--dark-gray); margin-bottom: 1rem; text-align: center; }
.audit-highlight strong { color: var(--orange); }


/* ============================================================
   22.0 ABOUT / WHO WE ARE
============================================================ */
.about { padding: 5rem 0; }
.about__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about__content { text-align: center; }
@media (min-width: 1024px) { .about__content { text-align: left; } }
.about__text { color: var(--mid-gray); margin-bottom: 1.5rem; line-height: 1.7; }
.about__checklist { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.about__check { display: flex; align-items: flex-start; gap: 0.75rem; text-align: left; }
.about__check-icon { width: 24px; height: 24px; background: var(--green-light); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
.about__check-icon svg { width: 14px; height: 14px; color: var(--green); }
.about__check-text { font-size: 0.9375rem; color: var(--dark-gray); }
.about__visual { position: relative; background: linear-gradient(135deg, var(--pale) 0%, var(--white) 100%); border-radius: var(--r-lg); overflow: visible; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 2px solid var(--pale); }
.about__visual-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem; width: 100%; }
.about__stat-card { background: var(--white); border-radius: var(--r-md); padding: 1.25rem; text-align: center; box-shadow: var(--sh-md); }
.about__stat-card .num { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--blue); display: block; line-height: 1; }
.about__stat-card .lbl { font-size: 0.75rem; color: var(--mid-gray); margin-top: 0.375rem; display: block; }
.about__float-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--orange); color: var(--white); padding: 1rem 1.25rem; border-radius: var(--r-md); box-shadow: var(--sh-lg); text-align: center; }
@media (min-width: 1024px) { .about__float-badge { bottom: 2rem; right: -2rem; } }
.about__float-badge .num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; line-height: 1; display: block; }
.about__float-badge .lbl { font-size: 0.75rem; opacity: 0.9; margin-top: 0.25rem; display: block; }


/* ============================================================
   23.0 FOOTER
============================================================ */
.footer { background: var(--dark); padding: 4rem 0 2rem; color: var(--light-gray); }
.footer__grid { display: grid; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2rem; } }
.footer__logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer__logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue-light), var(--orange)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--white); }
.footer__logo-icon svg { width: 24px; height: 24px; }
.footer__logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.125rem; color: var(--white); line-height: 1.2; }
.footer__logo-text span { display: block; font-size: 0.6875rem; font-weight: 500; color: var(--light-gray); }
.footer__desc { font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; transition: var(--tf); }
.footer__social-link:hover { background: var(--orange); }
.footer__social-link svg { width: 18px; height: 18px; }
.footer__col-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-size: 0.9375rem; transition: var(--tf); color: var(--light-gray); }
.footer__link:hover { color: var(--orange-light); }
.footer__contact { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer__contact-icon { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 0.125rem; }
.footer__contact-text { font-size: 0.9375rem; line-height: 1.5; }
.footer__contact-text a:hover { color: var(--orange-light); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__copy { font-size: 0.875rem; }
.footer__legal { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 768px) { .footer__legal { justify-content: flex-start; } }
.footer__legal a { font-size: 0.875rem; transition: var(--tf); color: var(--light-gray); }
.footer__legal a:hover { color: var(--orange-light); }


/* ============================================================
   24.0 STICKY MOBILE CTA BAR
============================================================ */
.mob-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; background: var(--dark); padding: 0.75rem 1rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); gap: 0.75rem; align-items: center; }
@media (max-width: 1023px) { .mob-cta-bar { display: flex; } }
.mob-cta-bar a { flex: 1; text-align: center; font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; border-radius: var(--r-md); padding: 0.875rem 0; display: flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 48px; }
.mob-cta-bar__call { background: var(--green); color: var(--white); }
.mob-cta-bar__audit { background: var(--orange); color: var(--white); box-shadow: var(--sh-orange); }
.mob-cta-bar svg { width: 17px; height: 17px; flex-shrink: 0; }
@media (max-width: 1023px) { body { padding-bottom: 76px; } }


/* ============================================================
   25.0 BACK TO TOP
============================================================ */
.back-to-top { position: fixed; bottom: 100px; right: 1.5rem; width: 44px; height: 44px; background: var(--blue); color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; z-index: 1500; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--t); box-shadow: var(--sh-md); cursor: pointer; border: none; }
@media (min-width: 1024px) { .back-to-top { bottom: 2rem; } }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }


/* ============================================================
   26.0 PAGE HERO (inner pages — no form card)
============================================================ */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 4rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(37,99,235,0.2) 0%, transparent 50%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; max-width: 800px; }
.page-hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; border-radius: var(--r-full); font-size: 0.875rem; font-weight: 500; color: var(--white); margin-bottom: 1.5rem; }
.page-hero__title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem; }
.page-hero__title .highlight { color: var(--orange-light); }
.page-hero__subtitle { font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0 auto 2rem; max-width: 600px; }
.page-hero__btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .page-hero__btns { flex-direction: row; } }
.page-hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2rem; }
.page-hero__stat-val { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.page-hero__stat-lbl { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }


/* ============================================================
   27.0 CHECKLIST FEATURES
============================================================ */
.check-list { display: flex; flex-direction: column; gap: 0.875rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.check-icon { width: 22px; height: 22px; background: var(--green-light); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.check-icon svg { width: 12px; height: 12px; color: var(--green); }
.check-item span { font-size: 0.9375rem; color: var(--dark-gray); line-height: 1.5; }


/* ============================================================
   28.0 PRICING CARDS
============================================================ */
.pricing { padding: 5rem 0; background: var(--pale); }
.pricing__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.pricing__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border: 2px solid var(--pale); transition: var(--t); }
.price-card:hover { border-color: var(--orange); box-shadow: var(--sh-lg); }
.price-card--featured { border-color: var(--blue); position: relative; }
.price-card--featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: var(--r-full); white-space: nowrap; }
.price-card__name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.price-card__price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 0.25rem; }
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--mid-gray); }
.price-card__desc { font-size: 0.875rem; color: var(--mid-gray); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--pale); }
.price-card__features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.price-feature { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--dark-gray); }
.price-feature svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }


/* ============================================================
   29.0 TEAM CARDS
============================================================ */
.team-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; text-align: center; border: 1px solid var(--pale); transition: var(--t); box-shadow: var(--sh-sm); }
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--white); margin: 0 auto 1rem; }
.team-name { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; color: var(--orange); font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.6; }


/* ============================================================
   30.0 CITY AREA CHIPS
============================================================ */
.city-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.city-chip { display: flex; align-items: center; gap: 0.375rem; background: var(--pale); border-radius: var(--r-full); padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--dark-gray); border: 1px solid transparent; transition: var(--t); }
.city-chip:hover { border-color: var(--blue); color: var(--blue); background: rgba(30,58,138,0.05); }
.city-chip svg { width: 14px; height: 14px; color: var(--orange); }


/* ============================================================
   31.0 BREADCRUMB
============================================================ */
.breadcrumb { padding: 1rem 0; background: var(--pale); border-bottom: 1px solid rgba(0,0,0,0.05); }
.breadcrumb__list { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb__item { font-size: 0.875rem; color: var(--mid-gray); }
.breadcrumb__item a { color: var(--blue); }
.breadcrumb__item a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--light-gray); }


/* ============================================================
   32.0 INDUSTRY DETAIL SECTION
============================================================ */
.ind-detail { padding: 5rem 0; background: var(--white); }
.ind-detail-grid { display: grid; gap: 3rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ind-detail-grid { grid-template-columns: 1fr 400px; } }
.ind-detail__challenges-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.ind-detail__body { color: var(--mid-gray); line-height: 1.8; margin-bottom: 2rem; }
.ind-detail__services-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.ind-detail__services-list { display: flex; flex-direction: column; gap: 1rem; }
.ind-service-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--pale); border-radius: var(--r-md); border: 1px solid transparent; transition: var(--t); text-decoration: none; }
.ind-service-card:hover { border-color: var(--orange); background: var(--white); }
.ind-service-card__icon { width: 44px; height: 44px; background: var(--white); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
.ind-service-card__body { flex: 1; }
.ind-service-card__title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--dark); }
.ind-service-card__desc { font-size: 0.875rem; color: var(--mid-gray); }
.ind-service-card__arrow { margin-left: auto; flex-shrink: 0; }


/* ============================================================
   33.0 INDUSTRIES WIDGET & AUDIT WIDGET
============================================================ */
.industries-widget { background: var(--pale); border-radius: var(--r-lg); padding: 2rem; }
.industries-widget__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.industries-widget__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.industries-widget__link { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem; background: var(--white); border-radius: var(--r-md); font-size: 0.9375rem; font-weight: 500; color: var(--dark-gray); border: 1px solid var(--pale); transition: var(--t); text-decoration: none; }
.industries-widget__link:hover { border-color: var(--orange); }
.audit-widget { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: var(--r-lg); padding: 2rem; margin-top: 1.5rem; text-align: center; }
.audit-widget__title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
.audit-widget__desc { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin-bottom: 1.5rem; }


/* ============================================================
   34.0 FAQ PAGE — Section, Tabs & Answer Links
   (Used on page-faqs.php — distinct from .faq used on singles)
============================================================ */
.faq-section { padding: 5rem 0; background: var(--pale); }

.faq-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.faq-tab { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: var(--r-full); border: 2px solid var(--pale); background: var(--white); font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--mid-gray); cursor: pointer; transition: var(--t); }
.faq-tab:hover { border-color: var(--orange); color: var(--orange); }
.faq-tab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Links inside FAQ answers */
.faq-item__a-inner a { color: var(--blue-light); font-weight: 500; }
.faq-item__a-inner a:hover { text-decoration: underline; }
.still-cta{padding:5rem 0;text-align:center}.still-cta h2{font-family:var(--font-head);font-size:clamp(1.5rem,3vw,2rem);font-weight:800;color:var(--dark);margin-bottom:.75rem}.still-cta p{font-size:1.0625rem;color:var(--mid-gray);margin-bottom:2rem}.still-cta__btns{display:flex;flex-direction:column;gap:1rem;align-items:center;justify-content:center}@media(min-width:480px){.still-cta__btns{flex-direction:row}}

/* ============================================================
   35.0 FAQ PAGE HERO — Breadcrumb variant
   (Hero on page-faqs.php has inline breadcrumb instead of badge)
============================================================ */
.hero__breadcrumb { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.hero__breadcrumb a { color: rgba(255,255,255,0.8); }
.hero__breadcrumb a:hover { color: var(--orange-light); }


/* ============================================================
   36.0 BACK TO TOP — .back-top alias
   (faqs.html uses .back-top; other pages use .back-to-top)
============================================================ */
.back-top { position: fixed; bottom: 90px; right: 1.25rem; z-index: 1500; width: 44px; height: 44px; border-radius: var(--r-full); background: var(--blue); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-lg); cursor: pointer; opacity: 0; visibility: hidden; transition: var(--t); }
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--orange); transform: translateY(-2px); }
.back-top svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .back-top { bottom: 2rem; right: 2rem; } }


/* ============================================================
   37.0 ACCESSIBILITY — Reduced Motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    /* ============================================================
   CONTACT PAGE
============================================================ */

/* ── Contact Cards ── */
.contact-cards { padding: 4rem 0; background: var(--pale); }
.contact-cards__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .contact-cards__grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; text-align: center; border: 1px solid var(--pale); box-shadow: var(--sh-sm); transition: var(--t); }
.contact-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.contact-card__icon { width: 56px; height: 56px; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card__icon--blue   { background: rgba(30,58,138,0.1);  color: var(--blue); }
.contact-card__icon--orange { background: rgba(249,115,22,0.1); color: var(--orange); }
.contact-card__icon--green  { background: var(--green-light);   color: var(--green); }

.contact-card__title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.contact-card__text { font-size: 1rem; color: var(--dark-gray); margin-bottom: 0.375rem; }
.contact-card__text a { color: var(--blue); font-weight: 600; }
.contact-card__text a:hover { color: var(--orange); }
.contact-card__sub { font-size: 0.8125rem; color: var(--light-gray); }


/* ── Contact Section Grid ── */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 420px; } }

.contact-form-wrap h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.contact-form-wrap > p { font-size: 1rem; color: var(--mid-gray); margin-bottom: 2rem; }

/* Two-column form rows */
.contact-form__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }


/* ── Map ── */
.contact-map__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.map-container { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1.5rem; box-shadow: var(--sh-md); }
.map-container iframe { width: 100%; height: 260px; border: 0; display: block; }


/* ── Hours List ── */
.hours-list { background: var(--pale); border-radius: var(--r-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.hours-list h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.hours-list__item { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-list__item:last-child { border-bottom: none; }
.hours-list__day { font-size: 0.9375rem; color: var(--dark-gray); font-weight: 500; }
.hours-list__time { font-size: 0.9375rem; color: var(--dark-gray); font-weight: 600; }
.hours-list__time--closed { color: var(--light-gray); font-weight: 400; }


/* ── Serving Note ── */
.serving-note h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.serving-note .city-chip { cursor: default; }


/* ── Trust Strip ── */
.trust-strip { background: var(--pale); padding: 2.5rem 0; }
.trust-strip__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(3, 1fr); } }
.trust-strip__item { display: flex; align-items: center; justify-content: center; gap: 0.875rem; }
.trust-strip__icon { width: 44px; height: 44px; background: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
.trust-strip__icon svg { width: 20px; height: 20px; color: var(--blue); }
.trust-strip__text { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--dark-gray); }


/* ── Final CTA highlight variant ── */
.highlight-light { color: var(--orange-light); }

}
/* === CONTACT PAGE SPECIFIC === */
.contact-cards{padding:5rem 0}.contact-cards__grid{display:grid;gap:1.5rem}@media(min-width:768px){.contact-cards__grid{grid-template-columns:repeat(3,1fr)}}.contact-card{background:var(--white);border:1px solid var(--pale);border-radius:var(--r-lg);padding:2rem;text-align:center;transition:var(--t);box-shadow:var(--sh-sm)}.contact-card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg);border-color:var(--orange)}.contact-card__icon{width:64px;height:64px;border-radius:var(--r-full);display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem}.contact-card__icon svg{width:28px;height:28px}.contact-card__icon--blue{background:rgba(30,58,138,.1);color:var(--blue)}.contact-card__icon--orange{background:rgba(249,115,22,.1);color:var(--orange)}.contact-card__icon--green{background:var(--green-light);color:var(--green)}.contact-card__title{font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--dark);margin-bottom:.5rem}.contact-card__text{font-size:.9375rem;color:var(--mid-gray);line-height:1.6}.contact-card__text a{color:var(--blue);font-weight:600}.contact-card__text a:hover{color:var(--orange)}.contact-card__sub{font-size:.8125rem;color:var(--light-gray);margin-top:.5rem}
.contact-section{background:var(--pale);padding:5rem 0}.contact-grid{display:grid;gap:3rem}@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1fr}}.contact-form-wrap{background:var(--white);border-radius:var(--r-xl);padding:2.5rem;box-shadow:var(--sh-md)}.contact-form-wrap h2{font-family:var(--font-head);font-size:1.5rem;font-weight:800;color:var(--dark);margin-bottom:.5rem}.contact-form-wrap>p{font-size:.9375rem;color:var(--mid-gray);margin-bottom:2rem}.contact-form{display:flex;flex-direction:column;gap:1.25rem}.contact-form__row{display:grid;gap:1.25rem}@media(min-width:640px){.contact-form__row{grid-template-columns:1fr 1fr}}
.map-container{border-radius:var(--r-lg);overflow:hidden;margin-bottom:2rem;box-shadow:var(--sh-md)}.map-container iframe{width:100%;height:280px;border:0;display:block}
.hours-list{margin-bottom:2rem}.hours-list h4{font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.75rem}.hours-list__item{display:flex;justify-content:space-between;padding:.625rem 0;border-bottom:1px solid var(--pale);font-size:.9375rem}.hours-list__item:last-child{border-bottom:none}.hours-list__day{color:var(--dark-gray);font-weight:500}.hours-list__time{color:var(--mid-gray)}.hours-list__time--closed{color:var(--orange);font-weight:600}
.serving-note{background:var(--pale);border-radius:var(--r-md);padding:1.25rem}.serving-note h4{font-family:var(--font-head);font-size:.9375rem;font-weight:700;color:var(--dark);margin-bottom:.75rem}.city-chips{display:flex;flex-wrap:wrap;gap:.5rem}.city-chip{display:inline-flex;align-items:center;background:var(--white);border:1px solid rgba(30,58,138,.15);border-radius:var(--r-full);padding:.375rem .875rem;font-size:.8125rem;font-weight:500;color:var(--blue)}
.trust-strip{padding:3rem 0}.trust-strip__grid{display:grid;gap:1.5rem}@media(min-width:768px){.trust-strip__grid{grid-template-columns:repeat(3,1fr)}}.trust-strip__item{display:flex;align-items:center;gap:.75rem;justify-content:center}.trust-strip__icon{width:40px;height:40px;background:var(--green-light);border-radius:var(--r-full);display:flex;align-items:center;justify-content:center;flex-shrink:0}.trust-strip__icon svg{width:20px;height:20px;color:var(--green)}.trust-strip__text{font-family:var(--font-head);font-size:.9375rem;font-weight:600;color:var(--dark-gray)}
.final-cta{background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);padding:5rem 0;position:relative;overflow:hidden}.final-cta::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 30% 70%,rgba(249,115,22,.2) 0%,transparent 50%);pointer-events:none}.final-cta .container{position:relative;z-index:1;text-align:center}.final-cta__title{font-family:var(--font-head);font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;color:var(--white);margin-bottom:1rem}.final-cta__sub{font-size:1.125rem;color:rgba(255,255,255,.85);max-width:600px;margin:0 auto 2.5rem;line-height:1.7}.final-cta__btns{display:flex;flex-direction:column;gap:1rem;justify-content:center;align-items:center}@media(min-width:640px){.final-cta__btns{flex-direction:row}}
/* ============================================================
   BLOG — Archive & Single Post
============================================================ */

/* ── Reading Progress Bar ── */
.reading-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--pale); z-index: 9999; }
.reading-progress__bar { height: 100%; background: linear-gradient(90deg, var(--orange), var(--blue-light)); width: 0%; transition: width 0.1s linear; }


/* ── Blog Hero ── */
.blog-hero { position: relative; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 3.5rem 0 4rem; overflow: hidden; }
@media (min-width: 1024px) { .blog-hero { padding: 4.5rem 0 5rem; } }
.blog-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(37,99,235,0.2) 0%, transparent 50%); pointer-events: none; }
.blog-hero .container { position: relative; z-index: 1; text-align: center; }
.blog-hero__title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1rem; }
.blog-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

/* Search */
.blog-search { max-width: 600px; margin: 0 auto; position: relative; }
.blog-search input { width: 100%; height: 56px; padding: 0 3.5rem 0 1.25rem; border: 2px solid rgba(255,255,255,0.2); border-radius: var(--r-full); background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: var(--white); font-size: 1rem; transition: var(--tf); }
.blog-search input::placeholder { color: rgba(255,255,255,0.5); }
.blog-search input:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.15); }
.blog-search__icon { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); pointer-events: none; }
.blog-search__icon svg { width: 20px; height: 20px; }


/* ── Category Filter Bar ── */
.cat-bar { background: var(--white); padding: 1.25rem 0; border-bottom: 1px solid var(--pale); position: sticky; top: 70px; z-index: 50; }
@media (min-width: 1024px) { .cat-bar { top: 80px; } }
.cat-bar__inner { display: flex; gap: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
.cat-bar__inner::-webkit-scrollbar { display: none; }
.cat-tag { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1.125rem; border-radius: var(--r-full); border: 2px solid var(--pale); background: var(--white); font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--mid-gray); cursor: pointer; transition: var(--t); text-decoration: none; }
.cat-tag:hover { border-color: var(--orange); color: var(--orange); }
.cat-tag.active { background: var(--blue); border-color: var(--blue); color: var(--white); }


/* ── Featured Post ── */
.featured { padding: 4rem 0 2rem; }
.featured__card { display: grid; gap: 2.5rem; background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--pale); }
@media (min-width: 1024px) { .featured__card { grid-template-columns: 480px 1fr; } }
.featured__img { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); min-height: 280px; position: relative; overflow: hidden; }
.featured__img-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.featured__img-icon { font-size: 4rem; }
.featured__img-label { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.featured__img-photo { width: 100%; height: 100%; object-fit: cover; }
.featured__body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured__badge { display: inline-flex; align-items: center; gap: 0.375rem; background: rgba(249,115,22,0.1); color: var(--orange); border-radius: var(--r-full); padding: 0.375rem 0.875rem; font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; margin-bottom: 1rem; }
.featured__badge svg { width: 14px; height: 14px; fill: var(--orange); }
.featured__title { font-family: var(--font-head); font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 0.875rem; }
.featured__title a:hover { color: var(--blue); }
.featured__excerpt { font-size: 1rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 1.25rem; }
.featured__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1.5rem; }
.featured__meta-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--mid-gray); }
.featured__meta-item svg { width: 15px; height: 15px; }
.featured__readmore a { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--blue); }
.featured__readmore a:hover { color: var(--orange); gap: 0.75rem; }
.featured__readmore svg { width: 16px; height: 16px; }


/* ── Blog Grid ── */
.blog-grid-section { padding: 3rem 0 5rem; }
.blog-grid-section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 0.5rem; }
.blog-grid-section__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.blog-grid-section__count { font-size: 0.875rem; color: var(--light-gray); }
.blog-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Blog Card */
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--pale); transition: var(--t); box-shadow: var(--sh-sm); }
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.blog-card__thumb { display: block; height: 200px; position: relative; overflow: hidden; text-decoration: none; }
.blog-card__thumb-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__thumb-photo { transform: scale(1.05); }
.blog-card__thumb-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card__cat { position: absolute; top: 1rem; left: 1rem; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); color: var(--white); font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: var(--r-full); }
.blog-card__body { padding: 1.5rem; }
.blog-card__title { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 0.625rem; }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 1rem; }
.blog-card__footer { display: flex; align-items: center; gap: 1rem; }
.blog-card__date, .blog-card__read { display: flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; color: var(--light-gray); }
.blog-card__date svg, .blog-card__read svg { width: 13px; height: 13px; }

/* Thumb colour variants */
.thumb--orange { background: linear-gradient(135deg, #EA580C, #FB923C); }
.thumb--green  { background: linear-gradient(135deg, #059669, #10B981); }
.thumb--blue   { background: linear-gradient(135deg, #1E3A8A, #2563EB); }
.thumb--indigo { background: linear-gradient(135deg, #4338CA, #6366F1); }
.thumb--rose   { background: linear-gradient(135deg, #E11D48, #FB7185); }
.thumb--teal   { background: linear-gradient(135deg, #0D9488, #2DD4BF); }

.blog-no-posts { text-align: center; color: var(--mid-gray); padding: 3rem 0; font-size: 1rem; }


/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r-md); border: 2px solid var(--pale); font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--mid-gray); transition: var(--t); text-decoration: none; }
.pagination .page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination .page-numbers.prev,
.pagination .page-numbers.next { width: auto; padding: 0 1rem; gap: 0.25rem; }
.pagination .page-numbers svg { width: 16px; height: 16px; }
/* WP wraps in <ul> when type=list */
.pagination ul { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0;  }
.pagination ul li { display: flex; }


/* ── Newsletter ── */
.newsletter { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 4rem 0; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 70%, rgba(249,115,22,0.2) 0%, transparent 50%); pointer-events: none; }
.newsletter .container { position: relative; z-index: 1; text-align: center; }
.newsletter__title { font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.newsletter__sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; line-height: 1.6; }
.newsletter__form { display: flex; max-width: 480px; margin: 0 auto; gap: 0.75rem; flex-direction: column; }
@media (min-width: 640px) { .newsletter__form { flex-direction: row; } }
.newsletter__form input { flex: 1; height: 52px; padding: 0 1rem; border: 2px solid rgba(255,255,255,0.2); border-radius: var(--r-md); background: rgba(255,255,255,0.1); color: var(--white); font-size: 1rem; }
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus { outline: none; border-color: var(--orange); }
.newsletter__trust { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }
.newsletter__trust svg { width: 14px; height: 14px; }


/* ============================================================
   SINGLE POST
============================================================ */

/* ── Article Hero ── */
.article-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 3rem 0 3.5rem; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 50%); pointer-events: none; }
.article-hero .container { position: relative; z-index: 1; }
.article-hero__breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; flex-wrap: wrap; }
.article-hero__breadcrumb a { color: rgba(255,255,255,0.8); }
.article-hero__breadcrumb a:hover { color: var(--white); }
.article-hero__breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }
.article-hero__cat { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.875rem; border-radius: var(--r-full); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.article-hero__title { font-family: var(--font-head); font-size: clamp(1.625rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem; max-width: 800px; }
.article-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.article-hero__author { display: flex; align-items: center; gap: 0.75rem; }
.article-hero__avatar { width: 44px; height: 44px; background: rgba(255,255,255,0.2); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.article-hero__author-name { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--white); }
.article-hero__author-info { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.article-hero__meta-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.article-hero__meta-item svg { width: 15px; height: 15px; }


/* ── Article Layout ── */
.article-layout { display: grid; gap: 3rem; padding: 4rem 0; align-items: start; }
@media (min-width: 1024px) { .article-layout { grid-template-columns: 1fr 320px; gap: 4rem; } }


/* ── Article Content ── */
.article-featured-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; }
.article-featured-img img { width: 100%; height: auto; display: block; }
.article-content h2 { font-family: var(--font-head); font-size: 1.625rem; font-weight: 800; color: var(--dark); margin: 2.5rem 0 1rem; line-height: 1.25; padding-bottom: 0.75rem; border-bottom: 2px solid var(--pale); }
.article-content h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 2rem 0 0.75rem; line-height: 1.3; }
.article-content p { font-size: 1.0625rem; color: var(--dark-gray); line-height: 1.8; margin-bottom: 1.25rem; }
.article-content strong { font-weight: 600; color: var(--dark); }
.article-content a { color: var(--blue); font-weight: 500; border-bottom: 1px solid transparent; }
.article-content a:hover { border-bottom-color: var(--blue); }
.article-content ul { list-style: none; margin: 1rem 0 1.5rem; }
.article-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.625rem; font-size: 1rem; color: var(--dark-gray); line-height: 1.7; }
.article-content ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.article-content ol { list-style: decimal; margin: 1rem 0 1.5rem 1.5rem; }
.article-content ol li { margin-bottom: 0.625rem; font-size: 1rem; color: var(--dark-gray); line-height: 1.7; }
.article-content blockquote { border-left: 4px solid var(--orange); background: rgba(249,115,22,0.05); padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 1.0625rem; font-style: italic; color: var(--mid-gray); line-height: 1.7; }
.article-content img { border-radius: var(--r-md); margin: 1.5rem 0; }

/* Callout Box */
.callout { background: linear-gradient(135deg, rgba(30,58,138,0.05), rgba(37,99,235,0.08)); border: 1px solid rgba(30,58,138,0.15); border-radius: var(--r-lg); padding: 1.5rem; margin: 2rem 0; }
.callout__header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.callout__icon { font-size: 1.25rem; }
.callout__title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--blue); }
.callout__body { font-size: 0.9375rem; color: var(--mid-gray); line-height: 1.7; }

/* Stat Cards Inline */
.stat-inline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
@media (min-width: 640px) { .stat-inline { grid-template-columns: repeat(3, 1fr); } }
.stat-inline__card { background: var(--pale); border-radius: var(--r-md); padding: 1.25rem; text-align: center; }
.stat-inline__val { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--blue); line-height: 1; display: block; }
.stat-inline__lbl { font-size: 0.75rem; color: var(--mid-gray); margin-top: 0.375rem; display: block; }

/* CTA Banner in Article */
.article-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: var(--r-xl); padding: 2.5rem 2rem; text-align: center; margin: 2.5rem 0; position: relative; overflow: hidden; }
.article-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 70%, rgba(249,115,22,0.2) 0%, transparent 50%); pointer-events: none; }
.article-cta * { position: relative; z-index: 1; }
.article-cta__title { font-family: var(--font-head); font-size: 1.375rem; font-weight: 800; color: var(--white); margin-bottom: 0.625rem; }
.article-cta__sub { font-size: 0.9375rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.6; }

/* Share Bar */
.share-bar { display: flex; align-items: center; gap: 0.75rem; padding: 1.5rem 0; border-top: 2px solid var(--pale); margin-top: 2rem; flex-wrap: wrap; }
.share-bar__label { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.share-btn { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; transition: var(--tf); border: 1px solid var(--pale); background: none; cursor: pointer; }
.share-btn svg { width: 18px; height: 18px; }
.share-btn--fb { color: #1877F2; } .share-btn--fb:hover { background: #1877F2; color: var(--white); border-color: #1877F2; }
.share-btn--tw { color: #1DA1F2; } .share-btn--tw:hover { background: #1DA1F2; color: var(--white); border-color: #1DA1F2; }
.share-btn--li { color: #0A66C2; } .share-btn--li:hover { background: #0A66C2; color: var(--white); border-color: #0A66C2; }
.share-btn--link { color: var(--mid-gray); } .share-btn--link:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* Author Box */
.author-box { display: flex; gap: 1.25rem; background: var(--pale); border-radius: var(--r-lg); padding: 2rem; margin: 2rem 0; align-items: flex-start; }
@media (max-width: 639px) { .author-box { flex-direction: column; align-items: center; text-align: center; } }
.author-box__avatar { width: 72px; height: 72px; border-radius: var(--r-full); flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.author-box__name { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.author-box__role { font-size: 0.8125rem; color: var(--orange); font-weight: 600; margin-bottom: 0.5rem; }
.author-box__bio { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; }

/* Post Navigation */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem 0; border-top: 2px solid var(--pale); }
@media (max-width: 639px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav__item,.nav-links a { padding: 1.25rem; border: 1px solid var(--pale); border-radius: var(--r-lg); transition: var(--t); }
.post-nav__item:hover { border-color: var(--orange); box-shadow: var(--sh-md); }
.post-nav__label { font-size: 0.75rem; color: var(--light-gray); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 0.375rem; display: flex; align-items: center; gap: 0.375rem; }
.post-nav__label svg { width: 14px; height: 14px; }
.post-nav__title { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.post-nav__title a:hover { color: var(--blue); }
.post-nav__item--next { text-align: right; }
.post-nav__item--next .post-nav__label { justify-content: flex-end; }


/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .sidebar { position: sticky; top: 100px; align-self: start; } }

/* TOC */
.toc { background: var(--pale); border-radius: var(--r-lg); padding: 1.5rem; }
.toc__title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.toc__title svg { width: 18px; height: 18px; color: var(--blue); }
.toc__list { display: flex; flex-direction: column; }
.toc__link { display: block; padding: 0.625rem 0.75rem; font-size: 0.875rem; color: var(--mid-gray); border-left: 3px solid transparent; border-radius: 0 var(--r-sm) var(--r-sm) 0; transition: var(--tf); text-decoration: none; }
.toc__link:hover { color: var(--blue); background: var(--white); border-left-color: var(--blue); }
.toc__link.active { color: var(--blue); font-weight: 600; border-left-color: var(--orange); background: var(--white); }

/* Sidebar CTA */
.sidebar-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: var(--r-lg); padding: 2rem; text-align: center; position: relative; overflow: hidden; }
.sidebar-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 100%, rgba(249,115,22,0.25) 0%, transparent 60%); pointer-events: none; }
.sidebar-cta * { position: relative; z-index: 1; }
.sidebar-cta__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.sidebar-cta__title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.sidebar-cta__text { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 1.25rem; }

/* Related Posts */
.related { background: var(--pale); border-radius: var(--r-lg); padding: 1.5rem; }
.related__title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.related__item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); align-items: center; }
.related__item:last-child { border-bottom: none; padding-bottom: 0; }
.related__item:first-child { padding-top: 0; }
.related__thumb { width: 64px; height: 64px; border-radius: var(--r-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.related__info { flex: 1; min-width: 0; }
.related__info-title { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 0.25rem; }
.related__info-title a:hover { color: var(--blue); }
.related__info-meta { font-size: 0.6875rem; color: var(--light-gray); }
/* ============================================================
   ABOUT US PAGE
============================================================ */

/* ── Our Story ── */
.about-story { padding: 5rem 0; background: var(--white); }
.about-story__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-story__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-story__text { color: var(--mid-gray); line-height: 1.8; margin-bottom: 1.5rem; }
.about-story__text:last-child { margin-bottom: 0; }

/* Story stat cards grid */
.about-story__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat-card { background: var(--pale); border-radius: var(--r-lg); padding: 2rem; text-align: center; }
.about-stat-card__val { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; margin-bottom: 0.5rem; }
.about-stat-card__lbl { font-size: 0.875rem; color: var(--mid-gray); display: block; }


/* ── Mission & Values ── */
.about-values { padding: 5rem 0; background: var(--pale); }
.about-values__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.about-values__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .about-values__grid { grid-template-columns: repeat(3, 1fr); } }

.value-card { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; border-left: 4px solid var(--orange); box-shadow: var(--sh-sm); }
.value-card__icon { width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.value-card__icon svg { width: 28px; height: 28px; }
.value-card__title { font-family: var(--font-head); font-size: 1.375rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.value-card__text { color: var(--mid-gray); line-height: 1.7; }


/* ── Team ── */
.about-team { padding: 5rem 0; background: var(--white); }
.about-team__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }


/* ── Why Choose Us ── */
.about-why { background: var(--pale); }

/* Why stats right column */
.about-why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.about-why__stat { background: var(--white); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; box-shadow: var(--sh-sm); }
.about-why__stat--wide { grid-column: span 2; padding: 2rem; }
.about-why__stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; display: block; line-height: 1; margin-bottom: 0.375rem; }
.about-why__stat--wide .about-why__stat-val { font-size: 2.5rem; }
.about-why__stat-lbl { font-size: 0.8125rem; display: block; }
/* === 404 PAGE SPECIFIC === */
.error-page{min-height:calc(100vh - 300px);display:flex;align-items:center;justify-content:center;position:relative;padding:4rem 0;overflow:hidden;background:var(--pale)}
.error-page__bg{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-family:var(--font-head);font-size:clamp(12rem,30vw,22rem);font-weight:800;color:var(--blue);opacity:.06;line-height:1;user-select:none;pointer-events:none}.error-page__content{position:relative;z-index:1;text-align:center;max-width:640px;margin:0 auto}
.error-page__illustration{margin:0 auto 2rem;width:180px;height:180px}
.error-page__title{font-family:var(--font-head);font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;color:var(--dark);margin-bottom:1rem}.error-page__sub{font-size:1.0625rem;color:var(--mid-gray);line-height:1.7;margin-bottom:2.5rem;max-width:500px;margin-left:auto;margin-right:auto}
.error-page__label{font-family:var(--font-head);font-size:.9375rem;font-weight:700;color:var(--dark-gray);margin-bottom:1.5rem}
.quick-links{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-bottom:2.5rem;max-width:480px;margin-left:auto;margin-right:auto}@media(min-width:640px){.quick-links{grid-template-columns:repeat(4,1fr)}}.quick-link{display:flex;flex-direction:column;align-items:center;gap:.75rem;padding:1.25rem 1rem;background:var(--white);border-radius:var(--r-lg);border:1px solid var(--pale);transition:var(--t);box-shadow:var(--sh-sm)}.quick-link:hover{transform:translateY(-4px);box-shadow:var(--sh-lg);border-color:var(--orange)}.quick-link__icon{width:48px;height:48px;border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;background:rgba(30,58,138,.08)}.quick-link__icon svg{width:24px;height:24px;color:var(--blue)}.quick-link__label{font-family:var(--font-head);font-size:.875rem;font-weight:600;color:var(--dark)}
.error-page__btns{display:flex;flex-direction:column;gap:1rem;align-items:center}@media(min-width:480px){.error-page__btns{flex-direction:row;justify-content:center}} 
/* TOC Sidebar */
.legal-toc{background:var(--pale);border-radius:var(--r-lg);padding:1.5rem;position:sticky;top:100px}.legal-toc__title{font-family:var(--font-head);font-size:.9375rem;font-weight:700;color:var(--dark);margin-bottom:1rem;padding-bottom:.75rem;border-bottom:2px solid var(--orange)}.legal-toc__list{display:flex;flex-direction:column;gap:.25rem}.legal-toc__link{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;font-size:.875rem;color:var(--mid-gray);border-radius:var(--r-sm);transition:var(--tf)}.legal-toc__link:hover,.legal-toc__link.active{background:var(--white);color:var(--blue);font-weight:500}.legal-toc__link::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--light-gray);flex-shrink:0;transition:var(--tf)}.legal-toc__link:hover::before,.legal-toc__link.active::before{background:var(--orange)}
/* Content */
/* HERO */
.hero{background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);padding:3rem 0 2.5rem;color:var(--white)}.hero__breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.6);margin-bottom:1.25rem}.hero__breadcrumb a{color:rgba(255,255,255,.6)}.hero__breadcrumb a:hover{color:var(--white)}.hero__title{font-family:var(--font-head);font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;line-height:1.15;margin-bottom:.75rem}.hero__subtitle{font-size:1.0625rem;color:rgba(255,255,255,.8);max-width:600px;line-height:1.7}.hero__meta{display:flex;align-items:center;gap:1.5rem;margin-top:1.25rem;flex-wrap:wrap}.hero__meta-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.7)}.hero__meta-item svg{width:16px;height:16px;color:var(--orange-light)}

/* LEGAL LAYOUT */
.legal-grid {
    display: grid;
    gap: 3rem;
}
.legal-content{}.legal-content section{margin-bottom:2.5rem;scroll-margin-top:110px}.legal-content h2{font-family:var(--font-head);font-size:1.375rem;font-weight:700;color:var(--dark);margin-bottom:1rem;padding-bottom:.625rem;border-bottom:1px solid var(--pale);display:flex;align-items:center;gap:.625rem}.legal-content h2 .sec-num{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;background:var(--blue);color:var(--white);border-radius:var(--r-sm);font-size:.75rem;font-weight:700;flex-shrink:0}.legal-content h3{font-family:var(--font-head);font-size:1.0625rem;font-weight:700;color:var(--dark-gray);margin:1.25rem 0 .5rem}.legal-content p{color:var(--mid-gray);line-height:1.75;margin-bottom:.875rem}.legal-content ul{margin:.5rem 0 .875rem 0;display:flex;flex-direction:column;gap:.375rem}.legal-content ul li{display:flex;align-items:flex-start;gap:.625rem;color:var(--mid-gray);font-size:.9625rem;line-height:1.65}.legal-content ul li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--orange);flex-shrink:0;margin-top:.55em}.legal-content a{color:var(--blue-light);text-decoration:underline;text-underline-offset:2px}.legal-content a:hover{color:var(--orange)}
.info-box{background:var(--pale);border-left:4px solid var(--orange);border-radius:0 var(--r-md) var(--r-md) 0;padding:1rem 1.25rem;margin:1rem 0}.info-box p{margin:0;font-size:.9375rem}.info-box--blue{border-color:var(--blue)}.info-box--green{border-color:var(--green)}
.legal-updated{display:inline-flex;align-items:center;gap:.5rem;background:var(--pale);border-radius:var(--r-full);padding:.375rem 1rem;font-size:.8125rem;font-weight:500;color:var(--mid-gray);margin-bottom:1.5rem}.legal-updated svg{width:14px;height:14px;color:var(--orange)}
@media (min-width: 1024px) {
    .legal-grid {
        display:grid;
        grid-template-columns: 260px 1fr;
        align-items: start;
    }
}
