:root {
    --navy: #002f6c;
    --navy-2: #004ba0;
    --blue: #0563c1;
    --blue-2: #0a7ff5;
    --cyan: #e8f4ff;
    --gold: #ffbf00;
    --gold-2: #ffd54f;
    --rose: #ff6b8a;
    --purple: #8b5cf6;
    --teal: #14b8a6;
    --text: #0b1f3f;
    --muted: #5a6a85;
    --card: #ffffff;
    --line: #dbeaff;
    --shadow: 0 18px 45px rgba(6, 26, 73, .10);
    --radius: 24px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none
}

.site-wrap {
    background: #fff
}

/* Navigation */
.navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transition: var(--transition);
    box-shadow: 0 2px 18px rgba(6, 26, 73, .04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 28px rgba(6, 26, 73, .08);
    padding: 4px 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-link {
    font-weight: 800;
    color: var(--navy) !important;
    margin: 0 10px;
    font-size: 15px;
    position: relative;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    border-radius: 2px;
    transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue) !important
}

.nav-phone {
    color: var(--navy);
    font-size: 16px;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--blue-2)
}

.btn-main {
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff !important;
    border: 0;
    border-radius: 50px;
    padding: 13px 26px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(5, 115, 238, .24);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 38px rgba(5, 115, 238, .34);
}

.btn-main:active {
    transform: translateY(-1px) scale(.98)
}

.btn-outline-main {
    border: 1.5px solid #c1c9d7;
    color: var(--navy);
    border-radius: 50px;
    padding: 13px 26px;
    font-weight: 900;
    background: #fff;
    transition: var(--transition);
}

.btn-outline-main:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 10px 22px rgba(5, 115, 238, .12);
    transform: translateY(-2px);
}

/* Hero section */
.hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(115deg, #fff 0%, #f3fbff 52%, #e9f5ff 100%);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    inset: auto -140px -220px auto;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(5, 115, 238, .16), transparent 65%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .9
    }

    50% {
        transform: scale(1.08);
        opacity: .7
    }
}

.hero-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue-2);
    border-radius: 50%;
    opacity: .15;
    animation: floatUp 8s linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    bottom: -20px;
    animation-delay: 0s
}

.hero-particles span:nth-child(2) {
    left: 25%;
    bottom: -30px;
    width: 14px;
    height: 14px;
    animation-delay: 1.5s
}

.hero-particles span:nth-child(3) {
    left: 50%;
    bottom: -20px;
    animation-delay: 3s
}

.hero-particles span:nth-child(4) {
    left: 75%;
    bottom: -40px;
    width: 8px;
    height: 8px;
    animation-delay: 4.5s
}

.hero-particles span:nth-child(5) {
    left: 90%;
    bottom: -20px;
    animation-delay: 6s
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: .15
    }

    100% {
        transform: translateY(-100vh) scale(.6);
        opacity: 0
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 115, 238, .08);
    border: 1px solid rgba(5, 115, 238, .14);
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    font-size: 18px
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    font-weight: 1000;
    color: var(--navy);
}

.hero h1 span {
    display: inline;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #384867;
    max-width: 560px;
    line-height: 1.7;
}

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

.trust-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(215, 233, 255, .9);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 12px 28px rgba(6, 26, 73, .06);
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(6, 26, 73, .1);
}

.trust-card i {
    font-size: 28px;
    color: var(--blue)
}

.hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art img {
    position: relative;
    max-width: 100%;
    border-radius: 28px;
    z-index: 2;
    transition: var(--transition);
}

.hero-art:hover img {
    transform: scale(1.015) rotate(1deg)
}

