/* ═══ Services page — premium layout ═══ */
.bn-services--premium {
    --svc-text: #12141f;
    --svc-text-muted: #5c5c70;
    --svc-surface: #ffffff;
    --svc-border: rgba(15, 20, 35, 0.08);
    --svc-shadow: 0 16px 48px rgba(15, 20, 35, 0.08);
}

.bn-services--premium .bn-page-section.bn-home-band--hero {
    --svc-text: #ffffff;
    --svc-text-muted: rgba(255, 255, 255, 0.62);
    --svc-surface: rgba(255, 255, 255, 0.06);
    --svc-border: rgba(255, 255, 255, 0.12);
    --svc-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}

.bn-services--premium .bn-svc-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

/* Section header */
.bn-svc-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 38rem;
}

.bn-svc-head--center {
    margin-inline: auto;
    text-align: center;
}

.bn-svc-head--center .bn-svc-head__lead {
    margin-inline: auto;
}

.bn-svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bn-primary);
}

.bn-svc-eyebrow__dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--bn-primary);
    box-shadow: 0 0 10px rgba(var(--bn-primary-rgb), 0.55);
}

.bn-svc-head__title {
    font-family: var(--bn-display);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--svc-text);
}

.bn-svc-head__title .bn-text-red {
    color: var(--bn-primary);
}

.bn-svc-head__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--svc-text-muted);
    margin: 0;
    max-width: 52ch;
}

/* Grid */
.bn-services--premium .bn-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.bn-svc-grid--featured {
    margin-top: 0;
}

/* Premium cards — fix contrast on light bands */
.bn-services--premium .bn-svc-card--premium {
    position: relative;
    background: var(--svc-surface);
    border: 1px solid var(--svc-border);
    border-radius: 1.15rem;
    box-shadow: 0 1px 2px rgba(15, 20, 35, 0.04);
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}

.bn-services--premium .bn-svc-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--svc-accent),
        color-mix(in srgb, var(--svc-accent) 60%, transparent)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.bn-services--premium .bn-svc-card--premium:hover .bn-svc-card__accent {
    transform: scaleX(1);
}

.bn-services--premium .bn-svc-card--premium:hover {
    transform: translateY(-10px);
    border-color: color-mix(in srgb, var(--svc-accent) 28%, var(--svc-border));
    box-shadow:
        0 4px 6px -1px rgba(var(--svc-accent-rgb), 0.06),
        0 24px 48px -12px rgba(var(--svc-accent-rgb), 0.2);
}

.bn-services--premium .bn-svc-card__visual {
    aspect-ratio: 16 / 9;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--svc-accent) 6%, #f4f5f8) 0%,
        #eef0f5 100%
    );
}

.bn-services--premium .bn-page-section.bn-home-band--hero .bn-svc-card__visual {
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--svc-accent) 12%, rgba(255, 255, 255, 0.04)) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.bn-services--premium .bn-svc-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.bn-services--premium .bn-svc-card__title {
    color: var(--svc-text);
    font-size: 1.25rem;
}

.bn-services--premium .bn-svc-card:hover .bn-svc-card__title {
    color: var(--svc-accent);
}

.bn-services--premium .bn-svc-card__text {
    color: var(--svc-text-muted);
}

.bn-services--premium .bn-svc-card__icon {
    background: #fff;
    border-color: color-mix(in srgb, var(--svc-accent) 22%, var(--svc-border));
}

.bn-services--premium .bn-page-section.bn-home-band--hero .bn-svc-card__icon {
    background: rgba(255, 255, 255, 0.95);
}

/* Why BESTNET — split intro + visual */
.bn-svc-section--why {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%) !important;
    padding: clamp(2.25rem, 4.5vw, 3.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.bn-svc-section--why .bn-container {
    max-width: min(1180px, 100%);
}

.bn-svc-why-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.bn-svc-why-head {
    max-width: 34rem;
}

.bn-svc-why-head__title {
    font-family: var(--bn-display);
    font-size: clamp(1.95rem, 3.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 0.85rem;
    color: #12141f;
}

.bn-svc-why-head__title .bn-text-red {
    color: var(--bn-primary);
}

.bn-svc-why-head__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: #5c5c70;
    max-width: 46ch;
}

.bn-svc-why-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(200px, 26vw, 300px);
}

