/* ════════════════════════════════════════════════════════════
   AXIOS ENHANCE  —  Premium visual layer for axiosdev.com.br
   Builds on top of the Bringer template without touching core.
   ════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────
   0. GLOBAL POLISH
   ──────────────────────────────────────────────── */

/* Custom scrollbar */
::-webkit-scrollbar              { width: 5px; height: 5px; }
::-webkit-scrollbar-track        { background: #07090D; }
::-webkit-scrollbar-thumb        { background: rgba(68,129,235,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: rgba(5,190,254,0.65); }

/* Selection */
::selection { background: rgba(5,190,254,0.22); color: #F5F7FA; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ── Utility: gradient text ── */
.axios-gradient-text {
    background: linear-gradient(120deg, #05BEFE 0%, #4481EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: axios-text-pan 4s linear infinite alternate;
}

@keyframes axios-text-pan {
    0%   { background-position: 0% center; }
    100% { background-position: 100% center; }
}

/* ── Button shimmer ── */
.bringer-button {
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.bringer-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255,255,255,0.12) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0s;
    z-index: 1;
}

.bringer-button:hover::before {
    transform: translateX(100%);
    transition: transform 0.55s ease;
}

/* ── Bringer label — enhanced ── */
.bringer-label {
    letter-spacing: 0.14em;
}


/* ────────────────────────────────────────────────
   1. HERO SECTION
   ──────────────────────────────────────────────── */

/* Ambient glow on the hero — no visible rectangle */
.bringer-hero-type01 {
    position: relative;
}

.bringer-hero-type01::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 420px;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(5,190,254,0.09) 0%,
        rgba(68,129,235,0.05) 45%,
        transparent 75%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(18px);
}

.bringer-hero-type01 > * { position: relative; z-index: 1; }

/* Hero section top padding — clears the absolute-positioned header */
.axios-hero-section {
    padding-top: 32px !important;
}

/* H1 sizing boost */
.bringer-hero-type01 h1.bringer-page-title {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

/* ── Word cycling animation for the gradient word in the hero h1 ── */
#axios-word-cycle {
    display: inline-block;
    transition:
        opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

#axios-word-cycle.awc-out {
    opacity: 0;
    transform: translateY(-14px) scale(0.95);
}

#axios-word-cycle.awc-in {
    opacity: 0;
    transform: translateY(14px) scale(0.95);
    transition: none;
}

/* Hero counters — gradient number */
.bringer-small-counter .bringer-counter-number {
    background: linear-gradient(135deg, #05BEFE, #4481EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero image: clip to rounded shape + subtle glow */
.bringer-hero-media-wrap {
    position: relative;
    filter: drop-shadow(0 20px 60px rgba(5,190,254,0.07));
    overflow: visible !important;
}

/* Inner image container — force border-radius and clip overflow */
.bringer-hero-media-wrap .bringer-masked-media {
    border-radius: var(--bringer-large-br, 24px) !important;
    overflow: hidden !important;
}

.bringer-hero-media-wrap .bringer-masked-media img {
    border-radius: var(--bringer-large-br, 24px) !important;
}

/* Arrow button always on top of the hero image */
.bringer-hero-media-wrap .bringer-masked-content {
    z-index: 10;
    position: absolute;
}

/* Social proof images */
.bringer-hero-social-proof img {
    border: 2px solid rgba(68,129,235,0.25);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.bringer-hero-social-proof img:hover {
    border-color: rgba(5,190,254,0.55);
    transform: scale(1.08);
}

/* Arrow scroll button */
.bringer-square-button {
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease !important;
}

.bringer-square-button:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 0 28px rgba(5,190,254,0.3) !important;
}


/* ────────────────────────────────────────────────
   2. PORTFOLIO CARDS — Hover reveal & glow
   ──────────────────────────────────────────────── */

.bringer-portfolio-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.16,1,0.3,1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
    will-change: transform;
    isolation: isolate;
}

/* Animated gradient border on hover via pseudo-element */
.bringer-portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(5,190,254,0), rgba(5,190,254,0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    transition: background 0.45s ease;
}

.bringer-portfolio-card:hover::before {
    background: linear-gradient(135deg, rgba(5,190,254,0.55), rgba(68,129,235,0.25), rgba(5,190,254,0.45));
}

.bringer-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 72px rgba(0,0,0,0.65),
        0 0 60px rgba(5,190,254,0.07);
}

/* Image container */
.bringer-portfolio-card-image {
    overflow: hidden;
    position: relative;
}

.bringer-portfolio-card-image img {
    transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    will-change: transform;
}

.bringer-portfolio-card:hover .bringer-portfolio-card-image img {
    transform: scale(1.07) !important;
}

/* Overlay: gradient scrim with centered arrow icon */
.bringer-portfolio-card-image::after {
    content: '↗';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,190,254,0.06) 0%,
        rgba(7,9,13,0.55) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    color: rgba(245,247,250,0.9);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    backdrop-filter: blur(0px);
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.bringer-portfolio-card:hover .bringer-portfolio-card-image::after {
    opacity: 1;
    backdrop-filter: blur(1px);
}

/* Footer gradient accent on hover */
.bringer-portfolio-card-footer {
    position: relative;
    transition: background 0.4s ease;
}

.bringer-portfolio-card:hover .bringer-portfolio-card-footer {
    background: rgba(5,190,254,0.04);
}

.bringer-portfolio-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #05BEFE, #4481EB, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.bringer-portfolio-card:hover .bringer-portfolio-card-footer::before {
    transform: scaleX(1);
}