.hero-art-ring {
    position: absolute;
    width: min(520px, 88vw);
    height: min(520px, 88vw);
    border-radius: 50%;
    background: linear-gradient(145deg, #ccefff, #188dff);
    opacity: .55;
    z-index: 1;
    animation: ringPulse 5s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

.section {
    padding: 90px 0
}

.bg-light-subtle {
    background: linear-gradient(180deg, #f8fbff, #fff)
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    background: rgba(5, 115, 238, .08);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 1000;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.section-headline {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 1000;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Services grid */
.our-services__service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.our-services__item {
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e6eefb;
    border-radius: var(--radius);
    padding: 26px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-services__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(6, 26, 73, .14);
    border-color: rgba(5, 115, 238, .2);
}

.our-services__item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(6, 26, 73, .1);
    transition: var(--transition);
}

.our-services__item:hover img {
    transform: scale(1.05)
}

.our-services__item-title {
    font-weight: 1000;
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.our-services__item-desc {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 10px;
}

.our-services__item-price {
    font-weight: 1000;
    color: var(--blue);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pain-section {
    background: #fff
}

.pain-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e8f0fc;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 34px rgba(6, 26, 73, .06);
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(6, 26, 73, .1);
    border-color: rgba(5, 115, 238, .18);
}

.pain-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf4ff, #fff);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 26px;
    margin-bottom: 16px;
    box-shadow: inset 0 0 0 1px #d9efff;
}

.pain-card h3 {
    font-weight: 1000;
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.pain-card p {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
    line-height: 1.6;
}

.icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(145deg, #eaf8ff, #fff);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 38px;
    box-shadow: inset 0 0 0 1px #d9efff;
    transition: var(--transition);
}

.adv-card:hover .icon-badge,
.step-card:hover .icon-badge {
    transform: rotate(-5deg) scale(1.08)
}

.adv-card,
.step-card {
    background: rgba(255, 255, 255, .95);
    border: 1px solid #e6eefb;
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(6, 26, 73, .07);
    height: 100%;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.adv-card:hover,
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(6, 26, 73, .12);
}

.adv-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px;
}

.adv-card .icon-badge {
    margin: 0;
    flex: 0 0 72px;
}

.adv-card h3,
.step-card h3 {
    font-weight: 1000;
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.adv-card p,
.step-card p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
    line-height: 1.55;
}

.adv-card.gold .icon-badge {
    color: #f1a700;
    background: linear-gradient(145deg, #fff5cc, #fff)
}

.adv-card.green .icon-badge {
    color: #25a84a;
    background: linear-gradient(145deg, #e9fff0, #fff)
}

.adv-card.blue .icon-badge {
    color: var(--blue);
    background: linear-gradient(145deg, #eaf4ff, #fff)
}

.adv-card.rose .icon-badge {
    color: var(--rose);
    background: linear-gradient(145deg, #fff0f3, #fff)
}

.adv-card.purple .icon-badge {
    color: var(--purple);
    background: linear-gradient(145deg, #f3efff, #fff)
}

.adv-card.teal .icon-badge {
    color: var(--teal);
    background: linear-gradient(145deg, #eafffb, #fff)
}

.process-line {
    position: relative
}

.process-line::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 86px;
    border-top: 2px dashed rgba(109, 183, 255, .55);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    padding: 28px 22px 22px;
    text-align: center;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: -49px auto 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    font-weight: 1000;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(5, 115, 238, .25);
}

.before-after {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(6, 26, 73, .1);
    margin: 0;
    aspect-ratio: 4 / 3;
    max-height: 420px;
}

.before-after img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.result-caption {
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    margin-top: 14px;
    font-size: .95rem;
}


.stars {
    color: #ffb400;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.review-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e6eefb;
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(6, 26, 73, .07);
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(6, 26, 73, .12)
}

.review-card::before {
    content: "\f10e";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    bottom: 1rem;
    right: 1.2rem;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--blue);
    opacity: .12;
}

.review-card p {
    width: 92%;
    min-height: 80px;
    color: var(--text);
    font-size: .98rem;
    line-height: 1.6;
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #e7f6ff, #bde9ff);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 26px;
    overflow: hidden;
}

.avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.reviews-carousel .owl-item {
    display: flex
}

.reviews-carousel .item {
    display: flex;
    width: 100%
}

.reviews-carousel .review-card,
.reviews-carousel .review-card--sarvar {
    width: 100%
}

.reviews-carousel .owl-nav button.owl-prev,
.reviews-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #e6eefb !important;
    color: var(--blue) !important;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(6, 26, 73, .1);
    transition: var(--transition);
}

.reviews-carousel .owl-nav button.owl-prev:hover,
.reviews-carousel .owl-nav button.owl-next:hover {
    background: var(--blue) !important;
    color: #fff !important
}

.reviews-carousel .owl-nav {
    margin-top: 24px
}

.reviews-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #c5d9f5;
    transition: var(--transition);
}

.reviews-carousel .owl-dots .owl-dot.active span,
.reviews-carousel .owl-dots .owl-dot:hover span {
    background: var(--blue);
    transform: scale(1.2)
}

.reviews-carousel .owl-dots {
    margin-top: 18px
}

/* FAQ accordion */
.faq-accordion .accordion-item {
    border: 1px solid #e6eefb;
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(6, 26, 73, .04);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
}

.faq-accordion .accordion-button {
    font-weight: 800;
    color: var(--navy);
    padding: 20px 24px;
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: rgba(5, 115, 238, .04)
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(5, 115, 238, .2)
}

.faq-accordion .accordion-body {
    color: var(--muted);
    padding: 0 24px 22px;
    line-height: 1.7;
}

/* Bottom CTA + contact form */
.cta {
    position: relative;
    border-radius: 34px;
    padding: 54px 42px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 30px 70px rgba(5, 67, 187, .28);
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(7, 112, 237, .35), transparent 40%);
}

.cta h2 {
    color: #fff
}

.text-white-70 {
    color: rgba(255, 255, 255, .75)
}

.form-box {
    background: rgba(255, 255, 255, .95);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.form-box h4 {
    color: var(--navy)
}

.form-box .form-control {
    border-radius: 14px;
    border: 1px solid #dbeaff;
    padding: 12px 16px;
    font-size: .95rem;
}

.form-box .form-control:focus {
    border-color: var(--blue-2);
    box-shadow: 0 0 0 4px rgba(5, 115, 238, .1);
}

.form-note {
    font-size: .82rem;
    color: var(--muted);
    text-align: center;
}

.mascot-small {
    max-width: 100%;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .25));
    animation: mascotBounce 4s ease-in-out infinite;
}

@keyframes mascotBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .75);
    padding: 70px 0 30px;
}

.footer-logo {
    width: 80%;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-title {
    color: #fff;
    font-weight: 900;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px)
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .08);
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.contact-pill:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 70px;
        min-height: auto
    }

    .hero-art-ring {
        width: 420px;
        height: 420px
    }

    .section {
        padding: 70px 0
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(16px);
        border-radius: 20px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 18px 46px rgba(6, 26, 73, .12);
    }

    .nav-link {
        margin: 6px 0
    }

    .process-line::before {
        display: none
    }

    .cta {
        padding: 36px 24px
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .trust-card {
        width: 100%
    }

    .hero-trust {
        flex-direction: column
    }

    .our-services__service {
        grid-template-columns: 1fr
    }

    .adv-card {
        flex-direction: column;
        text-align: center
    }

    .adv-card .icon-badge {
        margin: 0 auto 12px
    }

    .mascot-small {
        max-width: 70%;
    }

    .cta {
        padding: 30px 18px
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.btn-sm {
    padding: 9px 20px;
    font-size: .9rem
}

.aos-init {
    will-change: transform, opacity
}

/* Quick floating action button */
.fab-quick {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.fab-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(5, 115, 238, .35);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.fab-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(5, 115, 238, .45);
}

.fab-quick.is-open .fab-btn {
    transform: rotate(45deg);
}

.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.fab-quick.is-open .fab-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-action {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.fab-label {
    background: #fff;
    color: var(--text);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .25s ease, transform .25s ease;
}

.fab-quick.is-open .fab-label {
    opacity: 1;
    transform: translateX(0);
}

.fab-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    transition: transform .2s ease;
}

.fab-action:hover .fab-icon {
    transform: scale(1.1);
}

.fab-phone .fab-icon {
    background: #10b981;
}

.fab-order .fab-icon {
    background: var(--blue);
}

@media (max-width: 576px) {
    .fab-quick {
        right: 16px;
        bottom: 16px;
    }

    .fab-btn {
        width: 54px;
        height: 54px;
    }

    .fab-icon {
        width: 44px;
        height: 44px;
    }
}

/* TwentyTwenty before/after slider base styles */
.twentytwenty-wrapper,
.twentytwenty-container {
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
    z-index: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: none;
}

.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container * {
    box-sizing: content-box;
}

.twentytwenty-before {
    z-index: 20;
}

.twentytwenty-after {
    z-index: 10;
}

.twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition-duration: .5s;
    transition-property: background;
    background: 0 0;
    z-index: 25;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition-duration: .5s;
    transition-property: opacity;
    opacity: 1;
    z-index: 25;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    content: attr(data-content);
    position: absolute;
    line-height: 1.2;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #fff;
    background: var(--blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    text-transform: uppercase;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 7px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 7px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 7px;
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active:hover .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active:hover .twentytwenty-overlay .twentytwenty-after-label {
    opacity: 1;
}

.twentytwenty-handle {
    height: 56px;
    width: 56px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -28px;
    margin-top: -28px;
    background: var(--blue);
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 40;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(5, 115, 238, .35);
}

.twentytwenty-handle:before,
.twentytwenty-handle:after {
    content: " ";
    display: block;
    background: #fff;
    position: absolute;
    z-index: 30;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    width: 2px;
    height: 9999px;
    left: 50%;
    margin-left: -1px;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 28px;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 28px;
}

.twentytwenty-handle .twentytwenty-left-arrow,
.twentytwenty-handle .twentytwenty-right-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 6px inset transparent;
    margin-top: -6px;
    z-index: 50;
}

.twentytwenty-handle .twentytwenty-left-arrow {
    left: 10px;
    border-right: 6px solid #fff;
}

.twentytwenty-handle .twentytwenty-right-arrow {
    right: 10px;
    border-left: 6px solid #fff;
}

@media (max-width: 576px) {

    .twentytwenty-before-label:before,
    .twentytwenty-after-label:before {
        font-size: 10px;
        padding: 6px 12px;
    }

    .twentytwenty-handle {
        height: 44px;
        width: 44px;
        margin-left: -22px;
        margin-top: -22px;
    }

    .twentytwenty-horizontal .twentytwenty-handle:before,
    .twentytwenty-horizontal .twentytwenty-handle:after {
        margin-bottom: 22px;
        margin-top: 22px;
    }
}

/* ================= Sarvar Clean redesign ================= */

/* Buttons */
.text-gold {
    color: var(--gold) !important
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0b1f3f !important;
    border: 0;
    border-radius: 50px;
    padding: 13px 26px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 191, 0, .35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(255, 191, 0, .45);
    color: #0b1f3f !important;
}

.btn-main {
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 12px 28px rgba(5, 99, 193, .24);
}

/* Navbar */
.navbar {
    padding: 8px 0;
}

.navbar-brand img {
    height: 100px;
}

.nav-link {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy) !important;
    margin: 0 9px;
}

.nav-link::after {
    background: var(--blue);
    height: 2px;
}

.nav-phone {
    color: var(--navy);
    font-weight: 800;
    font-size: 15px;
}

/* Hero */
.hero--sarvar {
    padding: 150px 0 90px;
    background: linear-gradient(120deg, #f0f8ff 0%, #fff 45%, #e4f3ff 100%);
    min-height: auto;
}

.hero--sarvar .hero-badge {
    background: rgba(5, 99, 193, .08);
    border: 1px solid rgba(5, 99, 193, .12);
    color: var(--blue);
    font-weight: 700;
}

.hero--sarvar h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 1000;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(219, 234, 255, .9);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    backdrop-filter: blur(8px);
}

.hero-feature i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    flex: 0 0 32px;
}

.hero-art--van {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art--van img {
    border-radius: 28px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-water {
    position: absolute;
    inset: -40px -30px auto -30px;
    height: 140%;
    background: radial-gradient(circle at 30% 30%, rgba(5, 99, 193, .12), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(10, 127, 245, .1), transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.hero-guarantee {
    position: absolute;
    right: -10px;
    bottom: 0px;
    z-index: 3;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-guarantee__inner {
    text-align: center;
    color: #fff;
    line-height: 1.1;
}

.hero-guarantee__percent {
    display: block;
    font-size: 1.7rem;
    font-weight: 1000;
    color: var(--gold);
}

.hero-guarantee__text {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .5px;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

/* Section titles */
.section-title--decorated {
    position: relative;
    padding-top: 18px;
}

.section-title--decorated::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.section-title--decorated h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 1000;
    color: var(--navy);
}

.section-title--left {
    text-align: left;
    padding-top: 0;
}

.section-title--left::before {
    left: 0;
    transform: none;
}

/* Services */
.services-section {
    background: #fff
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.service-card {
    text-align: center;
    position: relative;
}

.service-card__img {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #eaf4ff;
    box-shadow: 0 14px 34px rgba(6, 26, 73, .1);
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
}

.service-card p {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.service-card__price {
    display: inline-block;
    font-size: .95rem;
    font-weight: 800;
    color: var(--blue);
    background: rgba(10, 127, 245, .08);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.service-card__plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto;
    font-size: 1.4rem;
    transition: var(--transition);
    cursor: pointer;
}

.service-card__plus:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--navy);
}

/* Why section */
.why-section {
    background: linear-gradient(180deg, #eef7ff, #fff);
}

.why-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.why-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(6, 26, 73, .12);
}

.why-splash {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(10, 127, 245, .12), transparent 40%);
    pointer-events: none;
}

.why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e6eefb;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(6, 26, 73, .06);
    height: 100%;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(6, 26, 73, .1);
}

.why-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    flex: 0 0 54px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-card p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
}

/* Process */
.process-section {
    background: #fff
}

.process-line {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    padding-top: 20px;
}

.process-line::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    border-top: 2px dashed rgba(5, 99, 193, .25);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #eaf4ff;
    color: var(--blue);
    font-size: 1.8rem;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 25px rgba(5, 99, 193, .12);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
}

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

/* Pricing */
.pricing-section {
    background: linear-gradient(180deg, #f8fbff, #fff);
}

.pricing-section .container,
.why-section .container {
    overflow-x: hidden;
}

.pricing-visual {
    position: relative;
    border-radius: 28px;
}

.pricing-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(6, 26, 73, .12);
}

.pricing-bubble {
    position: absolute;
    inset: -30px auto auto -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 127, 245, .1), transparent 70%);
    pointer-events: none;
}

