:root {
    --primary: #006fb7;
    --primary-dark: #004f86;
    --primary-soft: #e6f5fc;
    --ink: #162235;
    --text: #334155;
    --muted: #6b7280;
    --line: #dce7f1;
    --panel: #f3f8fb;
    --white: #ffffff;
    --accent: #a7a9ac;
    --success: #07877b;
    --warning: #f3a02d;
    --shadow: 0 22px 60px rgba(20, 31, 48, 0.14);
    --radius: 8px;
    --header-height: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(221, 229, 238, 0.85);
    box-shadow: 0 10px 35px rgba(29, 40, 56, 0.08);
    backdrop-filter: blur(16px);
}

.top-bar {
    color: var(--white);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), #0a8ac4);
    font-size: 0.86rem;
    font-weight: 600;
}

.top-bar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.navbar__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    min-width: 230px;
    align-items: center;
    text-decoration: none;
}

.brand__logo {
    width: auto;
    height: 58px;
    max-width: 300px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 4px;
    padding: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 740px;
    margin-top: var(--header-height);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 25, 43, 0.94), rgba(0, 97, 160, 0.82) 48%, rgba(8, 19, 33, 0.46)),
        linear-gradient(180deg, rgba(8, 19, 33, 0.1), rgba(8, 19, 33, 0.68)),
        url("https://images.unsplash.com/photo-1556911220-bff31c812dba?q=80&w=2400&auto=format&fit=crop") center / cover;
    transform: scale(1.03);
}

.hero__content {
    position: relative;
    z-index: 1;
    min-height: 740px;
    padding-block: 86px 112px;
}

.hero__layout {
    display: grid;
    min-height: 542px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 44px;
    align-items: center;
}

.hero__copy {
    max-width: 900px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #c8d3dd;
}

.hero h1,
.section-heading h2,
.split__content h2,
.cta h2,
.contact__details h2 {
    max-width: 860px;
    margin: 0;
    color: inherit;
    font-family: "Work Sans", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(2.45rem, 3.8vw, 3.65rem);
}

.hero h1 span {
    display: block;
    white-space: nowrap;
}

.hero__lead {
    max-width: 730px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn--primary {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn--light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.btn--light:hover,
.btn--light:focus-visible {
    color: var(--white);
    background: transparent;
}

.btn--outline {
    color: var(--primary);
    background: transparent;
    border-color: rgba(0, 111, 183, 0.32);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.hero__stats {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 56px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
}

.hero__stats div {
    padding: 18px 20px;
    background: rgba(4, 21, 34, 0.34);
    backdrop-filter: blur(12px);
}

.hero__stats dt {
    color: var(--white);
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
}

.hero__stats dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero__panel {
    position: relative;
    overflow: hidden;
    padding: 32px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero__panel::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--success), var(--warning));
}

.hero__panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero__panel-kicker::before {
    width: 9px;
    height: 9px;
    content: "";
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(7, 135, 123, 0.12);
}

.hero__panel h2 {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: 1.46rem;
    line-height: 1.24;
}

.hero__panel ul {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.hero__panel li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-weight: 600;
}

.hero__panel li::before {
    position: absolute;
    top: 0.34em;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    color: var(--white);
    content: "\2713";
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.72rem;
    line-height: 1;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__grid div {
    min-height: 104px;
    padding: 24px 22px;
    border-left: 1px solid var(--line);
}

.trust-strip__grid div:last-child {
    border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.trust-strip span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding-block: 92px;
}

.services {
    background: var(--panel);
}

.section-heading {
    width: min(100%, 760px);
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading h2,
.split__content h2,
.contact__details h2,
.why__content h2,
.callback-panel__copy h2,
.brands__header h2 {
    color: var(--ink);
    font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.section-heading p:not(.eyebrow),
.split__content p,
.contact__details p,
.why__content p,
.callback-panel__copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.solutions {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.9fr;
    gap: 22px;
}

.solution-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(20, 31, 48, 0.08);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.solution-card::after {
    position: absolute;
    right: -48px;
    bottom: -58px;
    width: 165px;
    height: 165px;
    content: "";
    background: rgba(0, 111, 183, 0.08);
    border-radius: 50%;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.solution-card:hover,
.solution-card:focus-within {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 24px 58px rgba(0, 111, 183, 0.24);
    transform: translateY(-6px);
}

.solution-card:hover::after,
.solution-card:focus-within::after {
    background: rgba(255, 255, 255, 0.13);
    transform: scale(1.12);
}

.solution-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.solution-card:hover .solution-card__icon,
.solution-card:focus-within .solution-card__icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.solution-card__icon svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.solution-card .eyebrow {
    margin-top: 28px;
}

.solution-card:hover .eyebrow,
.solution-card:focus-within .eyebrow,
.solution-card:hover p,
.solution-card:focus-within p,
.solution-card:hover strong,
.solution-card:focus-within strong {
    color: rgba(255, 255, 255, 0.88);
}

.solution-card h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: inherit;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.08;
    transition: color 0.25s ease;
}

.solution-card p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--muted);
    transition: color 0.25s ease;
}

.solution-card:hover p:not(.eyebrow),
.solution-card:focus-within p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
}

.solution-card strong {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 24px;
    padding: 12px 14px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(0, 111, 183, 0.15);
    border-radius: var(--radius);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.solution-card:hover strong,
.solution-card:focus-within strong {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.why {
    background: var(--white);
}

.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 58px;
    align-items: center;
}

.services-list {
    margin-top: 32px;
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.services-list h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 1.25rem;
}

.services-list ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-weight: 600;
}

.services-list li::before {
    position: absolute;
    top: 0.22em;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--white);
    content: "\2713";
    background: var(--success);
    border-radius: 50%;
    font-size: 0.72rem;
}