/* Explore icon spin on hover */
.bringer-portfolio-card .bringer-icon-explore {
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
}

.bringer-portfolio-card:hover .bringer-icon-explore {
    transform: rotate(45deg);
    color: #05BEFE;
}


/* ────────────────────────────────────────────────
   3. TECH STACK MARQUEE  (new section)
   ──────────────────────────────────────────────── */

.axios-tech-section {
    padding: 56px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245,247,250,0.04);
    border-bottom: 1px solid rgba(245,247,250,0.04);
    position: relative;
}

.axios-tech-section-label {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,247,250,0.3);
    margin-bottom: 28px;
}

/* Fade edges */
.axios-marquee-outer {
    position: relative;
    overflow: hidden;
}

.axios-marquee-outer::before,
.axios-marquee-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.axios-marquee-outer::before {
    left: 0;
    background: linear-gradient(to right, #07090D, transparent);
}

.axios-marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, #07090D, transparent);
}

.axios-marquee-track {
    display: flex;
    width: max-content;
    animation: axios-marquee-scroll 30s linear infinite;
}

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

@keyframes axios-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.axios-marquee-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
    flex-shrink: 0;
}

.axios-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(26,29,36,0.7);
    border: 1px solid rgba(245,247,250,0.07);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: rgba(245,247,250,0.6);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.axios-tech-badge:hover {
    border-color: rgba(5,190,254,0.3);
    color: #F5F7FA;
    background: rgba(5,190,254,0.06);
}

.axios-tech-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #05BEFE, #4481EB);
    flex-shrink: 0;
}


/* ────────────────────────────────────────────────
   4. SERVICES LIST — Enhanced interactions
   ──────────────────────────────────────────────── */

/* CSS counter for auto-numbering */
.bringer-detailed-list {
    counter-reset: service-counter;
}

.bringer-detailed-list li {
    counter-increment: service-counter;
    position: relative;
    transition: background 0.3s ease;
}

/* Left accent line */
.bringer-detailed-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #05BEFE, #4481EB);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    border-radius: 0 0 2px 2px;
}

.bringer-detailed-list li:hover::before {
    transform: scaleY(1);
}

/* Service number */
.bringer-detailed-list-title {
    position: relative;
}

