/* ============================= */
/* GLOBAL RESET */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

html {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    font-family: var(--font-main, 'Inter', Arial, sans-serif);
    cursor: default;
    color: var(--color-dark, #071B5F);

    background:
        radial-gradient(circle at 90% 10%, rgba(0, 91, 255, 0.10), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #eef5ff 100%);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

ul {
    list-style: none;
}


/* ============================= */
/* SHARED UTILITIES */
/* ============================= */

.flexCenterAlign {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexRightAlign {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
}

.sectionEyebrow {
    width: fit-content;

    color: #005BFF;
    background: rgba(0, 91, 255, 0.08);
    border: 1px solid rgba(0, 91, 255, 0.14);
    border-radius: 999px;

    font-size: clamp(0.68rem, 0.9vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    padding: 0.45rem 0.85rem;
}

.sectionHeaderCenter {
    width: min(100%, 850px);
    margin: 0 auto 2rem;

    display: grid;
    justify-items: center;
    gap: 1rem;

    text-align: center;
}

.sectionHeaderCenter h2,
.sectionHeaderSplit h2,
#processCard h2,
#servicesCtaCard h2 {
    color: var(--color-dark, #071B5F);
    font-family: var(--font-heading, 'Poppins', Arial, sans-serif);
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.sectionHeaderCenter p,
.sectionHeaderSplit p,
#processCard > div:first-child p,
#servicesCtaCard p {
    color: rgba(6, 22, 70, 0.66);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 500;
    line-height: 1.65;
}


/* ============================= */
/* NAV BAR */
/* Matches index/home page navbar */
/* ============================= */

#navBarOuter {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(6, 22, 70, 0.08);
    box-shadow: 0 14px 22px -18px rgba(6, 22, 70, 0.28);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#navBarContent {
    width: min(92%, 1200px);
    margin: 0 auto;

    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;

    padding: 0.35rem 0;
}

#logoContainer {
    justify-content: flex-start;
}

#logoContainer img {
    max-width: 145px;
    height: auto;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.55rem 0.15rem;

    color: var(--color-dark, #071B5F);
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    font-weight: 700;

    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    transition: transform 0.35s ease;
}

.btn:not(.ctaQt)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.25rem;

    width: 0;
    height: 3px;

    background-color: var(--color-dark, #071B5F);
    border-radius: 999px;

    transition: width 0.35s ease;
}

.btn:not(.ctaQt):hover::after,
.btn.activePage:not(.ctaQt)::after {
    width: 100%;
}

.ctaQt {
    padding: 0.75rem 1rem;
    border-radius: 12px;

    background: linear-gradient(135deg, #005BFF, #003BB8);
    color: white;
    box-shadow: 0 12px 28px rgba(0, 91, 255, 0.22);
}

.btn:hover {
    transform: scale(1.04) translateZ(0);
}


/* ============================= */
/* MOBILE HAMBURGER ICON */
/* ============================= */

#mobileHam {
    display: none;

    width: 44px;
    height: 44px;
    padding: 0;

    border-radius: 14px;
    border: 1px solid rgba(6, 22, 70, 0.10);

    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 8px 22px rgba(6, 22, 70, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

#mobileHam span {
    width: 22px;
    height: 2px;

    background: var(--color-dark, #071B5F);
    border-radius: 999px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background-color 0.25s ease;
}


/* ============================= */
/* SERVICES HERO */
/* ============================= */

#servicesHeroSection,
#servicesAtGlance,
#serviceDetailsSection,
#processSection,
#servicesCtaSection {
    width: min(92%, 1200px);
    margin-inline: auto;
}

#servicesHeroSection {
    padding-top: clamp(1.5rem, 4vw, 3.75rem);
}

#servicesHeroCard {
    position: relative;
    overflow: hidden;

    min-height: clamp(30rem, 44vw, 42rem);

    border: 1px solid rgba(6, 22, 70, 0.08);
    border-radius: clamp(1.5rem, 3vw, 2rem);

    background:
        radial-gradient(circle at 85% 12%, rgba(0, 91, 255, 0.18), transparent 30%),
        radial-gradient(circle at 12% 90%, rgba(0, 91, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #eef5ff 100%);

    box-shadow:
        0 1.5rem 3.75rem rgba(6, 22, 70, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

#servicesHeroCard::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.12)),
        radial-gradient(circle at 82% 48%, rgba(0, 91, 255, 0.16), transparent 32%);

    pointer-events: none;
}

#servicesHeroCard::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -14%;

    width: min(52vw, 620px);
    height: min(52vw, 620px);

    border-radius: 50%;
    border: 1px solid rgba(0, 91, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle, rgba(0, 91, 255, 0.14), transparent 62%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.90),
        0 24px 70px rgba(6, 22, 70, 0.10);
}

#servicesHeroContent {
    position: relative;
    z-index: 3;

    width: min(92%, 1120px);
    margin: 0 auto;
    min-height: inherit;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(2rem, 4vw, 3.75rem) 0;
}

#servicesHeroContent h1 {
    width: min(62%, 720px);
    margin-top: 1rem;

    color: var(--color-dark, #071B5F);
    font-family: var(--font-heading, 'Poppins', Arial, sans-serif);
    font-size: clamp(2.5rem, 4.6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

#servicesHeroContent p {
    width: min(55%, 620px);
    margin-top: 1rem;

    color: rgba(6, 22, 70, 0.72);
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    font-weight: 500;
    line-height: 1.65;
}

#servicesHeroActions {
    width: min(56%, 520px);
    margin-top: 1.5rem;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

#servicesHeroActions a {
    min-height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0.9rem 1rem;
    border-radius: 14px;

    font-size: clamp(0.9rem, 1vw, 1.05rem);
    font-weight: 900;
    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

#servicesHeroActions a:first-child {
    background: linear-gradient(135deg, #005BFF, #003BB8);
    color: white;
    box-shadow: 0 0.875rem 1.75rem rgba(0, 91, 255, 0.24);
}

#servicesHeroActions a:last-child {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(6, 22, 70, 0.10);
    color: #071B5F;
    box-shadow: 0 0.625rem 1.5rem rgba(6, 22, 70, 0.08);
}

#servicesHeroActions a:hover {
    transform: translateY(-4px);
}

#heroServiceBadges {
    width: min(65%, 760px);
    margin-top: 1.1rem;

    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

#heroServiceBadges div {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;

    color: rgba(6, 22, 70, 0.78);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(6, 22, 70, 0.10);

    font-size: clamp(0.72rem, 0.85vw, 0.9rem);
    font-weight: 700;
}


/* ============================= */
/* SERVICES AT A GLANCE */
/* Compact jump-link menu instead of repeating large service cards */
/* ============================= */

#servicesAtGlance {
    margin-top: clamp(3rem, 7vw, 6rem);
}

#glanceGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.glanceLink {
    min-height: 5.75rem;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 1.15rem 1.3rem;
    border-radius: 1.25rem;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(6, 22, 70, 0.08);
    box-shadow:
        0 1rem 2.5rem rgba(6, 22, 70, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.glanceLink strong {
    color: #071B5F;
    font-family: var(--font-heading, 'Poppins', Arial, sans-serif);
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    font-weight: 800;
    line-height: 1.18;
}

.glanceLink:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 91, 255, 0.16);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1.35rem 3.25rem rgba(6, 22, 70, 0.12);
}



/* ============================= */
/* SERVICE DETAILS */
/* ============================= */

#serviceDetailsSection {
    margin-top: clamp(3rem, 7vw, 6rem);
}

.sectionHeaderSplit {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1rem;

    margin-bottom: 2rem;
}

.sectionHeaderSplit > div {
    max-width: 920px;
}

.sectionHeaderSplit .servicePricingNote {
    max-width: 920px;
    margin: 0;
    color: rgba(6, 22, 70, 0.66);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    font-weight: 500;
    line-height: 1.6;
}

.sectionHeaderSplit h2 {
    margin-top: 0.9rem;
}

#serviceDetailsStack {
    display: grid;
    gap: 1.25rem;
}

.serviceDetailCard {
    scroll-margin-top: 6rem;

    padding: clamp(1.15rem, 2.5vw, 1.75rem);
    border-radius: clamp(1.25rem, 3vw, 1.75rem);

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 255, 255, 0.84)
    );
    border: 1px solid rgba(6, 22, 70, 0.10);
    box-shadow:
        0 1.5rem 4.375rem rgba(6, 22, 70, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.serviceDetailIntro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1.25rem;
}

