/* Home / area “Boost your business” intro — brand-aligned */
.agency-boost {
    --ab-heading: #0A3D62;
    --ab-accent: #1a7bb8;
    --ab-muted: #5a738a;
    --ab-border: rgba(10, 61, 98, 0.1);
    --ab-surface: #ffffff;
    --ab-surface-alt: #f5f8fb;
    position: relative;
    padding: clamp(48px, 6vw, 80px) 0;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(26, 123, 184, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(10, 61, 98, 0.06), transparent 50%),
        var(--ab-surface-alt);
    overflow: hidden;
}

.agency-boost__inner {
    position: relative;
    z-index: 1;
}

.agency-boost__top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    gap: 20px;
    align-items: stretch;
    margin: 0 0 28px;
}

.agency-boost__header {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agency-boost__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ab-accent);
    margin: 0 0 10px;
}

.agency-boost__title {
    font-size: clamp(1.45rem, 2.8vw, 2rem) !important;
    font-weight: 700 !important;
    color: var(--ab-heading) !important;
    line-height: 1.25 !important;
    margin: 0 0 14px !important;
    position: relative;
    padding-left: 14px;
}

.agency-boost__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.22em;
    bottom: 0.22em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--ab-accent), var(--ab-heading));
}

.agency-boost__lead {
    margin: 0;
    color: var(--ab-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.agency-boost__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 22px;
}

.agency-boost__card {
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 6px 18px rgba(10, 61, 98, 0.04);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.agency-boost__card:hover {
    border-color: rgba(26, 123, 184, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 61, 98, 0.08);
}

.agency-boost__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0 12px;
    border-radius: 10px;
    background: rgba(26, 123, 184, 0.1);
    color: var(--ab-accent);
}

.agency-boost__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.agency-boost__card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ab-heading);
    margin: 0 0 8px;
    line-height: 1.35;
}

.agency-boost__card-text {
    margin: 0;
    color: var(--ab-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.agency-boost__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
    gap: 0;
    align-items: stretch;
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(10, 61, 98, 0.06);
}

.agency-boost__panel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 26px;
}

.agency-boost__panel-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ab-accent);
}

.agency-boost__panel-title {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--ab-heading);
    line-height: 1.3;
}

.agency-boost__panel-text {
    margin: 0;
    color: var(--ab-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.agency-boost__checks {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.agency-boost__checks li {
    position: relative;
    padding: 0 0 0 26px;
    color: var(--ab-heading);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}

.agency-boost__checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(26, 123, 184, 0.12);
    box-shadow: inset 0 0 0 1px rgba(26, 123, 184, 0.28);
}

.agency-boost__checks li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.45em;
    width: 6px;
    height: 3.5px;
    border-left: 1.75px solid var(--ab-accent);
    border-bottom: 1.75px solid var(--ab-accent);
    transform: rotate(-45deg);
}

.agency-boost__panel-foot {
    margin: 4px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--ab-border);
    color: var(--ab-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.agency-boost__aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 14px;
    background: linear-gradient(165deg, #0A3D62 0%, #124e78 48%, #1a7bb8 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(10, 61, 98, 0.12);
    min-height: 100%;
}

.agency-boost__aside--top {
    justify-content: center;
}

.agency-boost__aside-top {
    display: grid;
    gap: 10px;
}

.agency-boost__aside-label,
.agency-boost__aside-text,
.agency-boost__aside-meta,
.agency-boost__aside p,
.agency-boost__aside li {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.agency-boost__aside-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.82;
}

.agency-boost__aside-text {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.45;
}

.agency-boost__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agency-boost__chips li {
    margin: 0;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
}

.agency-boost__aside-meta {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Core services panel (blue) */
.agency-boost__services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 22px;
    background: linear-gradient(165deg, #0A3D62 0%, #124e78 48%, #1a7bb8 100%);
    color: #ffffff !important;
    min-height: 100%;
}

.agency-boost__services-kicker,
.agency-boost__services-title,
.agency-boost__services a,
.agency-boost__services p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.agency-boost__services-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.82;
}

.agency-boost__services-title {
    margin: 0 0 4px;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    line-height: 1.35;
}

.agency-boost__services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.agency-boost__services-list li {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.agency-boost__services-list li:first-child {
    border-top: none;
}

.agency-boost__services-list a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.92;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.agency-boost__services-list a:hover,
.agency-boost__services-list a:focus-visible {
    opacity: 1;
    padding-left: 4px;
    outline: none;
}

.agency-boost__services-chevron {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .agency-boost__services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .agency-boost__services-list li {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .agency-boost__services-list li:nth-child(-n+2) {
        border-top: none;
    }
}

@media (max-width: 991.98px) {
    .agency-boost__top {
        grid-template-columns: 1fr;
    }

    .agency-boost__grid {
        grid-template-columns: 1fr;
    }

    .agency-boost__panel {
        grid-template-columns: 1fr;
    }

    .agency-boost__aside {
        min-height: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .agency-boost__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .agency-boost__card,
    .agency-boost__services-list a {
        transition: none;
    }

    .agency-boost__card:hover {
        transform: none;
    }

    .agency-boost__services-list a:hover,
    .agency-boost__services-list a:focus-visible {
        padding-left: 0;
    }
}