.bringer-detailed-list-title::before {
    content: '0' counter(service-counter);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(68,129,235,0.35);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

/* Gradient accent dot on hover */
.bringer-detailed-list li:hover h4 .bringer-accent {
    background: linear-gradient(135deg, #05BEFE, #4481EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Explore icon animation */
.bringer-detailed-list .bringer-icon-explore {
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
}

.bringer-detailed-list li:hover .bringer-icon-explore {
    transform: rotate(45deg) scale(1.1);
    color: #05BEFE;
}

/* Row background on hover */
.bringer-detailed-list li:hover {
    background: rgba(5,190,254,0.02);
}

/* Description reveal — expand smoothly */
.bringer-detailed-list-description {
    transition: color 0.3s ease;
}

.bringer-detailed-list li:hover .bringer-detailed-list-description p {
    color: rgba(245,247,250,0.85);
}


/* ────────────────────────────────────────────────
   5. CTA SECTION — Email input + WhatsApp
   ──────────────────────────────────────────────── */

/* Email input animated border */
.bringer-contact-form input[type="email"],
.bringer-contact-form input[type="text"] {
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    outline: none;
}

.bringer-contact-form input[type="email"]:focus,
.bringer-contact-form input[type="text"]:focus {
    border-color: rgba(5,190,254,0.5) !important;
    box-shadow:
        0 0 0 3px rgba(5,190,254,0.1),
        0 0 20px rgba(5,190,254,0.08);
    background: rgba(7,9,13,0.95) !important;
}

/* WA button — green glow + shine */
.axios-btn-wa {
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}

.axios-btn-wa::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
    transition: left 0s;
    pointer-events: none;
}

.axios-btn-wa:hover {
    box-shadow: 0 8px 32px rgba(37,211,102,0.3) !important;
    transform: translateY(-2px) !important;
}

.axios-btn-wa:hover::after {
    left: 150%;
    transition: left 0.5s ease;
}

/* Submit button glow */
.axios-btn-submit-d,
.axios-btn-submit-m {
    transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1) !important;
}

.axios-btn-submit-d:hover,
.axios-btn-submit-m:hover {
    box-shadow: 0 0 24px rgba(5,190,254,0.4) !important;
    transform: scale(1.06) !important;
}

/* CTA container glow animation */
.bringer-masked-cta {
    position: relative;
}

.bringer-masked-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(5,190,254,0.15) 0%,
        rgba(68,129,235,0.05) 50%,
        rgba(5,190,254,0.12) 100%
    );
    background-size: 200% 200%;
    animation: axios-cta-glow 6s ease infinite;
    z-index: -1;
    pointer-events: none;
    filter: blur(2px);
}

@keyframes axios-cta-glow {
    0%   { background-position: 0% 50%; opacity: 0.6; }
    50%  { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.6; }
}


/* ────────────────────────────────────────────────
   6. ICON BOXES (values / pillars)
   ──────────────────────────────────────────────── */

.bringer-icon-box {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.16,1,0.3,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease !important;
    will-change: transform;
}

.bringer-icon-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 48px rgba(0,0,0,0.4),
        0 0 0 1px rgba(5,190,254,0.15) !important;
}

/* Corner shimmer on icon boxes */
.bringer-icon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(5,190,254,0.5), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.bringer-icon-box:hover::after {
    transform: scaleX(1);
}