.bn-svc-why-visual__figure {
    position: relative;
    margin: 0;
    width: min(100%, 400px);
    padding: 0.35rem;
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(var(--bn-primary-rgb), 0.12);
    box-shadow:
        0 16px 44px rgba(15, 20, 35, 0.1),
        0 0 48px rgba(var(--bn-primary-rgb), 0.08);
}

.bn-svc-why-visual__figure::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(155deg, rgba(var(--bn-primary-rgb), 0.35), rgba(255, 255, 255, 0.1) 45%, rgba(var(--bn-primary-rgb), 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bn-svc-why-visual__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
}

.bn-svc-why-globe {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 360px);
    padding: 0.25rem;
    opacity: 0.92;
}

.bn-svc-globe__svg {
    width: min(100%, 360px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(var(--bn-primary-rgb), 0.14));
}

.bn-svc-globe__svg--hero {
    animation: bn-svc-globe-float 6s ease-in-out infinite;
}

@keyframes bn-svc-globe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Pillars — premium cards */
.bn-svc-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 1.35vw, 1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.bn-svc-pillar {
    position: relative;
    min-height: 218px;
    padding: 1.35rem 1.15rem 3rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 20, 35, 0.07);
    box-shadow:
        0 2px 8px rgba(15, 20, 35, 0.04),
        0 14px 36px rgba(15, 20, 35, 0.07);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.bn-svc-pillar:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--bn-primary-rgb), 0.12);
    box-shadow:
        0 4px 12px rgba(15, 20, 35, 0.05),
        0 22px 52px rgba(15, 20, 35, 0.11);
}

.bn-svc-pillar__pattern {
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    pointer-events: none;
}

.bn-svc-pillar--dots .bn-svc-pillar__pattern {
    background-image: radial-gradient(circle, rgba(var(--bn-primary-rgb), 0.28) 1.2px, transparent 1.2px);
    background-size: 9px 9px;
    mask-image: linear-gradient(180deg, transparent 5%, #000 50%);
    -webkit-mask-image: linear-gradient(180deg, transparent 5%, #000 50%);
    opacity: 0.7;
}

.bn-svc-pillar--shield .bn-svc-pillar__pattern {
    background: radial-gradient(ellipse 60% 75% at 50% 88%, rgba(var(--bn-primary-rgb), 0.1), transparent 72%);
}

.bn-svc-pillar--shield .bn-svc-pillar__pattern::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 78px;
    height: 88px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 72' fill='none'%3E%3Cpath d='M32,4 L56,16 V36 C56,52 44,64 32,68 C20,64 8,52 8,36 V16 Z' stroke='%23e31e24' stroke-opacity='0.18' stroke-width='2' fill='%23e31e24' fill-opacity='0.06'/%3E%3Cpath d='M26,38 L30,42 L38,32' stroke='%23e31e24' stroke-opacity='0.2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.9;
}

.bn-svc-pillar--mesh .bn-svc-pillar__pattern {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(180deg, transparent 20%, rgba(var(--bn-primary-rgb), 0.15) 100%);
    background-size: 7px 7px, 100% 100%;
    opacity: 0.55;
}

.bn-svc-pillar--mesh .bn-svc-pillar__pattern::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.35), transparent);
    filter: blur(8px);
    opacity: 0.6;
}

.bn-svc-pillar--skyline .bn-svc-pillar__pattern {
    background: linear-gradient(180deg, transparent 25%, rgba(var(--bn-primary-rgb), 0.05) 100%);
}

.bn-svc-pillar--skyline .bn-svc-pillar__pattern::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' fill='%23e31e24' fill-opacity='0.14'%3E%3Crect x='10' y='18' width='16' height='22'/%3E%3Crect x='32' y='12' width='12' height='28'/%3E%3Crect x='50' y='20' width='18' height='20'/%3E%3Crect x='74' y='8' width='14' height='32'/%3E%3Crect x='94' y='16' width='20' height='24'/%3E%3Crect x='120' y='14' width='12' height='26'/%3E%3Crect x='138' y='20' width='16' height='20'/%3E%3Crect x='160' y='10' width='14' height='30'/%3E%3C/svg%3E") bottom center/100% auto no-repeat;
}