.pricing-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 1000;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.15;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.pricing-list i {
    color: var(--gold);
    font-size: 1.3rem;
}

.pricing-box {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 28px;
    padding: 28px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(5, 99, 193, .25);
}

.pricing-box__label {
    font-size: 1rem;
    opacity: .8;
    text-transform: lowercase;
}

.pricing-box__price {
    font-size: 2.6rem;
    font-weight: 1000;
    line-height: 1.1;
    margin: 6px 0 14px;
}

.pricing-box__price span {
    font-size: 1rem;
    font-weight: 700;
}

.pricing-box__note {
    font-size: .85rem;
    opacity: .8;
    margin-bottom: 20px;
}

/* Reviews */
.reviews-section {
    background: #fff
}

.review-card--sarvar {
    background: #fff;
    border: 1px solid #e6eefb;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(6, 26, 73, .06);
    height: 100%;
    transition: var(--transition);
}

.review-card--sarvar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(6, 26, 73, .1);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.reviews-carousel .review-card__header img,
.reviews-carousel .owl-item .review-card__header img {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(6, 26, 73, .12);
}

.review-card__header h5 {
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 2px;
    font-size: 1rem;
}

.review-card--sarvar p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5d9f5;
    transition: var(--transition);
}

.reviews-dots span:first-child {
    background: var(--blue);
    width: 24px;
    border-radius: 10px;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #f8fbff, #fff);
}