.serviceDetailIntro h3 {
    margin-top: 0.8rem;

    color: #071B5F;
    font-family: var(--font-heading, 'Poppins', Arial, sans-serif);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.serviceDetailIntro p {
    max-width: 800px;
    margin-top: 0.75rem;

    color: rgba(6, 22, 70, 0.68);
    font-size: clamp(0.96rem, 1.1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.65;
}

.detailQuoteBtn {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 14px;

    color: white;
    background: linear-gradient(135deg, #005BFF, #003BB8);
    box-shadow: 0 0.875rem 1.75rem rgba(0, 91, 255, 0.22);

    font-weight: 900;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.detailQuoteBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 1.125rem 2.125rem rgba(0, 91, 255, 0.28);
}

.serviceDetailGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 1rem;

    margin-top: 1.25rem;
}

.includePanel,
.bestForPanel {
    padding: 1rem;
    border-radius: 1.25rem;

    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(6, 22, 70, 0.08);
    box-shadow:
        0 0.75rem 2.125rem rgba(6, 22, 70, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.includePanel h4,
.bestForPanel h4 {
    color: #071B5F;
    font-size: 1rem;
    font-weight: 900;
}

.includePanel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0.85rem 1.3rem;

    margin-top: 0.9rem;
}

.includePanel li {
    position: relative;

    min-height: 1.45rem;
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.7rem;

    padding-left: 0;

    color: rgba(6, 22, 70, 0.72);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.22;
}

.includePanel li::before {
    content: "";
    grid-column: 1;
    grid-row: 1;

    width: 1rem;
    height: 1rem;

    border-radius: 0.32rem;
    background: linear-gradient(135deg, #005BFF, #003BB8);
    box-shadow: 0 0.35rem 0.75rem rgba(0, 91, 255, 0.18);
}

.includePanel li::after {
    content: "";
    position: absolute;
    left: 0.34rem;
    top: 50%;

    width: 0.28rem;
    height: 0.5rem;

    border-right: 2px solid white;
    border-bottom: 2px solid white;

    transform: translateY(-60%) rotate(45deg);
}

.bestForPanel p {
    margin-top: 0.9rem;

    color: rgba(6, 22, 70, 0.70);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.65;
}


/* ============================= */
/* PROCESS */
/* ============================= */

#processSection {
    margin-top: clamp(3rem, 7vw, 6rem);
}

#processCard {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);

    padding: clamp(1.35rem, 3vw, 2.25rem);
    border-radius: clamp(1.25rem, 3vw, 1.75rem);

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 255, 255, 0.84)
    );
    border: 1px solid rgba(6, 22, 70, 0.10);
    box-shadow:
        0 1.5rem 4.375rem rgba(6, 22, 70, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

#processCard h2 {
    margin-top: 0.9rem;
}

#processCard > div:first-child p {
    margin-top: 1rem;
}

#processSteps {
    display: grid;
    gap: 1rem;
}

.processStep {
    padding: 1rem;
    border-radius: 1.25rem;

    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(6, 22, 70, 0.07);
    box-shadow: 0 0.85rem 1.8rem rgba(6, 22, 70, 0.06);
}

.processStep h3 {
    margin-top: 0;

    color: #071B5F;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    font-weight: 900;
}