.bn-svc-pillar--featured {
    background:
        radial-gradient(ellipse 90% 70% at 85% 0%, rgba(var(--bn-primary-rgb), 0.55), transparent 55%),
        linear-gradient(165deg, #0a0a0f 0%, #141018 42%, #1e0c10 100%);
    border-color: rgba(var(--bn-primary-rgb), 0.5);
    box-shadow:
        0 0 0 1px rgba(var(--bn-primary-rgb), 0.25),
        0 0 48px rgba(var(--bn-primary-rgb), 0.28),
        0 24px 56px rgba(0, 0, 0, 0.35);
}

.bn-svc-pillar--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #ff6b6b 40%, #ff4d52 60%, transparent 90%);
    box-shadow: 0 0 20px rgba(var(--bn-primary-rgb), 0.9);
}

.bn-svc-pillar--featured .bn-svc-pillar__icon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.55);
    color: #fff;
    box-shadow:
        0 0 0 4px rgba(var(--bn-primary-rgb), 0.15),
        0 0 24px rgba(var(--bn-primary-rgb), 0.45);
}

.bn-svc-pillar--featured .bn-svc-pillar__title,
.bn-svc-pillar--featured .bn-svc-pillar__text {
    color: #fff;
}

.bn-svc-pillar--featured .bn-svc-pillar__text {
    opacity: 0.78;
}

.bn-svc-pillar--featured .bn-svc-pillar__arrow {
    background: var(--bn-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(var(--bn-primary-rgb), 0.45);
}

.bn-svc-pillar__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.95rem;
    border-radius: 50%;
    background: rgba(var(--bn-primary-rgb), 0.08);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.18);
    color: var(--bn-primary);
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px rgba(var(--bn-primary-rgb), 0.06);
}

.bn-svc-pillar__icon i {
    display: block;
    line-height: 1;
}

.bn-svc-pillar__title {
    position: relative;
    z-index: 1;
    font-family: var(--bn-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #12141f;
    letter-spacing: -0.02em;
}

.bn-svc-pillar__text {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    line-height: 1.65;
    margin: 0;
    color: #5c5c70;
}

.bn-svc-pillar__arrow {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 2;
    width: 2.15rem;
    height: 2.15rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(15, 20, 35, 0.08);
    color: var(--bn-primary);
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(15, 20, 35, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.bn-svc-pillar:hover .bn-svc-pillar__arrow {
    transform: translateX(4px);
    background: var(--bn-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(var(--bn-primary-rgb), 0.35);
}

/* Stats — dark bar */
.bn-svc-stats--dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: clamp(1.5rem, 2.8vw, 2rem) clamp(1rem, 2vw, 1.75rem);
    border-radius: 18px;
    background: linear-gradient(165deg, #0c0e16 0%, #06070c 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(var(--bn-primary-rgb), 0.14);
    position: relative;
    overflow: hidden;
}

.bn-svc-stats--dark::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bn-primary), transparent);
    box-shadow: 0 0 28px rgba(var(--bn-primary-rgb), 0.85);
    opacity: 0.95;
}

.bn-svc-stats--dark .bn-svc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.07);
}

.bn-svc-stats--dark .bn-svc-stat:last-child {
    border-inline-end: none;
}

.bn-svc-stat__icon {
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: 0.65rem;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--bn-primary-rgb), 0.55);
    background: rgba(var(--bn-primary-rgb), 0.1);
    color: var(--bn-primary);
    font-size: 1.05rem;
    box-shadow:
        0 0 0 3px rgba(var(--bn-primary-rgb), 0.08),
        0 0 20px rgba(var(--bn-primary-rgb), 0.25);
}

.bn-svc-stat__icon i {
    display: block;
    line-height: 1;
}

.bn-svc-stats--dark .bn-svc-stat__value {
    display: block;
    font-family: var(--bn-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.45rem;
}

.bn-svc-stats--dark .bn-svc-stat__label {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(var(--bn-primary-rgb), 0.55);
    min-width: 4.5rem;
}

/* Premium CTA band */
.bn-cta-band--premium {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    background: #f4f5f8;
}

.bn-cta-premium {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(155deg, #050608 0%, #0c0e16 48%, #140a0e 100%);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.45);
    box-shadow:
        0 0 0 1px rgba(var(--bn-primary-rgb), 0.12),
        0 0 56px rgba(var(--bn-primary-rgb), 0.2),
        0 32px 72px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 3.5vw, 2.75rem);
}

.bn-cta-premium__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bn-cta-premium__dots {
    position: absolute;
    width: 200px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(var(--bn-primary-rgb), 0.4) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    opacity: 0.5;
}

.bn-cta-premium__dots--tl {
    top: 0;
    left: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 0% 0%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 0% 0%, #000, transparent 70%);
}

.bn-cta-premium__dots--br {
    bottom: 0;
    right: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 100% 100%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 100% 100%, #000, transparent 70%);
}

.bn-cta-premium__flare {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--bn-primary) 45%, #ff6b6b 55%, transparent 95%);
    box-shadow: 0 0 32px rgba(var(--bn-primary-rgb), 0.95);
}