/* CTA */
.cta-section {
    background: #fff;
    padding-bottom: 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--navy), var(--blue));
    border-radius: 34px;
    padding: 42px;
    color: #fff;
    box-shadow: 0 30px 70px rgba(5, 99, 193, .28);
}

.cta-logo {
    width: 320px;
    max-width: 100%;
}

.cta-box h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 1000;
    margin-bottom: 10px;
}

.cta-box p {
    opacity: .8;
    margin-bottom: 18px;
}

.cta-phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-phones a {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-phones a i {
    color: var(--gold);
}

.btn-telegram {
    background: #0088cc;
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 24px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 136, 204, .3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 136, 204, .4);
    color: #fff !important;
}

/* Footer */
.footer-sarvar {
    background: #fff;
    color: var(--muted);
    padding: 50px 0 30px;
}

.footer-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 50px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6eefb;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
}

.footer-feature i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex: 0 0 44px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: .9rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 56px;
    }

    .hero--sarvar {
        padding: 130px 0 70px;
    }

    .hero-guarantee {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: 20px;
    }

    .hero-guarantee__percent {
        font-size: 1.3rem;
    }

    .hero-guarantee__text {
        font-size: .6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        flex-wrap: wrap;
    }

    .process-line::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .nav-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 12px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

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

    .service-card__img {
        width: 160px;
        height: 160px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .cta-box {
        padding: 30px;
    }

    .footer-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Modern enhancements: glassmorphism, hero orbs, trust bar ===== */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: .45;
}