.processStep p {
    margin-top: 0.35rem;

    color: rgba(6, 22, 70, 0.66);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* ============================= */
/* CTA */
/* ============================= */

#servicesCtaSection {
    margin-top: clamp(3rem, 7vw, 6rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
}

#servicesCtaCard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;

    padding: clamp(1.35rem, 3vw, 2.25rem);
    border-radius: clamp(1.25rem, 3vw, 1.75rem);

    background:
        radial-gradient(circle at 92% 20%, rgba(0, 91, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #eef5ff 100%);
    border: 1px solid rgba(6, 22, 70, 0.10);
    box-shadow:
        0 1.5rem 4.375rem rgba(6, 22, 70, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

#servicesCtaCard h2 {
    max-width: 700px;
    margin-top: 0.9rem;
}

#servicesCtaCard p {
    max-width: 720px;
    margin-top: 0.85rem;
}

#servicesCtaCard > a {
    min-height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0.9rem 1.25rem;
    border-radius: 14px;

    background: linear-gradient(135deg, #005BFF, #003BB8);
    color: white;
    box-shadow: 0 0.875rem 1.75rem rgba(0, 91, 255, 0.24);

    font-size: clamp(0.9rem, 1vw, 1.05rem);
    font-weight: 900;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#servicesCtaCard > a:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.125rem 2.125rem rgba(0, 91, 255, 0.30);
}


/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 1100px) {

    #glanceGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #servicesHeroContent h1,
    #servicesHeroContent p,
    #servicesHeroActions,
    #heroServiceBadges {
        width: min(78%, 720px);
    }

    .sectionHeaderSplit,
    #processCard,
    #servicesCtaCard,
    .serviceDetailIntro,
    .serviceDetailGrid {
        grid-template-columns: 1fr;
    }

    .detailQuoteBtn,
    #servicesCtaCard > a {
        width: fit-content;
    }
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 800px) {

    body {
        background:
            radial-gradient(circle at 90% 5%, rgba(0, 91, 255, 0.12), transparent 28%),
            linear-gradient(135deg, #ffffff 0%, #f6f9ff 52%, #eef5ff 100%);
    }

    /* NAV */

    #navBarContent {
        width: min(92%, 1200px);
        margin: 0 auto;

        display: grid;
        grid-template-columns: auto 44px;
        align-items: center;
        justify-content: space-between;

        padding: 0.65rem 0;
    }

    #logoContainer {
        justify-content: flex-start;
    }

    #logoContainer img {
        max-width: 145px;
        height: auto;
    }

    #mobileHam {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-self: end;
        gap: 5px;
    }

    #mobileHam:hover {
        transform: translateY(-1px);
        border-color: rgba(0, 91, 255, 0.22);
        box-shadow:
            0 12px 28px rgba(6, 22, 70, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    #mobileHam:active {
        transform: translateY(0) scale(0.97);
    }

    #mobileHam:hover span {
        background: var(--color-primary, #005BFF);
    }

    #mobileHam.hamOpen span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #mobileHam.hamOpen span:nth-child(2) {
        opacity: 0;
    }

    #mobileHam.hamOpen span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .flexRightAlign {
        position: fixed;
        top: 72px;
        left: 1rem;
        right: 1rem;
        width: auto;
        margin: 0;

        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.65rem;

        padding: 1rem;
        border-radius: 20px;

        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(6, 22, 70, 0.10);
        box-shadow: 0 22px 55px rgba(6, 22, 70, 0.18);

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .flexRightAlign.mobileMenuOpen {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .flexRightAlign .btn {
        width: 100%;

        text-align: center;
        padding: 0.85rem 1rem;

        font-size: 0.98rem;
        border-radius: 14px;
    }

    .flexRightAlign .btn:not(.ctaQt) {
        background: rgba(6, 22, 70, 0.04);
        color: #071B5F;
    }

    .flexRightAlign .btn:not(.ctaQt)::after {
        display: none;
    }

    .flexRightAlign .ctaQt {
        display: flex;
        justify-content: center;
        align-items: center;

        background: linear-gradient(135deg, #005BFF, #003BB8);
        color: white;
        box-shadow: 0 12px 28px rgba(0, 91, 255, 0.25);
    }

    #servicesHeroSection,
    #servicesAtGlance,
    #serviceDetailsSection,
    #processSection,
    #servicesCtaSection {
        width: min(92%, 540px);
    }

    #servicesHeroSection {
        padding-top: 1rem;
    }

    #servicesHeroCard {
        min-height: 0;
        border-radius: 26px;
    }

    #servicesHeroCard::after {
        width: 400px;
        height: 400px;
        right: -160px;
        bottom: -160px;
    }

    #servicesHeroContent {
        min-height: 0;
        padding: 1.25rem;
    }

    #servicesHeroContent h1,
    #servicesHeroContent p,
    #servicesHeroActions,
    #heroServiceBadges {
        width: 100%;
    }

    #servicesHeroContent h1 {
        font-size: clamp(2rem, 9vw, 3.15rem);
        line-height: 1.03;
    }

    #servicesHeroContent p {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    #servicesHeroActions {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-top: 1rem;
    }

    #servicesHeroActions a {
        min-height: 50px;
        padding: 0.8rem 0.75rem;
        border-radius: 14px;
        font-size: 0.88rem;
    }

    #heroServiceBadges {
        margin-top: 0.85rem;
        gap: 0.55rem;
    }

    #heroServiceBadges div {
        font-size: 0.72rem;
        padding: 0.5rem 0.7rem;
    }

    #servicesAtGlance,
    #serviceDetailsSection,
    #processSection,
    #servicesCtaSection {
        margin-top: 3rem;
    }

    .sectionHeaderCenter {
        margin-bottom: 1.35rem;
        gap: 0.85rem;
    }

    .sectionHeaderCenter h2,
    .sectionHeaderSplit h2,
    #processCard h2,
    #servicesCtaCard h2 {
        font-size: clamp(1.9rem, 8vw, 2.65rem);
        line-height: 1.05;
    }

    .sectionHeaderCenter p,
    .sectionHeaderSplit p,
    #processCard > div:first-child p,
    #servicesCtaCard p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    #serviceOverviewGrid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .serviceOverviewCard {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .serviceOverviewCard:hover {
        transform: none;
    }

    .serviceDetailCard {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .serviceDetailIntro h3 {
        font-size: clamp(1.55rem, 7vw, 2.25rem);
    }

    .detailQuoteBtn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .includePanel,
    .bestForPanel {
        padding: 0.95rem;
        border-radius: 18px;
    }


    .includePanel ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .includePanel li {
        grid-template-columns: 1rem minmax(0, 1fr);
        column-gap: 0.7rem;
        padding-left: 0;
    }


    .includePanel li,
    .bestForPanel p {
        font-size: 0.92rem;
    }

    #processCard,
    #servicesCtaCard {
        padding: 1.2rem;
        border-radius: 24px;
    }

    #servicesCtaCard > a {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* ============================= */