.bn-cta-premium__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bn-cta-premium__glow--br {
    right: -8%;
    bottom: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(var(--bn-primary-rgb), 0.18), transparent 68%);
}

.bn-cta-premium__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

.bn-cta-premium__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bn-cta-premium__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bn-primary);
}

.bn-cta-premium__eyebrow i {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(var(--bn-primary-rgb), 0.18);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.35);
    font-size: 0.8rem;
    box-shadow: 0 0 16px rgba(var(--bn-primary-rgb), 0.25);
}

.bn-cta-premium__title {
    font-family: var(--bn-display);
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 1.1rem;
    padding-bottom: 0.85rem;
    color: #fff;
    position: relative;
    max-width: 16ch;
}

.bn-cta-premium__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3.5rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--bn-primary), #ff6b6b);
    box-shadow: 0 0 14px rgba(var(--bn-primary-rgb), 0.85);
}

.bn-cta-premium__title .bn-text-red {
    color: var(--bn-primary);
}

.bn-cta-premium__text {
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 46ch;
}

.bn-cta-premium__aside {
    position: relative;
    min-height: clamp(240px, 28vw, 300px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bn-cta-premium__globe {
    position: absolute;
    inset: -5% -5% -5% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.bn-cta-premium__globe .bn-svc-globe__svg {
    width: min(100%, 340px);
    opacity: 0.92;
    filter: drop-shadow(0 0 28px rgba(var(--bn-primary-rgb), 0.35));
}

.bn-cta-premium__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
    margin-left: auto;
    width: min(100%, 240px);
}

.bn-cta-premium__btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
}

.bn-cta-premium__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-top: auto;
    padding-top: 0;
    border-top: none;
}

.bn-cta-premium__feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.bn-cta-premium__feature-icon {
    flex-shrink: 0;
    width: 2.15rem;
    height: 2.15rem;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(var(--bn-primary-rgb), 0.14);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.3);
    color: var(--bn-primary);
    font-size: 0.95rem;
    box-shadow: 0 0 14px rgba(var(--bn-primary-rgb), 0.15);
}

.bn-cta-premium__feature-icon i {
    display: block;
    line-height: 1;
}

.bn-cta-premium__feature-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    max-width: 9ch;
}

/* Responsive */
@media (max-width: 1100px) {
    .bn-services--premium .bn-svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bn-svc-why-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.15rem;
    }

    .bn-svc-why-visual {
        order: -1;
        min-height: 180px;
    }

    .bn-svc-why-visual__figure {
        width: min(100%, 320px);
    }

    .bn-svc-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .bn-svc-stats--dark {
        grid-template-columns: repeat(2, 1fr);
    }

    .bn-svc-stats--dark .bn-svc-stat:nth-child(2) {
        border-inline-end: none;
    }

    .bn-cta-premium__grid {
        grid-template-columns: 1fr;
    }

    .bn-cta-premium__actions {
        margin-inline: auto;
        max-width: 100%;
    }

    .bn-cta-premium__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bn-cta-premium__feature-text {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .bn-services--premium .bn-svc-grid {
        grid-template-columns: 1fr;
    }

    .bn-svc-pillars {
        grid-template-columns: 1fr;
    }

    .bn-svc-stats--dark {
        grid-template-columns: 1fr 1fr;
    }

    .bn-svc-stats--dark .bn-svc-stat {
        border-inline-end: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1rem;
    }

    .bn-svc-stats--dark .bn-svc-stat:nth-child(odd) {
        border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bn-svc-stats--dark .bn-svc-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .bn-cta-premium__features {
        grid-template-columns: 1fr;
    }

    .bn-services--premium .bn-svc-card__body {
        padding: 1.15rem 1.25rem 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bn-services--premium .bn-svc-card--premium,
    .bn-svc-pillar {
        transition: none;
    }

    .bn-svc-pillar:hover,
    .bn-cta-premium:hover {
        transform: none;
    }

    .bn-svc-globe__svg--hero {
        animation: none;
    }
}