.hero-orb--1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(5, 99, 193, .35), transparent 70%);
    top: -120px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb--2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 191, 0, .28), transparent 70%);
    bottom: -60px;
    left: -80px;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(-20px, 30px) scale(1.08)
    }
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(219, 234, 255, .9);
    border-radius: 16px;
    padding: 14px 20px;
    min-width: 100px;
    box-shadow: 0 10px 26px rgba(6, 26, 73, .06);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(6, 26, 73, .1);
    border-color: rgba(5, 115, 238, .2);
}

.trust-item strong {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.trust-item span {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 700;
}

/* Glassmorphism utility classes */
.glass {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .6);
}

.glass-dark {
    background: rgba(6, 26, 73, .72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .12);
}

/* Enhanced hover lifts */
.service-card {
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card:hover .service-card__img {
    box-shadow: 0 22px 50px rgba(5, 99, 193, .22);
    border-color: rgba(5, 115, 238, .35);
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__img {
    transition: var(--transition);
    overflow: hidden;
}

.service-card__img img {
    transition: var(--transition);
}

/* Micro-interaction for nav links */
.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 6px;
    background: rgba(5, 115, 238, .12);
    border-radius: 4px;
    transform: translateY(-50%);
    transition: width .3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%
}

/* Smooth section reveal fallback */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter emphasis */
.counter-value {
    font-variant-numeric: tabular-nums;
}

/* Reduced motion preferences are respected via existing media query */
@media (prefers-reduced-motion: reduce) {

    .hero-orb,
    .trust-item,
    .service-card,
    .service-card__img,
    .service-card__img img {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 767px) {
    .hero-trust-bar {
        justify-content: center;
    }

    .trust-item {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }
}