.why__image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.why__image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
    padding: 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow: 0 18px 38px rgba(20, 31, 48, 0.16);
    backdrop-filter: blur(14px);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    color: var(--primary);
    font-size: 1.35rem;
}

.image-badge span {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 600;
}

.metrics {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(22, 34, 53, 0.96), rgba(0, 79, 134, 0.94)),
        url("https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?q=80&w=2200&auto=format&fit=crop") center / cover;
}

.metrics .section-heading h2,
.metrics .eyebrow {
    color: var(--white);
}

.metrics .section-heading {
    width: min(100%, 920px);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    min-height: 230px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.metric-card strong {
    display: block;
    color: var(--white);
    font-size: clamp(2.7rem, 4.4vw, 4.4rem);
    font-weight: 800;
    line-height: 1;
}

.metric-card h3 {
    margin: 22px 0 8px;
    color: var(--white);
    font-size: 1.06rem;
    line-height: 1.25;
}

.metric-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.business {
    background: var(--panel);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.business-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(20, 31, 48, 0.08);
}

.business-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.business-card div {
    padding: 28px;
}

.business-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.28rem;
    line-height: 1.28;
}

.business-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.brands {
    padding-block: 70px;
    overflow: hidden;
    background: var(--white);
}

.brands__header {
    margin-bottom: 28px;
}

.brands__header h2 {
    margin: 0;
}

.brand-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 88%, var(--white));
}

.brand-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 22px 16px;
    animation: brand-scroll 34s linear infinite;
}

.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

.brand-track span {
    display: inline-flex;
    min-width: 168px;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(20, 31, 48, 0.07);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-track img {
    width: 118px;
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
    filter: saturate(0.95) contrast(1.04);
}

.brand-name {
    color: var(--ink);
    letter-spacing: 0.03em;
}

@keyframes brand-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.callback-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 46px;
    align-items: center;
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* Google Reviews Section */
.google-reviews {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(22, 34, 53, 0.96), rgba(0, 79, 134, 0.94)),
        url("https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?q=80&w=2200&auto=format&fit=crop") center / cover;
}

.google-reviews__summary {
    width: min(100%, 920px);
    margin: 0 auto 44px;
    text-align: center;
}