/* EXTRA SMALL PHONES */
/* ============================= */

@media (max-width: 380px) {

    #servicesHeroContent h1 {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .sectionHeaderCenter p,
    .sectionHeaderSplit p,
    #processCard > div:first-child p,
    #servicesCtaCard p {
        font-size: 0.92rem;
    }
}

/* ============================= */
/* HERO BLUE ACCENT WORDS */
/* Matches the blue span color idea from the index page */
/* ============================= */

#servicesHeroContent h1 span {
    color: var(--color-primary, #005BFF);
}

/* ============================= */
/* MOBILE SERVICES AT A GLANCE FIX */
/* Fixes cramped two-column cards and oversized heading on phones */
/* ============================= */

@media (max-width: 800px) {

    #servicesAtGlance {
        width: min(92%, 540px);
        margin-top: 2.75rem;
    }

    #servicesAtGlance .sectionHeaderCenter {
        margin-bottom: 1.25rem;
        gap: 0.8rem;
    }

    #servicesAtGlance .sectionHeaderCenter h2 {
        max-width: 11ch;
        margin-inline: auto;

        font-size: clamp(2rem, 8.2vw, 2.55rem);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    #servicesAtGlance .sectionHeaderCenter p {
        max-width: 34ch;
        margin-inline: auto;

        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        line-height: 1.55;
    }

    #glanceGrid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .glanceLink {
        width: 100%;
        min-height: 0;

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        padding: 1rem 1.15rem;
        border-radius: 18px;

        overflow: hidden;
    }

    .glanceLink:hover {
        transform: none;
    }

    .glanceLink strong {
        min-width: 0;

        font-size: clamp(0.98rem, 4.4vw, 1.12rem);
        line-height: 1.12;
        letter-spacing: -0.035em;

        white-space: normal;
        overflow-wrap: break-word;
    }

    #serviceDetailsSection {
        margin-top: 2.75rem;
    }

    .sectionHeaderSplit {
        gap: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .sectionHeaderSplit h2 {
        font-size: clamp(2rem, 8.2vw, 2.55rem);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    .sectionHeaderSplit p {
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        line-height: 1.55;
    }
}


/* Extra small phone tuning */

@media (max-width: 430px) {

    #servicesAtGlance .sectionHeaderCenter h2,
    .sectionHeaderSplit h2 {
        font-size: clamp(1.85rem, 8.6vw, 2.35rem);
    }

    #glanceGrid {
        gap: 0.7rem;
    }

    .glanceLink {
        padding: 0.9rem 1rem;
    }

    .glanceLink strong {
        font-size: clamp(0.95rem, 4.8vw, 1.05rem);
    }
}

