/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        color: #374151;
        line-height: 1.7;
        background: #ffffff;
        overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ===== SCROLL REVEAL ===== */
    .revealed { opacity: 1 !important; transform: none !important; }

    /* ===== TICKER ===== */
    .shah-ticker {
        background: #FE4A00;
        overflow: hidden;
        white-space: nowrap;
        height: 40px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 9999;
    }
    .shah-ticker__track {
        display: flex;
        width: max-content;
        animation: ticker-scroll 33s linear infinite;
    }
    .shah-ticker__track:hover { animation-play-state: paused; }
    .shah-ticker__content {
        display: flex;
        align-items: center;
        padding-right: 0;
    }
    .shah-ticker__item {
        font-size: 19px;
        font-weight: 700;
        color: #ffffff;
        padding: 0 32px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    .shah-ticker__dot {
        width: 5px;
        height: 5px;
        background: #FE4A00;
        border-radius: 50%;
        flex-shrink: 0;
    }
    @keyframes ticker-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ===== HEADER ===== */
    .shah-header {
        background: #234190;
        border-bottom: 3px solid #FE4A00 !important;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }/* ===== MOBILE MENU ===== */
    .shah-mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9998;
    }
    .shah-mobile-menu--open { display: block; }
    .shah-mobile-menu__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
    }
    .shah-mobile-menu__panel {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 90vw);
        background: #0a1628;
        overflow-y: auto;
        padding-bottom: 40px;
    }
    .shah-mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid #f0f2f5;
    }
    .shah-mobile-menu__close {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
        padding: 0 4px;
    }
    .shah-mobile-menu__list { list-style: none; padding: 8px 0; }
    .shah-mobile-menu__parent-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .shah-mobile-menu__link {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        flex: 1;
    }
    .shah-mobile-menu__toggle {
        background: none;
        border: none;
        color: rgba(255,255,255,0.75);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 14px 20px;
        line-height: 1;
    }
    .shah-mobile-menu__toggle-icon { display: block; }
    .shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon { transform: rotate(45deg); }
    .shah-mobile-menu__submenu {
        display: none;
        background: rgba(255,255,255,0.05);
        padding: 4px 0;
    }
    .shah-mobile-menu__submenu--open { display: block; }
    .shah-mobile-menu__sublink {
        display: block;
        padding: 10px 24px 10px 40px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.75);
        transition: color 0.2s;
    }
    .shah-mobile-menu__sublink:hover { color: #FE4A00; }
    body.shah-mobile-open { overflow: hidden; }

    /* ===== BREADCRUMB ===== */
    .breadcrumb {
        background: #ffffff;
        padding: 12px 0;
        font-size: 0.85rem;
        color: #234190;
        border-bottom: 1px solid #ffffff;
    }
    .breadcrumb a { color: #234190; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { margin: 0 8px; color: #4b5563; }

    /* ===== FOOTER ===== */
    .shah-footer {
        background: #234190;
        font-family: 'Inter', sans-serif;
    }
    .shah-footer__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .shah-footer__service-areas {
        background: #ffffff !important;
        padding: 32px 0;
        border-bottom: 1px solid #f0f2f5;
    }
    .shah-footer__areas-heading {
        font-size: 0.85rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    .shah-footer__city-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }
    .shah-footer__areas-tagline {
        font-size: 0.8rem;
        color: #374151;
        line-height: 1.7;
        max-width: 900px;
        margin-top: 12px;
    }
    .shah-footer__city-link {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.75);
        padding: 4px 12px;
        background: rgba(255,255,255,0.07);
        border-radius: 20px;
        transition: all 0.2s;
        text-decoration: none;
    }
    .shah-footer__city-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .shah-footer__main {
        background: #234190 !important;
        padding: 32px 0 !important;
        border-bottom: 1px solid #f0f2f5;
    }
    .shah-footer__columns {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 48px;
    }
    .shah-footer__col--logo img { height: 52px; width: auto; margin-bottom: 16px; }
    .shah-footer__tagline {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.70);
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .shah-footer__col-heading {
        font-size: 0.8rem;
        font-weight: 700;
        color: rgba(255,255,255,0.75);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }
    .shah-footer__links { list-style: none; }
    .shah-footer__links li { margin-bottom: 8px; }
    .shah-footer__links li a {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.75);
        transition: color 0.2s;
        text-decoration: none;
    }
    .shah-footer__links li a:hover { color: #FE4A00; }
    .shah-footer__contact-item { margin-bottom: 14px; }
    .shah-footer__contact-label {
        font-size: 0.72rem;
        font-weight: 700;
        color: rgba(255,255,255,0.75);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 3px;
    }
    .shah-footer__contact-phone {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        transition: color 0.2s;
        text-decoration: none;
        display: block;
    }
    .shah-footer__contact-phone:hover { color: #FE4A00; }
    .shah-footer__address {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.7);
        font-style: normal;
        line-height: 1.5;
    }
    .shah-footer__license {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.7);
    }
    .shah-footer__emergency {
        font-size: 0.88rem;
        color: #FE4A00;
        font-weight: 600;
        text-decoration: none;
        display: block;
    }
    .shah-footer__emergency:hover { text-decoration: underline; }
    .shah-footer__social-icons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    .shah-footer__social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #FE4A00;
        border-radius: 6px;
        transition: all 0.2s;
        color: #fff;
    }
    .shah-footer__social-icons a:hover { background: #e53d22; transform: translateY(-2px); }
    .shah-footer__social-icons a svg {
  fill: #ffffff !important; width: 18px; height: 18px; fill: #fff; }
    .shah-footer__copyright { background: #FE4A00; padding: 14px 0; }
    .shah-footer__copyright-text {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.9);
        text-align: center;
    }
    .shah-footer__copyright-text a { color: #fff; text-decoration: underline; }

    /* ============================================================
       PAGE-SPECIFIC: HVAC MAINTENANCE  (prefix: hvm-)
    ============================================================ */

    /* --- HERO: CENTERED NAVY --- */
    .hvm-hero {
        background: #234190;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 72px 24px 104px;
        position: relative;
        overflow: hidden;
    }
    .hvm-hero__einstein {
        position: absolute;
        left: 2%;
        bottom: 0;
        height: 92%;
        width: auto;
        z-index: 1;
        opacity: 0.18;
        pointer-events: none;
        mix-blend-mode: luminosity;
    }
    .hvm-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(240,79,37,0.07) 0%, transparent 70%);
        pointer-events: none;
    }
    .hvm-hero__badge {
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
    }
    .hvm-hero__badge svg {
        width: 96px;
        height: 96px;
        filter: drop-shadow(0 8px 24px rgba(240,79,37,0.45));
    }
    .hvm-hero__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(240,79,37,0.15);
        border: 1px solid rgba(240,79,37,0.4);
        color: #FE4A00;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 22px;
        position: relative;
        z-index: 1;
    }
    .hvm-hero__eyebrow-dot {
        width: 7px;
        height: 7px;
        background: #FE4A00;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 2s infinite;
        flex-shrink: 0;
    }
    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(0.7); }
    }
    .hvm-hero__h1 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.15;
        max-width: 860px;
        margin: 0 auto 22px;
        position: relative;
        z-index: 1;
    }
    .hvm-hero__h1 em {
        color: #FE4A00;
        font-style: normal;
    }
    .hvm-hero__subtext {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.72);
        max-width: 680px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
        z-index: 1;
    }
    .hvm-hero__ctas {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    .hvm-hero__btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #FE4A00;
        color: #ffffff;
        font-weight: 700;
        font-size: 1rem;
        padding: 15px 30px;
        border-radius: 8px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
        white-space: nowrap;
    }
    .hvm-hero__btn-primary:hover { background: #e53d22; transform: translateY(-1px); }
    .hvm-hero__btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.97rem;
        padding: 14px 26px;
        border-radius: 8px;
        border: 2px solid rgba(255,255,255,0.35);
        transition: border-color 0.2s, background 0.2s;
        text-decoration: none;
    }
    .hvm-hero__btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.07); }
    .hvm-hero__divider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        overflow: hidden;
    }
    .hvm-hero__divider svg {
        display: block;
        width: 100%;
        height: 64px;
    }

    /* --- STATS BAR --- */
    .hvm-stats {
        background: #FE4A00;
        padding: 56px 0;
    }
    .hvm-stats__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .hvm-stats__card {
        background: transparent;
        border-radius: 12px;
        padding: 32px 24px;
        text-align: center;
        border-top: 4px solid #234190;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .hvm-stats__card:hover { transform: translateY(-4px); }
    .hvm-stats__value {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 8px;
    }
    .hvm-stats__label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.4;
    }
    .hvm-stats__sublabel {
        font-size: 0.75rem;
        color: #ffffff;
        margin-top: 4px;
        opacity: 0.75;
    }

    /* --- VIDEO SECTION --- */
    .hvm-video {
        background: #ffffff;
        padding: 88px 0;
    }
    .hvm-video__inner {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    .hvm-video__eyebrow {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 14px;
        background: rgba(240,79,37,0.1);
        padding: 5px 14px;
        border-radius: 4px;
    }
    .hvm-video__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.8vw, 2.3rem);
        font-weight: 700;
        color: #234190;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .hvm-video__subtext {
        font-size: 1rem;
        color: #4b5563;
        line-height: 1.75;
        max-width: 720px;
        margin: 0 auto 40px;
    }
    .hvm-video__embed-wrap {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        aspect-ratio: 16/9;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 16px 56px rgba(35,65,144,0.15);
    }
    .hvm-video__embed-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    /* --- SALES PITCH SECTION --- */
    .hvm-pitch {
        background: #234190;
        padding: 88px 0;
    }
    .hvm-pitch__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
    .hvm-pitch__eyebrow {
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    .hvm-pitch__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 2.5vw, 2.1rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hvm-pitch__body {
        font-size: 0.98rem;
        color: #ffffff;
        line-height: 1.8;
    }
    .hvm-pitch__card {
        background: #ffffff;
        border: 2px solid #FE4A00;
        border-radius: 14px;
        padding: 36px 32px;
        box-shadow: 0 8px 32px rgba(240,79,37,0.1);
    }
    .hvm-pitch__card-heading {
        font-family: 'Oswald', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #234190;
        margin-bottom: 6px;
    }
    .hvm-pitch__card-subheading {
        font-size: 0.9rem;
        color: #4b5563;
        margin-bottom: 22px;
        font-weight: 500;
    }
    .hvm-pitch__card-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
    .hvm-pitch__card-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.5;
    }
    .hvm-pitch__card-check {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }
    .hvm-pitch__price-pill {
        display: inline-block;
        background: #FE4A00;
        color: #ffffff;
        font-family: 'Oswald', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 8px 22px;
        border-radius: 24px;
        letter-spacing: 0.5px;
    }
    .hvm-pitch__price-note {
        font-size: 0.78rem;
        color: #234190;
        margin-top: 8px;
    }

    /* --- WHAT'S INCLUDED --- */
    .hvm-included {
        background: #ffffff;
        padding: 88px 0;
    }
    .hvm-included__header {
        text-align: center;
        margin-bottom: 56px;
    }
    .hvm-included__eyebrow {
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .hvm-included__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.8vw, 2.4rem);
        font-weight: 700;
        color: #234190;
        margin-bottom: 14px;
    }
    .hvm-included__divider {
        width: 56px;
        height: 4px;
        background: #FE4A00;
        border-radius: 2px;
        margin: 0 auto;
    }
    .hvm-included__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }
    .hvm-included__checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .hvm-included__check-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 20px;
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #FE4A00;
        transition: background 0.2s, transform 0.2s;
    }
    .hvm-included__check-item:hover { background: #ffffff; transform: translateX(4px); }
    .hvm-included__check-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        margin-top: 1px;
    }
    .hvm-included__check-text {
        font-size: 0.97rem;
        color: #374151;
        font-weight: 500;
        line-height: 1.5;
    }
    .hvm-included__img-wrap {
        position: relative;
        padding-bottom: 24px;
    }
    .hvm-included__img-wrap img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 16px 48px rgba(35,65,144,0.15);
    }
    .hvm-included__img-badge {
        position: absolute;
        bottom: 0;
        right: 16px;
        background: #FE4A00;
        color: #fff;
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.4;
        box-shadow: 0 8px 24px rgba(240,79,37,0.35);
        white-space: nowrap;
    }

    /* --- REVIEWS --- */
    .hvm-reviews {
        background: #FE4A00;
        padding: 80px 0;
    }
    .hvm-reviews__header {
        text-align: center;
        margin-bottom: 40px;
    }
    .hvm-reviews__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 10px;
    }
    .hvm-reviews__sub {
        font-size: 1rem;
        color: rgba(255,255,255,0.85);
    }
    .hvm-reviews__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    @media (max-width: 900px) { .hvm-reviews__grid { grid-template-columns: 1fr; } }
    .hvm-reviews__card {
        background: #ffffff;
        border-radius: 12px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hvm-reviews__stars {
        color: #FE4A00;
        font-size: 1.15rem;
        letter-spacing: 2px;
    }
    .hvm-reviews__text {
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.7;
        flex: 1;
    }
    .hvm-reviews__author {
        font-size: 0.85rem;
        font-weight: 700;
        color: #0a1628;
    }
    .hvm-reviews__date {
        font-size: 0.78rem;
        color: #4b5563;
    }

    /* --- WHY CHOOSE US (3 cards) --- */
    .hvm-why {
        background: #f0f2f5;
        padding: 88px 0;
    }
    .hvm-why__header {
        text-align: center;
        margin-bottom: 52px;
    }
    .hvm-why__eyebrow {
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .hvm-why__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.8vw, 2.4rem);
        font-weight: 700;
        color: #234190;
    }
    .hvm-why__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .hvm-why__card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .hvm-why__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
    .hvm-why__card-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }
    .hvm-why__card-body {
        padding: 26px 24px;
    }
    .hvm-why__card-title {
        font-family: 'Oswald', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #234190;
        margin-bottom: 10px;
        line-height: 1.25;
    }
    .hvm-why__card-desc {
        font-size: 0.93rem;
        color: #4b5563;
        line-height: 1.65;
    }

    /* --- HONEST + VIDEO (navy split) --- */
    .hvm-honest {
        background: #234190;
        padding: 88px 0;
    }
    .hvm-honest__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
    .hvm-honest__eyebrow {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 14px;
        background: rgba(240,79,37,0.12);
        padding: 5px 12px;
        border-radius: 4px;
    }
    .hvm-honest__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.8vw, 2.4rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hvm-honest__body {
        font-size: 1rem;
        color: rgba(255,255,255,0.72);
        line-height: 1.8;
        margin-bottom: 32px;
    }
    .hvm-honest__cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #FE4A00;
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        padding: 14px 28px;
        border-radius: 8px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
    }
    .hvm-honest__cta:hover { background: #e53d22; transform: translateY(-1px); }
    .hvm-honest__embed-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    }
    .hvm-honest__embed-wrap iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        border: none;
        border-radius: 12px;
    }

    /* --- CTA + FORM --- */
    .hvm-cta {
        background: #234190;
        padding: 0;
    }
    .hvm-cta__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    .hvm-cta__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .hvm-cta__body {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.75;
        margin-bottom: 28px;
    }
    .hvm-cta__phone-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #FE4A00;
        color: #fff;
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 16px 32px;
        border-radius: 10px;
        margin-bottom: 28px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
    }
    .hvm-cta__phone-btn:hover { background: #e53d22; transform: translateY(-1px); }
    .hvm-cta__trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .hvm-cta__badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.15);
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.4);
    }
    .hvm-cta__form-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .hvm-cta__form-header {
        background: #FE4A00;
        padding: 18px 24px;
        text-align: center;
    }
    .hvm-cta__form-header h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.5px;
    }

    /* --- FAQ (always visible, no accordion) --- */
    .hvm-faq {
        background: #ffffff;
        padding: 88px 0;
    }
    .hvm-faq__header {
        text-align: center;
        margin-bottom: 48px;
    }
    .hvm-faq__eyebrow {
        font-size: 0.78rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .hvm-faq__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 700;
        color: #234190;
    }
    .hvm-faq__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .hvm-faq__card {
        background: #ffffff;
        border: 2px solid #FE4A00;
        border-radius: 10px;
        padding: 26px 28px;
        overflow: hidden;
    }
    .hvm-faq__question {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 14px;
        line-height: 1.4;
        background: #FE4A00;
        border-radius: 6px 6px 0 0;
        padding: 10px 14px;
        margin: -26px -28px 14px -28px;
    }
    .hvm-faq__answer {
        font-size: 0.93rem;
        color: #4b5563;
        line-height: 1.7;
    }

    /* --- SEO FOOTER TEXT --- */
    .hvm-seo-footer {
        background: #ffffff;
        padding: 14px 0 22px;
        text-align: center;
        border-top: 1px solid #ffffff;
    }
    .hvm-seo-footer p {
        font-size: 0.78rem;
        color: #4b5563;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hvm-stats__grid { grid-template-columns: repeat(2, 1fr); }
        .hvm-pitch__grid { grid-template-columns: 1fr; gap: 40px; }
        .hvm-included__grid { grid-template-columns: 1fr; gap: 48px; }
        .hvm-included__img-wrap img { height: 360px; }
        .hvm-why__grid { grid-template-columns: 1fr 1fr; }
        .hvm-honest__grid { grid-template-columns: 1fr; gap: 48px; }
        .hvm-cta__grid { grid-template-columns: 1fr; gap: 48px; }
        .hvm-faq__grid { grid-template-columns: 1fr; }
        .shah-footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
        .shah-header__nav { display: none; }
        .shah-header__right { display: none; }
        .shah-header__hamburger { display: flex; }
        .hvm-hero { padding: 56px 24px 80px; min-height: auto; }
        .hvm-hero__h1 { font-size: clamp(1.75rem, 5vw, 2.2rem); }
        .hvm-hero__ctas { flex-direction: column; align-items: center; }
        .hvm-hero__btn-primary, .hvm-hero__btn-outline { justify-content: center; width: 100%; max-width: 340px; }
        .hvm-stats { padding: 40px 0; }
        .hvm-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .hvm-video, .hvm-pitch, .hvm-included, .hvm-reviews,
        .hvm-why, .hvm-honest, .hvm-cta, .hvm-faq { padding: 56px 0; }
        .hvm-why__grid { grid-template-columns: 1fr; }
        .hvm-faq__card { padding: 20px; }
        .hvm-cta__phone-btn { font-size: 1.25rem; padding: 14px 24px; }
        .shah-footer__columns { grid-template-columns: 1fr; gap: 28px; }
        .hvm-pitch__card { padding: 28px 22px; }
    }
    @media (max-width: 480px) {
        .hvm-stats__grid { grid-template-columns: 1fr 1fr; }
        .hvm-stats__card { padding: 24px 16px; }
        .hvm-stats__value { font-size: 1.6rem; }
        .hvm-hero__badge svg { width: 72px; height: 72px; }
    }

.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}
/* INJECTION: area-pill */
.shah-area-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.shah-area-pill:hover { background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%); }
.area-pill__pin { flex-shrink: 0; }
.shah-area-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .shah-area-pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shah-area-pill-grid { grid-template-columns: 1fr; } }

/* Social icons — orange square */
.shah-footer__social-icons { display: flex !important; align-items: center !important; gap: 10px !important; margin-top: 20px !important; }
.shah-footer__social-icons a { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: 6px !important; background: #FE4A00 !important; transition: transform 0.2s, opacity 0.2s !important; text-decoration: none !important; }
.shah-footer__social-icons a:hover { transform: translateY(-2px) !important; opacity: 0.85 !important; background: #FE4A00 !important; }
.shah-footer__social-icons a svg { width: 17px !important; height: 17px !important; }