.google-reviews .eyebrow,
.google-reviews__summary h2 {
    color: var(--white);
}

.google-reviews__summary h2 {
    margin: 0;
    font-size: clamp(2.45rem, 4.8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
}

.google-reviews__summary p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.google-reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.google-reviews__rating strong {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.google-reviews__stars {
    color: #fbbc04;
    font-size: 1.45rem;
    line-height: 1;
    letter-spacing: 2px;
}

.google-reviews__rating span:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.review-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.review-marquee::before,
.review-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 90px;
    content: "";
    pointer-events: none;
}

.review-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(22, 34, 53, 0.96), rgba(22, 34, 53, 0));
}

.review-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 79, 134, 0.96), rgba(0, 79, 134, 0));
}

.review-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: review-scroll 58s linear infinite;
}

.review-marquee:hover .review-track {
    animation-play-state: paused;
}

.review-card {
    width: 340px;
    min-height: 310px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
}

.review-card__top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 42px;
}

.review-card__top::after {
    position: absolute;
    left: 56px;
    bottom: -26px;
    content: "★★★★★";
    color: #fbbc04;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 2px;
}

.review-card__avatar {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    font-weight: 800;
}

.review-card__top strong,
.review-card__top span {
    display: block;
}

.review-card__top strong {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.25;
}

.review-card__top span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    font-weight: 600;
}

.review-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.7;
}

.google-reviews__action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

@keyframes review-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    min-height: 100%;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 5px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(36, 46, 62, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    border-top-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 8px;
}

.service-card__icon svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.service-card h3 {
    margin: 24px 0 10px;
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.94rem;
}

.service-card li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--warning);
    border-radius: 50%;
}

.split {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
        url("https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?q=80&w=2200&auto=format&fit=crop") center / cover;
}

.split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    gap: 58px;
    align-items: center;
}

.split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.capability-panel {
    padding: 34px;
    color: var(--white);
    background: linear-gradient(150deg, var(--ink), #314258);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.capability-panel h3 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 1.35rem;
}

.capability-panel ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-panel li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.86);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-panel span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    background: rgba(0, 111, 183, 0.55);
    border-radius: 8px;
}

.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.process-grid article {
    position: relative;
    min-height: 238px;
    padding: 28px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.process-grid span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 800;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.process-grid h3 {
    margin: 24px 0 10px;
    color: var(--ink);
    font-size: 1.25rem;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.cta {
    color: var(--white);
    background: linear-gradient(100deg, var(--primary-dark), var(--primary) 58%, var(--success));
}

.cta__inner {
    display: flex;
    min-height: 214px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-block: 42px;
}

.cta .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2.25rem, 4.3vw, 4rem);
}

.contact {
    background: var(--panel);
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
    gap: 46px;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-cards a,
.contact-cards div {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.contact-cards span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-cards strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(36, 46, 62, 0.08);
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.form-row label span {
    color: var(--muted);
    font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cfd8e3;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
    min-height: 134px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 111, 183, 0.12);
}

.footer {
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 111, 183, 0.32), transparent 30%),
        linear-gradient(135deg, #101827, #1f2532 62%, #122f47);
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(210px, auto);
    gap: 42px;
    align-items: start;
    padding-block: 46px;
}

.footer__brand {
    display: grid;
    gap: 18px;
}

/* .footer__logo-shell {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 16px 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(2, 10, 19, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
} */

.footer__logo-shell {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.89);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

/* .footer__logo {
    width: min(290px, 100%);
    height: auto;
    object-fit: contain;
    opacity: 0.82;
    filter: none;
} */

/* .footer__logo {
    width: min(290px, 100%);
    height: auto;
    object-fit: contain;
    opacity: 0.90;
    filter: none;
} */

.footer__logo {
    width: min(290px, 100%);
    height: auto;
    object-fit: contain;
    opacity: 0.90;
    filter: none;
    border-radius: var(--radius);
}

.footer__contact a,
.footer__contact>span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer__contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
    opacity: 0.85;
}


.footer p {
    max-width: 390px;
    margin: 0;
}