/* ============================= */
/* SITE FOOTER */
/* Uses only div, img, and a tags in the footer HTML */
/* ============================= */

#siteFooter {
    width: 100%;
    margin-top: clamp(3rem, 7vw, 6rem);

    background:
        radial-gradient(circle at 90% 0%, rgba(0, 91, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #eef5ff 100%);

    border-top: 1px solid rgba(6, 22, 70, 0.08);
}

#footerContent {
    width: min(92%, 1200px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 3rem);

    padding: clamp(2rem, 5vw, 3.5rem) 0;
}

#footerBrand {
    display: grid;
    gap: 1rem;
}

#footerLogoLink {
    width: fit-content;
    display: block;
}

#footerBrand img {
    width: 170px;
    height: auto;
}

.footerGroup {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footerTitle {
    color: #071B5F;
    font-family: var(--font-heading, 'Poppins', Arial, sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
}

.footerText {
    max-width: 38ch;

    color: rgba(6, 22, 70, 0.66);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.6;
}

.footerGroup a {
    width: fit-content;

    color: rgba(6, 22, 70, 0.72);
    font-size: 0.98rem;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footerGroup a:hover {
    color: #005BFF;
    transform: translateX(3px);
}

#footerBottom {
    width: min(92%, 1200px);
    margin: 0 auto;

    padding: 1rem 0 1.25rem;

    border-top: 1px solid rgba(6, 22, 70, 0.08);
}

#footerBottom div {
    color: rgba(6, 22, 70, 0.55);
    font-size: 0.88rem;
    font-weight: 600;
}


/* Mobile footer */

@media (max-width: 800px) {

    #footerContent {
        grid-template-columns: 1fr;
        gap: 1.75rem;

        padding: 2rem 0;
    }

    #footerBrand img {
        width: 155px;
    }

    .footerText {
        max-width: 100%;
    }

    #footerBottom {
        padding: 1rem 0 1.25rem;
    }
}

/* ========================================================= */
/* FINAL FIX - WHAT IT INCLUDES CHECKMARK ALIGNMENT           */
/* Put at the very bottom so it overrides all earlier rules.  */
/* ========================================================= */