.bringer-box-icon i {
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.bringer-icon-box:hover .bringer-box-icon i {
    color: #05BEFE;
    transform: scale(1.12);
}


/* ────────────────────────────────────────────────
   7. SECTION TITLES — Gradient accent
   ──────────────────────────────────────────────── */

/* Section heading underline */
.bringer-section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #05BEFE, #4481EB);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* bringer-accent dots get gradient */
.bringer-accent {
    background: linear-gradient(135deg, #05BEFE, #4481EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ────────────────────────────────────────────────
   8. BENTO / GRID CTA
   ──────────────────────────────────────────────── */

.bringer-bento-grid .is-large .bringer-grid-cta-heading {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.15;
}

.bringer-bento-grid .is-medium {
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.bringer-bento-grid .is-medium:hover {
    background: rgba(5,190,254,0.04);
    box-shadow: inset 0 0 0 1px rgba(5,190,254,0.15);
}

.bringer-bento-grid .is-small a.bringer-square-button {
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.bringer-bento-grid .is-small a.bringer-square-button:hover {
    box-shadow: 0 0 32px rgba(5,190,254,0.35);
    transform: scale(1.06);
}


/* ────────────────────────────────────────────────
   9. FLOATING WHATSAPP BUTTON
   ──────────────────────────────────────────────── */

.axios-float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(37,211,102,0.45),
        0 2px 6px rgba(0,0,0,0.3);
    transition:
        transform 0.35s cubic-bezier(0.16,1,0.3,1),
        box-shadow 0.35s ease,
        opacity 0.4s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    text-decoration: none;
    will-change: transform, opacity;
}

.axios-float-wa.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.axios-float-wa:hover {
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow:
        0 8px 32px rgba(37,211,102,0.55),
        0 4px 12px rgba(0,0,0,0.35);
}

.axios-float-wa svg {
    fill: #fff;
    width: 26px;
    height: 26px;
    display: block;
    flex-shrink: 0;
}

/* Pulse ring */
.axios-float-wa::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: axios-wa-pulse 2.5s ease-out infinite;
}

@keyframes axios-wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile: smaller, doesn't overlap content */
@media (max-width: 760px) {
    .axios-float-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}


/* ────────────────────────────────────────────────
   10. ICON LINKS (bringer-icon-link)
   ──────────────────────────────────────────────── */

.bringer-icon-link {
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.bringer-icon-link:hover {
    transform: translateX(5px);
}

.bringer-icon-link .bringer-icon-wrap {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.bringer-icon-link:hover .bringer-icon-wrap {
    box-shadow: 0 0 20px rgba(5,190,254,0.25);
}


/* ────────────────────────────────────────────────
   11. FOOTER SOCIAL ICONS — hover glow
   ──────────────────────────────────────────────── */

.bringer-socials-list a {
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}

.bringer-socials-list a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(5,190,254,0.25);
}


/* ────────────────────────────────────────────────
   12. COUNTER NUMBERS — gradient
   ──────────────────────────────────────────────── */

.bringer-counter-number {
    background: linear-gradient(135deg, #F5F7FA 0%, rgba(245,247,250,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sobre-nos / contato counters — use brand gradient */
.bringer-counter:hover .bringer-counter-number {
    background: linear-gradient(135deg, #05BEFE, #4481EB);
    -webkit-background-clip: text;
    background-clip: text;
    transition: background 0.35s ease;
}


/* ────────────────────────────────────────────────
   13. PARALLAX MEDIA — global treatment
   ──────────────────────────────────────────────── */

/* Rounded + glow on parallax images sitewide */
section .bringer-parallax-media:not(.bringer-hero-media-wrap .bringer-parallax-media) {
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

section .bringer-parallax-media:not(.bringer-hero-media-wrap .bringer-parallax-media):hover {
    box-shadow: 0 0 0 1px rgba(5,190,254,0.15), 0 20px 60px rgba(0,0,0,0.4);
}


/* ────────────────────────────────────────────────
   14. MOBILE RESPONSIVE TWEAKS
   ──────────────────────────────────────────────── */

@media (max-width: 760px) {
    /* ── Hero: compact top gap on mobile ── */
    .axios-hero-section {
        padding-top: 28px !important;
    }

    /* ── Gap between headline and hero image ── */
    .axios-hero-section .stg-row.stg-m-bottom-gap-l {
        margin-bottom: 28px !important;
    }

    /* ── Tighten the gap below the hero image ──
       Default stg-bottom-gap-l = var(--bringer-section-gap) = 80px on mobile — huge. */
    .bringer-hero-media-wrap.stg-bottom-gap-l {
        margin-bottom: 20px !important;
    }

    /* ── Hero image: tighten section bottom padding too ── */
    .axios-hero-section {
        padding-bottom: 32px !important;
    }

    /* Hide "Tecnologia que acelera negócios" + social proof / depoimentos on mobile */
    .bringer-hero-social-proof {
        display: none !important;
    }

    /* Hide tech stack marquee section on mobile */
    .axios-tech-section {
        display: none !important;
    }

    /* Hero image — use aspect-ratio so wrapper = image area, button anchors correctly */
    .bringer-hero-media-wrap {
        min-height: unset;
    }

    .bringer-hero-media-wrap .bringer-masked-media {
        aspect-ratio: 4 / 3;
        overflow: hidden !important;
    }

    .bringer-hero-media-wrap .bringer-masked-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 25% !important;
    }

    /* ── Hero headline: larger and more commanding on mobile ── */
    .bringer-hero-type01 h1.bringer-page-title {
        font-size: 2.2rem !important;
        line-height: 1.12 !important;
        letter-spacing: -0.02em !important;
        margin-top: 0 !important;
    }

    /* ── Info row (counters + paragraph) below image: tighter gap ── */
    .bringer-hero-type01 .stg-row.stg-valign-bottom .stg-m-top-gap {
        margin-top: 12px !important;
    }

    /* Services list: hide counter numbers on mobile */
    .bringer-detailed-list-title::before {
        display: none;
    }
}