.footer nav,
.footer__contact {
    display: grid;
    gap: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer__bottom {
    padding: 18px 0 22px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--white);
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(15, 143, 122, 0.36);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call:hover,
.floating-call:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 143, 122, 0.42);
}

.floating-call svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

@media (max-width: 980px) {
    :root {
        --header-height: 96px;
    }

    .top-bar__inner {
        justify-content: center;
    }

    .top-bar__inner span {
        display: none;
    }

    .navbar__inner {
        min-height: 58px;
    }

    .brand__logo {
        height: 46px;
        max-width: 245px;
    }

    .nav-toggle {
        display: grid;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 10px 20px 20px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(20, 31, 48, 0.16);
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform 0.22s ease, visibility 0.22s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-links a::after {
        display: none;
    }

    .hero,
    .hero__content {
        min-height: 660px;
    }

    .hero__layout {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero__panel {
        max-width: 620px;
    }

    .solution-grid,
    .service-grid,
    .process-grid,
    .trust-strip__grid,
    .metric-grid,
    .business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split__grid,
    .contact__grid,
    .why__grid,
    .callback-panel {
        grid-template-columns: 1fr;
    }

    .capability-panel,
    .services-list,
    .callback-panel,
    .contact-form {
        padding: 28px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .review-card {
        width: 320px;
    }

    .review-marquee::before,
    .review-marquee::after {
        width: 48px;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 92px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .top-bar {
        font-size: 0.78rem;
    }

    .top-bar__inner {
        min-height: 34px;
        gap: 12px;
    }

    .top-bar a:last-of-type {
        display: none;
    }

    .brand {
        min-width: 0;
    }

    .brand__logo {
        height: 42px;
        max-width: 210px;
    }

    .hero,
    .hero__content {
        min-height: 620px;
    }

    .hero__content {
        padding-block: 58px 76px;
    }

    .hero__layout {
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.85rem);
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions,
    .split__actions {
        display: grid;
    }

    .btn {
        width: 100%;
        padding-inline: 18px;
    }

    .hero__stats,
    .solution-grid,
    .service-grid,
    .process-grid,
    .trust-strip__grid,
    .metric-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        margin-top: 38px;
    }

    .trust-strip__grid div,
    .trust-strip__grid div:last-child {
        min-height: auto;
        padding: 18px 0;
        border-right: 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .section {
        padding-block: 66px;
    }

    .section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .section-heading h2,
    .split__content h2,
    .contact__details h2,
    .why__content h2,
    .callback-panel__copy h2,
    .brands__header h2,
    .cta h2 {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .service-card,
    .solution-card,
    .services-list,
    .capability-panel,
    .hero__panel,
    .callback-panel,
    .contact-form,
    .process-grid article {
        padding: 24px;
    }

    .why__image-wrap,
    .why__image {
        min-height: 360px;
    }

    .brand-track span {
        min-width: 140px;
        min-height: 58px;
        font-size: 0.9rem;
    }

    .capability-panel li {
        grid-template-columns: 38px 1fr;
    }

    .cta__inner {
        display: grid;
        min-height: 0;
    }

    .contact__grid {
        gap: 32px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .floating-call {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .google-reviews__summary {
        text-align: left;
    }

    .google-reviews__summary h2 {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .google-reviews__summary p:not(.eyebrow) {
        margin-inline: 0;
    }

    .google-reviews__rating {
        display: grid;
        width: 100%;
        justify-items: start;
        gap: 8px;
    }

    .review-card {
        width: 290px;
        min-height: 310px;
        padding: 24px;
    }

    .review-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
}

    .review-marquee::before,
    .review-marquee::after {
    display: none;
    }

    .review-track {
    width: auto;
    animation: none;
    padding-inline: 0 18px;
    }

    .review-card {
    width: min(84vw, 320px);
    min-height: 310px;
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
    padding: 24px;
    }

    .review-marquee::-webkit-scrollbar {
    height: 6px;
    }

    .review-marquee::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    }

    .review-marquee::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    }

}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