.includePanel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0.85rem 1.35rem;
    margin-top: 0.9rem;
}

.includePanel li {
    position: relative;
    display: grid;
    grid-template-columns: 1.15rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.7rem;

    min-height: 1.35rem;
    padding-left: 0;

    color: rgba(6, 22, 70, 0.72);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.includePanel li::before {
    content: "✓";

    position: static;
    grid-column: 1;
    grid-row: 1;

    width: 1.05rem;
    height: 1.05rem;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 0.32rem;
    background: linear-gradient(135deg, #005BFF, #003BB8);
    box-shadow: 0 0.35rem 0.75rem rgba(0, 91, 255, 0.18);

    color: white;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;

    transform: none;
}

.includePanel li::after {
    display: none;
    content: none;
}

@media (max-width: 800px) {

    .includePanel ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .includePanel li {
        grid-template-columns: 1.15rem minmax(0, 1fr);
        column-gap: 0.7rem;
        padding-left: 0;
    }
}

/* ========================================================= */
/* WHAT IT INCLUDES - SLOW SEQUENTIAL CHECKMARK ANIMATION     */
/* Add the class .checkmarksAnimate with JavaScript.          */
/* ========================================================= */

.includePanel li::before {
    opacity: 0;
    transform: scale(0.75);
}

.serviceDetailCard.checkmarksAnimate .includePanel li::before {
    animation-name: checkmarkPopIn;
    animation-duration: 1.15s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(1)::before {
    animation-delay: 0.2s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(2)::before {
    animation-delay: 0.6s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(3)::before {
    animation-delay: 1s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(4)::before {
    animation-delay: 1.4s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(5)::before {
    animation-delay: 1.8s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(6)::before {
    animation-delay: 2.2s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(7)::before {
    animation-delay: 2.6s;
}

.serviceDetailCard.checkmarksAnimate .includePanel li:nth-child(8)::before {
    animation-delay: 3s;
}

@keyframes checkmarkPopIn {
    0% {
        opacity: 0;
        transform: scale(0.65);
    }

    65% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================================= */
/* SERVICES HERO TEXT ANIMATION                              */
/* Matches index and gallery hero fade-up style              */
/* ========================================================= */

#servicesHeroContent .sectionEyebrow,
#servicesHeroContent h1,
#servicesHeroContent p,
#servicesHeroActions,
#heroServiceBadges {
    opacity: 0;
    transform: translateY(24px);

    animation-name: servicesHeroFadeUp;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

#servicesHeroContent .sectionEyebrow {
    animation-delay: 0.15s;
}

#servicesHeroContent h1 {
    animation-delay: 0.35s;
}

#servicesHeroContent p {
    animation-delay: 0.55s;
}

#servicesHeroActions {
    animation-delay: 0.75s;
}

#heroServiceBadges {
    animation-delay: 0.95s;
}

@keyframes servicesHeroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================= */
/* BACK TO SERVICES AT A GLANCE LINK                         */
/* ========================================================= */

.backToGlanceLink {
    width: fit-content;
    justify-self: end;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin-top: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;

    color: #005BFF;
    background: rgba(0, 91, 255, 0.07);
    border: 1px solid rgba(0, 91, 255, 0.12);

    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.backToGlanceLink:hover {
    transform: translateY(-2px);
    background: rgba(0, 91, 255, 0.10);
    border-color: rgba(0, 91, 255, 0.20);
    box-shadow: 0 0.75rem 1.75rem rgba(0, 91, 255, 0.12);
}

@media (max-width: 800px) {

    .backToGlanceLink {
        width: 100%;
        justify-self: stretch;

        min-height: 46px;

        margin-top: 0.95rem;
        border-radius: 14px;

        font-size: 0.9rem;
    }
}

/* Keep the Service Details heading and pricing copy in one column at every size. */
.sectionHeaderSplit {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.sectionHeaderSplit > * {
    grid-column: 1;
}
