/* ===== 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); }

    /* ===== 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: AC INSTALLATION
    ============================================================ */

    /* --- HERO: SPLIT LAYOUT --- */
    .aci-hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 580px;
    }
    .aci-hero__left {
        background: #234190;
        position: relative;
        display: flex;
        align-items: center;
        padding: 64px 52px 64px 0;
    }
    .aci-hero__orange-strip {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: #FE4A00;
        flex-shrink: 0;
    }
    .aci-hero__left-inner {
        padding-left: 48px;
        max-width: 580px;
    }
    .aci-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 14px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .aci-hero__eyebrow::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #FE4A00;
        border-radius: 50%;
        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); }
    }
    .aci-hero__h1 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 18px;
    }
    .aci-hero__h1 em {
        color: #FE4A00;
        font-style: normal;
    }
    .aci-hero__subtext {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 480px;
    }
    .aci-hero__pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        margin-bottom: 32px;
    }
    .aci-hero__pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.9);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 6px;
        white-space: nowrap;
    }
    .aci-hero__ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }
    .aci-hero__btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #FE4A00;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.98rem;
        padding: 14px 28px;
        border-radius: 8px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
    }
    .aci-hero__btn-primary:hover { background: #e53d22; transform: translateY(-1px); }
    .aci-hero__btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 13px 24px;
        border-radius: 8px;
        border: 2px solid rgba(255,255,255,0.35);
        transition: border-color 0.2s, background 0.2s;
        text-decoration: none;
    }
    .aci-hero__btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.07); }
    .aci-hero__right {
        position: relative;
        overflow: hidden;
    }
    .aci-hero__right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    .aci-hero__right-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(10,22,40,0.35) 0%, transparent 40%);
        pointer-events: none;
    }

    /* --- STATS BAR --- */
    .aci-stats {
        background: #234190;
    }
    .aci-stats__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .aci-stats__item {
        padding: 32px 28px;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.08);
        position: relative;
    }
    .aci-stats__item:last-child { border-right: none; }
    .aci-stats__item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: #FE4A00;
        border-radius: 2px 2px 0 0;
    }
    .aci-stats__value {
        font-family: 'Oswald', sans-serif;
        font-size: 2.1rem;
        font-weight: 700;
        color: #FE4A00;
        line-height: 1;
        margin-bottom: 6px;
    }
    .aci-stats__label {
        font-size: 0.82rem;
        font-weight: 600;
        color: rgba(255,255,255,0.75);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* --- WHAT'S INCLUDED --- */
    .aci-included {
        background: #ffffff;
        padding: 88px 0;
    }
    .aci-included__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }
    .aci-included__eyebrow {
        font-size: 0.8rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .aci-included__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #234190;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .aci-included__divider {
        width: 56px;
        height: 4px;
        background: #FE4A00;
        border-radius: 2px;
        margin-bottom: 28px;
    }
    .aci-included__checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .aci-included__check-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 0.97rem;
        color: #374151;
        line-height: 1.5;
    }
    .aci-included__check-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-top: 1px;
    }
    .aci-included__img-wrap {
        position: relative;
        padding-bottom: 18px;
        padding-left: 18px;
    }
    .aci-included__img-wrap img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 16px 48px rgba(35,65,144,0.18);
    }
    .aci-included__img-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #FE4A00;
        color: #fff;
        padding: 16px 22px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(240,79,37,0.35);
    }
    .aci-included__img-badge-value {
        font-family: 'Oswald', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }
    .aci-included__img-badge-label {
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }

    /* --- PROGRESSION GRID --- */
    .aci-progression {
        background: #f3f3f3;
        padding: 80px 0;
    }
    .aci-progression__header {
        text-align: center;
        margin-bottom: 48px;
    }
    .aci-progression__eyebrow {
        font-size: 0.8rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    .aci-progression__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #234190;
        margin-bottom: 10px;
    }
    .aci-progression__subtitle {
        font-size: 1rem;
        color: #4b5563;
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.65;
    }
    .aci-progression__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .aci-progression__card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
        transition: transform 0.2s, box-shadow 0.2s;
        position: relative;
    }
    .aci-progression__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
    .aci-progression__card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
    .aci-progression__card-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 40px;
        height: 40px;
        background: #FE4A00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        box-shadow: 0 3px 10px rgba(240,79,37,0.4);
    }
    .aci-progression__card-badge--done {
        width: auto;
        height: auto;
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 0.78rem;
        letter-spacing: 0.5px;
        background: #234190;
    }
    .aci-progression__card-body {
        padding: 20px;
    }
    .aci-progression__card-title {
        font-family: 'Oswald', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #234190;
        margin-bottom: 7px;
    }
    .aci-progression__card-desc {
        font-size: 0.88rem;
        color: #4b5563;
        line-height: 1.55;
    }

    /* --- VIDEO SECTION --- */
    .aci-video {
        background: linear-gradient(135deg, #234190 0%, #234190 100%);
        padding: 80px 0;
    }
    .aci-video__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
    .aci-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.12);
        padding: 5px 12px;
        border-radius: 4px;
    }
    .aci-video__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: 18px;
    }
    .aci-video__body {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.75;
        margin-bottom: 32px;
    }
    .aci-video__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;
    }
    .aci-video__cta:hover { background: #e53d22; transform: translateY(-1px); }
    .aci-video__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.4);
    }
    .aci-video__embed-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

    /* --- HONEST SECTION --- */
    .aci-honest {
        background: #ffffff;
        padding: 88px 0;
    }
    .aci-honest__inner {
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }
    .aci-honest__pill {
        display: inline-block;
        background: #FE4A00;
        color: #fff;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 16px;
    }
    .aci-honest__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 700;
        color: #234190;
        margin-bottom: 18px;
    }
    .aci-honest__body {
        font-size: 1.02rem;
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 36px;
    }
    .aci-honest__embed-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(35,65,144,0.18);
    }
    .aci-honest__embed-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

    /* --- WHY HOMEOWNERS --- */
    .aci-why {
        background: #f0f2f5;
        padding: 88px 0;
    }
    .aci-why__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }
    .aci-why__eyebrow {
        font-size: 0.8rem;
        font-weight: 700;
        color: #FE4A00;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .aci-why__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #234190;
        line-height: 1.2;
        margin-bottom: 28px;
    }
    .aci-why__checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 36px;
    }
    .aci-why__check-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 0.97rem;
        color: #374151;
        line-height: 1.5;
    }
    .aci-why__check-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-top: 1px;
    }
    .aci-why__cta {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #FE4A00;
        color: #ffffff;
        font-weight: 700;
        font-size: 1rem;
        padding: 14px 28px;
        border-radius: 8px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
    }
    .aci-why__cta:hover { background: #e53d22; transform: translateY(-1px); }
    .aci-why__img-wrap img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 16px 48px rgba(35,65,144,0.15);
    }

    /* --- REVIEWS --- */
    .aci-reviews {
        background: #ffffff;
        padding: 80px 0;
    }
    .aci-reviews__header {
        text-align: center;
        margin-bottom: 40px;
    }
    .aci-reviews__heading {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #234190;
        margin-bottom: 10px;
    }
    .aci-reviews__sub {
        font-size: 1rem;
        color: #4b5563;
    }

    /* --- CTA + FORM --- */
    .aci-cta {
        background: linear-gradient(135deg, #234190 0%, #234190 100%);
        padding: 88px 0;
    }
    .aci-cta__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
    .aci-cta__calc-wrap {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .aci-cta__calc-header {
        background: #FE4A00;
        padding: 16px 24px;
        text-align: center;
    }
    .aci-cta__calc-header h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .aci-cta__calc-iframe {
        width: 100%;
        min-height: 520px;
        border: none;
        display: block;
    }
    .aci-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;
    }
    .aci-cta__body {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.75;
        margin-bottom: 28px;
    }
    .aci-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;
    }
    .aci-cta__phone-btn:hover { background: #e53d22; transform: translateY(-1px); }
    .aci-cta__trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .aci-cta__badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.85);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.18);
    }
    .aci-cta__form-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .aci-cta__form-header {
        background: #FE4A00;
        padding: 18px 24px;
        text-align: center;
    }
    .aci-cta__form-header h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.5px;
    }

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

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .aci-hero { grid-template-columns: 1fr; min-height: auto; }
        .aci-hero__left { padding: 56px 40px 56px 0; }
        .aci-hero__left-inner { padding-left: 40px; max-width: 100%; }
        .aci-hero__right { height: 380px; }
        .aci-stats__grid { grid-template-columns: repeat(2, 1fr); }
        .aci-included__grid { grid-template-columns: 1fr; gap: 48px; }
        .aci-included__img-wrap img { height: 360px; }
        .aci-progression__grid { grid-template-columns: repeat(2, 1fr); }
        .aci-video__grid { grid-template-columns: 1fr; gap: 48px; }
        .aci-why__grid { grid-template-columns: 1fr; gap: 48px; }
        .aci-why__img-wrap { order: -1; }
        .aci-why__img-wrap img { height: 360px; }
        .aci-cta__grid { grid-template-columns: 1fr; gap: 48px; }
        .aci-cta__calc-iframe { min-height: 480px; }
        .aci-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; }
        .aci-hero__left { padding: 48px 24px 48px 0; }
        .aci-hero__left-inner { padding-left: 28px; }
        .aci-hero__h1 { font-size: 1.75rem; }
        .aci-hero__pills { gap: 8px; }
        .aci-hero__pill { font-size: 0.74rem; padding: 6px 10px; }
        .aci-hero__ctas { flex-direction: column; gap: 12px; }
        .aci-hero__btn-primary, .aci-hero__btn-outline { justify-content: center; }
        .aci-stats__grid { grid-template-columns: repeat(2, 1fr); }
        .aci-progression__grid { grid-template-columns: 1fr; }
        .aci-included, .aci-why, .aci-honest, .aci-faq, .aci-cta, .aci-reviews { padding: 56px 0; }
        .shah-footer__columns { grid-template-columns: 1fr; gap: 28px; }
        .aci-faq__card { padding: 20px 20px; }
    }
    @media (max-width: 480px) {
        .aci-stats__grid { grid-template-columns: 1fr 1fr; }
        .aci-stats__item { padding: 24px 16px; }
        .aci-stats__value { font-size: 1.75rem; }
        .aci-hero__right { height: 260px; }
        .aci-cta__phone-btn { font-size: 1.25rem; padding: 14px 24px; }
    }

.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; }