/* Nofal Homepage Showcase — consolidated */
:root{--nf-section-y:clamp(52px,8vw,80px);--nf-container:1200px;--nf-navy:#1c1c35;--nf-accent:#25aae1;--nf-muted:#64748b}
/* Unified section rhythm */
.home .section-small{padding-top:var(--nf-section-y)!important;padding-bottom:var(--nf-section-y)!important}
.home .section-head .title,.home .nofal-clients-showcase__head h2,.home .nofal-tools-marquee__title,.home .nofal-team-showcase .section-head .title,.home .nofal-services-section .section-head h2{font-weight:800!important;letter-spacing:-.02em!important;color:var(--nf-navy)!important}
.home .container{max-width:var(--nf-container)}

/* nofal-about-showcase.php */
.nofal-about-section {
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(ellipse 70% 55% at 10% 0%, rgba(40, 56, 145, 0.22), transparent 58%),
            radial-gradient(ellipse 55% 45% at 95% 100%, rgba(37, 170, 225, 0.1), transparent 55%),
            linear-gradient(155deg, #141428 0%, #1c1c35 48%, #232340 100%) !important;
        color: #e8edf5 !important;
    }
    .nofal-about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: 0.45;
        pointer-events: none;
    }
    .nofal-about-section .container {
        position: relative;
        z-index: 1;
    }
    .nofal-about-section.hero-section,
    .nofal-about-section .content {
        color: #e8edf5 !important;
    }
    .nofal-about-section h2,
    .nofal-about-section h2 strong {
        color: #ffffff !important;
    }
    .nofal-about-section p {
        color: rgba(255, 255, 255, 0.82) !important;
    }
    .nofal-about-section p strong,
    .nofal-about-section .checklist li strong {
        color: #71b4e8 !important;
    }
    .nofal-about-section .checklist li {
        color: rgba(255, 255, 255, 0.9);
    }
    .nofal-about-section .checklist li::before,
    .nofal-about-section .checklist.arrow-icons li::before {
        color: #25aae1 !important;
    }

/* nofal-clients-showcase.php */
.nofal-clients-showcase {
        padding: 72px 0 80px;
        background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
        overflow: hidden;
    }
    .nofal-clients-showcase__head {
        max-width: 760px;
        margin: 0 auto 44px;
        text-align: center;
    }
    .nofal-clients-showcase__head h2 {
        color: #1c1c35;
        font-size: clamp(1.75rem, 3vw, 2.35rem);
        font-weight: 800;
        margin: 0 0 14px;
        letter-spacing: -0.02em;
    }
    .nofal-clients-showcase__head p {
        color: #5f6780;
        font-size: 1.02rem;
        line-height: 1.75;
        margin: 0 auto;
        max-width: 680px;
    }
    .nofal-clients-showcase__head::after {
        content: "";
        display: block;
        width: 64px;
        height: 4px;
        margin: 18px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, #25aae1, #1c1c35);
    }
    .nofal-clients-showcase__stage,
    .nofal-clients-showcase__viewport,
    .nofal-clients-showcase__track,
    .nofal-clients-showcase__group {
        direction: ltr;
    }
    .nofal-clients-showcase__viewport {
        overflow: hidden;
        width: 100%;
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }
    .nofal-clients-showcase__track {
        display: flex;
        width: max-content;
        will-change: transform;
        animation: nofalClientsMarquee 38s linear infinite;
    }
    .nofal-clients-showcase__group {
        display: flex;
        align-items: center;
        gap: 22px;
        padding-right: 22px;
        flex-shrink: 0;
    }
    .nofal-clients-showcase__logo {
        flex: 0 0 auto;
        width: 170px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid rgba(28, 28, 53, 0.07);
        box-shadow: 0 8px 24px rgba(28, 28, 53, 0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .nofal-clients-showcase__logo:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(28, 28, 53, 0.1);
    }
    .nofal-clients-showcase__logo a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    .nofal-clients-showcase__logo img {
        max-width: 100%;
        max-height: 72px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    @keyframes nofalClientsMarquee {
        from { transform: translate3d(0, 0, 0); }
        to   { transform: translate3d(calc(-1 * var(--clients-shift, 50%)), 0, 0); }
    }
    @media (max-width: 767px) {
        .nofal-clients-showcase {
            padding: 52px 0 60px;
        }
        .nofal-clients-showcase__viewport {
            mask-image: none;
            -webkit-mask-image: none;
        }
        .nofal-clients-showcase__group {
            gap: 14px;
            padding-right: 14px;
        }
        .nofal-clients-showcase__logo {
            width: 132px;
            height: 92px;
            padding: 14px 16px;
            border-radius: 14px;
        }
        .nofal-clients-showcase__logo img {
            max-height: 58px;
        }
        .nofal-clients-showcase__track {
            animation-duration: 28s;
        }
    }
    @media (hover: hover) {
        .nofal-clients-showcase:hover .nofal-clients-showcase__track {
            animation-play-state: paused;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .nofal-clients-showcase__track {
            animation: none;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            gap: 14px;
        }
        .nofal-clients-showcase__group[aria-hidden="true"] {
            display: none;
        }
        .nofal-clients-showcase__viewport {
            mask-image: none;
            -webkit-mask-image: none;
        }
    }

/* nofal-hero-showcase.php */
.nofal-hero-slider.hero-slider {
        position: relative;
        overflow: hidden;
    }
    .nofal-hero-slider .item {
        position: relative;
    }
    .nofal-hero-slider .item::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(90deg, rgba(14, 14, 28, 0.88) 0%, rgba(14, 14, 28, 0.62) 42%, rgba(14, 14, 28, 0.28) 100%),
            linear-gradient(180deg, rgba(14, 14, 28, 0.15) 0%, rgba(14, 14, 28, 0.45) 100%);
        pointer-events: none;
    }
    html[dir="rtl"] .nofal-hero-slider .item::before {
        background:
            linear-gradient(270deg, rgba(14, 14, 28, 0.88) 0%, rgba(14, 14, 28, 0.62) 42%, rgba(14, 14, 28, 0.28) 100%),
            linear-gradient(180deg, rgba(14, 14, 28, 0.15) 0%, rgba(14, 14, 28, 0.45) 100%);
    }
    .nofal-hero-slider .item .container {
        position: relative;
        z-index: 2;
    }
    .nofal-hero-slider__content {
        max-width: 760px;
        padding: 0 12px;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .nofal-hero-slider__trust {
        display: none !important;
    }
    .nofal-hero-slider__eyebrow {
        display: block;
        margin: 0 auto 10px;
        padding: 0;
        color: #8ee6ff !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        font-size: clamp(0.78rem, 1.35vw, 0.95rem);
        font-weight: 800;
        line-height: 1.35;
        letter-spacing: 0;
    }
    .nofal-hero-slider__eyebrow::before {
        content: "";
        display: block;
        width: 46px;
        height: 3px;
        margin: 0 auto 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, #25aae1, rgba(142, 230, 255, 0.25));
        box-shadow: none;
    }
    .nofal-hero-slider__title {
        color: #ffffff !important;
        font-size: clamp(1.75rem, 3.85vw, 3.15rem) !important;
        font-weight: 850 !important;
        line-height: 1.18 !important;
        letter-spacing: -0.018em;
        text-transform: none !important;
        text-wrap: balance;
        max-width: 760px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
    }
    html[dir="rtl"] .nofal-hero-slider__title {
        letter-spacing: -0.006em;
    }
    .nofal-hero-slider__title span {
        display: inline;
        color: #8ee6ff;
        background: none !important;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: currentColor;
        text-shadow: inherit;
        position: static;
    }
    .nofal-hero-slider__title span::after {
        display: none !important;
    }
    .nofal-hero-slider__text {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: clamp(0.94rem, 1.55vw, 1.08rem) !important;
        font-weight: 500;
        line-height: 1.85 !important;
        max-width: 660px;
        margin: 0 auto 24px !important;
        text-wrap: pretty;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
    }
    .nofal-hero-slider__btns {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .nofal-hero-slider__eyebrow,
    .nofal-hero-slider__title,
    .nofal-hero-slider__text,
    .nofal-hero-slider__btns {
        opacity: 0;
        transform: translateY(12px);
        animation: nofalHeroTextIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .nofal-hero-slider__eyebrow { animation-delay: 80ms; }
    .nofal-hero-slider__title { animation-delay: 150ms; }
    .nofal-hero-slider__text { animation-delay: 230ms; }
    .nofal-hero-slider__btns { animation-delay: 310ms; }
    @keyframes nofalHeroTextIn {
        from { opacity: 0; transform: translateY(14px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nofal-hero-slider__btns .primary-btn {
        background: linear-gradient(135deg, #25aae1 0%, #1a94c8 100%) !important;
        border-color: transparent !important;
        color: #fff !important;
        box-shadow: 0 12px 32px rgba(37, 170, 225, 0.28);
    }
    .nofal-hero-slider .hero-slider-outer .pagination {
        bottom: 22px !important;
    }
    .nofal-hero-slider .hero-slider-outer .pagination button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35) !important;
        border: none;
        margin: 0 5px;
    }
    .nofal-hero-slider .hero-slider-outer .pagination button.active {
        background: #25aae1 !important;
        transform: scale(1.15);
    }
    @media (max-width: 767px) {
        .nofal-hero-slider__content {
            max-width: 100%;
            padding: 0 12px;
            background: transparent !important;
            border: 0 !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }
        .nofal-hero-slider__trust {
            display: none !important;
        }
        .nofal-hero-slider__eyebrow {
            font-size: 0.74rem;
            margin-bottom: 8px;
        }
        .nofal-hero-slider__eyebrow::before {
            width: 38px;
            height: 2px;
            margin-bottom: 10px;
        }
        .nofal-hero-slider__title {
            font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
            line-height: 1.25 !important;
            margin-bottom: 10px !important;
        }
        .nofal-hero-slider__text {
            font-size: 0.92rem !important;
            line-height: 1.72 !important;
            margin-bottom: 20px !important;
            max-width: 94%;
        }
        .nofal-hero-slider__btns .btn {
            width: 100%;
            max-width: 300px;
            min-height: 48px;
        }
        .nofal-hero-slider .item::before {
            background: linear-gradient(180deg, rgba(14, 14, 28, 0.34) 0%, rgba(14, 14, 28, 0.9) 100%) !important;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .nofal-hero-slider__eyebrow,
        .nofal-hero-slider__title,
        .nofal-hero-slider__text,
        .nofal-hero-slider__btns {
            opacity: 1;
            transform: none;
            animation: none;
            filter: none;
        }
    }

/* nofal-services-showcase.php */
.nofal-services-section {
        position: relative;
        overflow: hidden;
        padding: 72px 0 84px !important;
        background:
            radial-gradient(ellipse 70% 45% at 50% 0%, rgba(37, 170, 225, 0.06), transparent 62%),
            linear-gradient(180deg, #f4f7fb 0%, #ffffff 50%, #f8fafc 100%) !important;
    }
    .nofal-services-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(28, 28, 53, 0.035) 1px, transparent 1px);
        background-size: 26px 26px;
        pointer-events: none;
        opacity: 0.5;
    }
    .nofal-services-section > .container {
        position: relative;
        z-index: 1;
    }
    .nofal-services-section .section-head {
        max-width: 720px;
        margin: 0 auto 52px;
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nofal-services-section.is-revealed .section-head {
        opacity: 1;
        transform: none;
    }
    .nofal-services-section .section-head h2 {
        color: #1c1c35 !important;
        font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em;
        margin-bottom: 14px !important;
        border: 0 !important;
        padding: 0 !important;
    }
    .nofal-services-section .section-head h2::before,
    .nofal-services-section .section-head h2::after {
        display: none !important;
    }
    .nofal-services-section .section-head p {
        color: #5f6780 !important;
        font-size: 1.02rem;
        line-height: 1.75;
        margin: 0 auto;
        max-width: 620px;
    }
    .nofal-services-section .section-head::after {
        content: "";
        display: block;
        width: 64px;
        height: 4px;
        margin: 18px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, #25aae1, #1c1c35);
    }
    .nofal-services-grid {
        row-gap: 28px;
    }
    .nofal-service-card {
        display: flex;
        height: 100%;
        margin-bottom: 0 !important;
        opacity: 0;
        transform: translateY(36px) scale(0.97);
        transition:
            opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: calc(var(--card-i, 0) * 95ms + 120ms);
    }
    .nofal-services-section.is-revealed .nofal-service-card {
        opacity: 1;
        transform: none;
    }
    .nofal-service-card__link {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 22px;
        background: #ffffff;
        border: 1px solid rgba(28, 28, 53, 0.07);
        box-shadow: 0 12px 36px rgba(28, 28, 53, 0.07);
        text-decoration: none !important;
        color: inherit;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
        will-change: transform;
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover {
            transform: translateY(-10px);
            box-shadow: 0 26px 52px rgba(28, 28, 53, 0.14);
            border-color: rgba(37, 170, 225, 0.3);
        }
    }
    .nofal-service-card__visual {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: linear-gradient(135deg, #1c1c35 0%, #2a2a4a 100%);
    }
    .nofal-service-card__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__visual img {
            transform: scale(1.08);
            filter: brightness(1.04);
        }
    }
    .nofal-service-card__shine {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(
            115deg,
            transparent 35%,
            rgba(255, 255, 255, 0.28) 50%,
            transparent 65%
        );
        transform: translateX(-120%);
        transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__shine {
            transform: translateX(120%);
        }
    }
    .nofal-service-card__visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(28, 28, 53, 0) 35%, rgba(28, 28, 53, 0.55) 100%);
        pointer-events: none;
    }
    .nofal-service-card__badge {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 3;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: #1c1c35;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        backdrop-filter: blur(6px);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__badge {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 16px rgba(37, 170, 225, 0.22);
        }
    }
    .nofal-service-card__body {
        position: relative;
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 22px 22px 24px;
        text-align: right;
        overflow: hidden;
    }
    .nofal-service-card__title {
        color: #1c1c35 !important;
        font-size: 1.08rem !important;
        font-weight: 800 !important;
        line-height: 1.45 !important;
        margin: 0 0 10px !important;
        transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__title {
            color: #25aae1 !important;
            transform: translateY(-2px);
        }
    }
    .nofal-service-card__desc {
        flex: 1;
        color: #5f6780 !important;
        font-size: 0.9rem !important;
        line-height: 1.75 !important;
        margin: 0 0 18px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.3s ease;
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__desc {
            color: #4a5568 !important;
        }
    }
    .nofal-service-card__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        align-self: flex-start;
        color: #25aae1;
        font-size: 0.88rem;
        font-weight: 700;
        line-height: 1.3;
        transition: gap 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nofal-service-card__accent {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(270deg, #25aae1, #71b4e8 45%, #1c1c35);
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    html[dir="ltr"] .nofal-service-card__accent {
        transform-origin: left center;
        background: linear-gradient(90deg, #25aae1, #71b4e8 45%, #1c1c35);
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__accent {
            transform: scaleX(1);
        }
        .nofal-service-card__link:hover .nofal-service-card__cta {
            color: #1c1c35;
            gap: 12px;
            transform: translateX(-3px);
        }
    }
    .nofal-service-card__cta svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transition: transform 0.22s ease;
    }
    html[dir="rtl"] .nofal-service-card__cta svg {
        transform: scaleX(-1);
    }
    @media (hover: hover) {
        .nofal-service-card__link:hover .nofal-service-card__cta svg {
            transform: translateX(-4px);
        }
        html[dir="rtl"] .nofal-service-card__link:hover .nofal-service-card__cta svg {
            transform: scaleX(-1) translateX(-4px);
        }
        html[dir="ltr"] .nofal-service-card__link:hover .nofal-service-card__cta svg {
            transform: translateX(4px);
        }
    }
    html[dir="ltr"] .nofal-service-card__body {
        text-align: left;
    }
    html[dir="ltr"] .nofal-service-card__badge {
        right: auto;
        left: 14px;
    }
    @media (prefers-reduced-motion: reduce) {
        .nofal-services-section .section-head,
        .nofal-service-card {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }
        .nofal-service-card__shine {
            display: none;
        }
    }
    /* Safety: never keep services hidden if reveal JS fails */
    @keyframes nofal-services-fallback-show {
        to {
            opacity: 1;
            transform: none;
        }
    }
    .nofal-services-section:not(.is-revealed) .section-head,
    .nofal-services-section:not(.is-revealed) .nofal-service-card {
        animation: nofal-services-fallback-show 0.01s 2.5s forwards;
    }
    @media (max-width: 991px) {
        .nofal-services-section {
            padding: 56px 0 64px !important;
        }
        .nofal-services-section .section-head {
            margin-bottom: 36px;
        }
    }
    @media (max-width: 767px) {
        .nofal-services-section {
            padding: 44px 0 52px !important;
        }
        .nofal-services-grid {
            row-gap: 20px;
        }
        .nofal-service-card__link {
            border-radius: 18px;
        }
        .nofal-service-card__body {
            padding: 18px 18px 20px;
        }
        .nofal-service-card__title {
            font-size: 1rem !important;
        }
        .nofal-service-card__desc {
            font-size: 0.86rem !important;
            -webkit-line-clamp: 4;
        }
    }

/* nofal-team-showcase.php */
@keyframes nofalTeamFadeUp {
        from { opacity: 0; transform: translateY(22px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes nofalTeamRingSpin {
        to { transform: rotate(360deg); }
    }
    @keyframes nofalTeamShimmer {
        0% { background-position: 200% center; }
        100% { background-position: -200% center; }
    }

    .nofal-team-showcase {
        position: relative;
        padding: 72px 0 80px;
        background:
            radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 170, 225, 0.09), transparent 60%),
            radial-gradient(ellipse 50% 40% at 100% 50%, rgba(40, 56, 145, 0.05), transparent 55%),
            linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
        overflow: hidden;
    }
    .nofal-team-showcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(40, 56, 145, 0.07) 1px, transparent 1px);
        background-size: 28px 28px;
        opacity: 0.35;
        pointer-events: none;
    }
    .nofal-team-showcase .container {
        position: relative;
        z-index: 1;
    }
    .nofal-team-showcase .section-head {
        margin-bottom: 48px;
    }
    .nofal-team-showcase .section-head .title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        letter-spacing: -0.02em;
    }
    .nofal-team-showcase .section-head p {
        max-width: 560px;
        margin: 12px auto 0;
        color: #64748b;
        font-size: 1.02rem;
        line-height: 1.8;
    }

    .nofal-team-showcase__layout {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
        align-items: stretch;
    }

    /* ── Founder ── */
    .nofal-team-leader__card {
        position: relative;
        height: 100%;
        padding: 32px 26px 28px;
        border-radius: 24px;
        text-align: center;
        color: #fff;
        background: linear-gradient(155deg, #121a42 0%, #283891 55%, #1a6fa8 100%);
        box-shadow:
            0 24px 48px rgba(40, 56, 145, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        overflow: hidden;
        animation: nofalTeamFadeUp 0.65s ease both;
    }
    .nofal-team-leader__glow {
        position: absolute;
        top: -40%;
        right: -30%;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(37, 170, 225, 0.35), transparent 70%);
        pointer-events: none;
    }
    .nofal-team-leader__badge {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 16px;
        margin-bottom: 24px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.22);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        backdrop-filter: blur(6px);
    }
    .nofal-team-leader__badge::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #25aae1;
        box-shadow: 0 0 10px rgba(37, 170, 225, 0.8);
    }
    .nofal-team-leader__photo-wrap {
        position: relative;
        z-index: 1;
        width: 184px;
        height: 184px;
        margin: 0 auto 22px;
    }
    .nofal-team-leader__photo-wrap::before {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: conic-gradient(from 180deg, #25aae1, #ffffff55, #283891, #25aae1);
        animation: nofalTeamRingSpin 8s linear infinite;
        opacity: 0.85;
    }
    .nofal-team-leader__photo {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid rgba(255, 255, 255, 0.92);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    }
    .nofal-team-leader__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 14%;
        transform: scale(1.12);
        display: block;
    }
    .nofal-team-leader__body {
        position: relative;
        z-index: 1;
    }
    .nofal-team-leader__body h3 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 1.55rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }
    .nofal-team-leader__body h3:hover { color: #d7f0ff; }
    .nofal-team-leader__role {
        margin: 0 0 14px;
        color: #a8dcff;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .nofal-team-leader__bio {
        margin: 0 0 20px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.9rem;
        line-height: 1.85;
    }
    .nofal-team-leader__tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 0 0 22px;
        padding: 0;
        list-style: none;
    }
    .nofal-team-leader__tags li {
        padding: 5px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
    }
    .nofal-team-leader__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 26px;
        border-radius: 12px;
        background: #fff;
        color: #283891;
        font-size: 0.92rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .nofal-team-leader__cta::after { content: "←"; font-size: 1rem; }
    .nofal-team-leader__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
        color: #283891;
    }

    /* ── Team panel ── */
    .nofal-team-carousel {
        min-width: 0;
        display: flex;
        flex-direction: column;
        padding: 28px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(40, 56, 145, 0.08);
        box-shadow:
            0 20px 50px rgba(40, 56, 145, 0.08),
            0 1px 0 rgba(255, 255, 255, 0.9) inset;
        backdrop-filter: blur(10px);
        animation: nofalTeamFadeUp 0.65s 0.1s ease both;
    }
    .nofal-team-carousel__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(40, 56, 145, 0.08);
    }
    .nofal-team-carousel__head h3 {
        margin: 0 0 4px;
        color: #1e293b;
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }
    .nofal-team-carousel__head p {
        margin: 0;
        color: #64748b;
        font-size: 0.88rem;
    }
    .nofal-team-slider-pro__nav {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px;
        border-radius: 999px;
        background: #f1f5fb;
        border: 1px solid #e2e8f3;
    }
    .nofal-team-slider-pro__prev,
    .nofal-team-slider-pro__next {
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #283891;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(40, 56, 145, 0.08);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .nofal-team-slider-pro__prev:hover:not(:disabled),
    .nofal-team-slider-pro__next:hover:not(:disabled) {
        background: #283891;
        color: #fff;
        transform: scale(1.05);
    }
    .nofal-team-slider-pro__prev:disabled,
    .nofal-team-slider-pro__next:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        box-shadow: none;
    }
    .nofal-team-slider-pro__counter {
        min-width: 48px;
        padding: 0 6px;
        text-align: center;
        font-size: 0.78rem;
        font-weight: 800;
        color: #64748b;
        font-variant-numeric: tabular-nums;
    }
    .nofal-team-slider-pro {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .nofal-team-slider-pro__viewport {
        overflow: hidden;
        border-radius: 18px;
        flex: 1;
    }
    .nofal-team-slider-pro__track {
        display: flex;
        gap: 16px;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }
    .nofal-team-slider-pro__slide {
        flex: 0 0 100%;
        min-width: 0;
    }
    @media (min-width: 992px) {
        .nofal-team-slider-pro__slide { flex-basis: calc(50% - 8px); }
    }

    .nofal-team-slider-pro__card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        height: 100%;
        padding: 22px 18px 18px;
        background: #fff;
        border: 1px solid #e8edf5;
        border-radius: 18px;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 4px 16px rgba(40, 56, 145, 0.04);
        transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }
    .nofal-team-slider-pro__card:hover {
        border-color: rgba(37, 170, 225, 0.45);
        box-shadow: 0 16px 40px rgba(40, 56, 145, 0.12);
        transform: translateY(-4px);
    }
    .nofal-team-slider-pro__avatar {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 14px;
        border: 3px solid #eef3ff;
        box-shadow: 0 8px 20px rgba(40, 56, 145, 0.1);
        transition: transform 0.3s ease;
    }
    .nofal-team-slider-pro__card:hover .nofal-team-slider-pro__avatar {
        transform: scale(1.04);
    }
    .nofal-team-slider-pro__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
    .nofal-team-slider-pro__info {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 0 4px;
    }
    .nofal-team-slider-pro__info strong {
        font-size: 1.02rem;
        font-weight: 800;
        color: #1e293b;
        letter-spacing: -0.01em;
    }
    .nofal-team-slider-pro__info em {
        font-style: normal;
        font-size: 0.8rem;
        font-weight: 700;
        color: #25aae1;
        text-transform: capitalize;
    }
    .nofal-team-slider-pro__info span {
        font-size: 0.84rem;
        line-height: 1.7;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.8em;
    }
    .nofal-team-slider-pro__footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid #f1f5f9;
    }
    .nofal-team-slider-pro__link-text {
        font-size: 0.82rem;
        font-weight: 700;
        color: #283891;
    }
    .nofal-team-slider-pro__arrow {
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eef3ff;
        color: #283891;
        font-size: 0.85rem;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .nofal-team-slider-pro__card:hover .nofal-team-slider-pro__arrow {
        background: #283891;
        color: #fff;
    }
    .nofal-team-slider-pro__progress {
        margin-top: 18px;
        height: 4px;
        background: #e8edf5;
        border-radius: 999px;
        overflow: hidden;
    }
    .nofal-team-slider-pro__progress-bar {
        display: block;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, #283891, #25aae1, #283891);
        background-size: 200% 100%;
        border-radius: inherit;
        animation: nofalTeamShimmer 3s linear infinite;
        transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @media (max-width: 991px) {
        .nofal-team-showcase { padding: 56px 0 64px; }
        .nofal-team-showcase__layout {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .nofal-team-leader__card { max-width: 400px; margin: 0 auto; }
    }
    @media (max-width: 575px) {
        .nofal-team-showcase { padding: 48px 0 56px; }
        .nofal-team-carousel { padding: 20px 16px; }
        .nofal-team-carousel__top {
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }
        .nofal-team-slider-pro__nav { justify-content: center; }
        .nofal-team-leader__photo-wrap { width: 160px; height: 160px; }
    }

/* nofal-tools-marquee.php */
.nofal-tools-marquee {
        position: relative;
        padding: 48px 0 56px !important;
        background: transparent !important;
        overflow: visible !important;
        border: none !important;
    }
    .nofal-tools-marquee > .container {
        position: relative;
        z-index: 1;
    }
    .nofal-tools-marquee__box {
        direction: ltr;
        overflow: hidden;
        padding: 28px 24px 32px;
        border-radius: 22px;
        background:
            radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 170, 225, 0.06), transparent 62%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(28, 28, 53, 0.08);
        box-shadow:
            0 18px 48px rgba(28, 28, 53, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
    }
    .nofal-tools-marquee__head {
        margin-bottom: 22px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(28, 28, 53, 0.07);
    }
    .nofal-tools-marquee__title {
        margin: 0 0 8px !important;
        font-size: clamp(1.2rem, 2.5vw, 1.55rem) !important;
        font-weight: 800 !important;
        color: #1c1c35 !important;
        text-transform: none !important;
        letter-spacing: -0.02em;
    }
    .nofal-tools-marquee__subtitle {
        margin: 0 !important;
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        color: #64748b !important;
        max-width: 560px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nofal-tools-marquee__inner,
    .nofal-tools-marquee__row,
    .nofal-tools-marquee__viewport,
    .nofal-tools-marquee__track,
    .nofal-tools-marquee__group {
        direction: ltr;
    }
    .nofal-tools-marquee__inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .nofal-tools-marquee__row {
        min-height: 46px;
    }
    .nofal-tools-marquee__viewport {
        overflow: hidden;
        width: 100%;
        border-radius: 12px;
        mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }
    .nofal-tools-marquee__track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        will-change: transform;
        animation-duration: var(--marquee-duration, 36s);
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-play-state: running;
    }
    .nofal-tools-marquee__row[data-direction="left"] .nofal-tools-marquee__track {
        animation-name: nofalMarqueeLeft;
    }
    .nofal-tools-marquee__row[data-direction="right"] .nofal-tools-marquee__track {
        animation-name: nofalMarqueeRight;
    }
    .nofal-tools-marquee__group {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        gap: 10px;
        padding-right: 10px;
    }
    .nofal-tools-marquee__pill {
        display: inline-flex;
        flex-shrink: 0;
        align-items: center;
        gap: 9px;
        padding: 9px 18px;
        border-radius: 999px;
        background: var(--pill-bg, #f4f6f8);
        box-shadow: 0 2px 10px rgba(28, 28, 53, 0.06);
        white-space: nowrap;
        font-size: 0.86rem;
        font-weight: 600;
        color: #1c1c35;
        border: 1px solid rgba(28, 28, 53, 0.06);
        line-height: 1.2;
    }
    .nofal-tools-marquee__pill img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        flex-shrink: 0;
        display: block;
    }
    @keyframes nofalMarqueeLeft {
        from { transform: translate3d(0, 0, 0); }
        to   { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
    }
    @keyframes nofalMarqueeRight {
        from { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
        to   { transform: translate3d(0, 0, 0); }
    }
    @media (min-width: 992px) {
        .nofal-tools-marquee { padding: 56px 0 64px !important; }
        .nofal-tools-marquee__box { padding: 32px 32px 36px; }
        .nofal-tools-marquee__inner { gap: 14px; }
        .nofal-tools-marquee__row[data-direction="left"] .nofal-tools-marquee__track { --marquee-duration: 42s; }
        .nofal-tools-marquee__row[data-direction="right"] .nofal-tools-marquee__track { --marquee-duration: 46s; }
    }
    @media (max-width: 991px) {
        .nofal-tools-marquee { padding: 36px 0 44px !important; }
        .nofal-tools-marquee__row[data-direction="left"] .nofal-tools-marquee__track { --marquee-duration: 28s; }
        .nofal-tools-marquee__row[data-direction="right"] .nofal-tools-marquee__track { --marquee-duration: 32s; }
    }
    @media (max-width: 767px) {
        .nofal-tools-marquee { padding: 28px 0 36px !important; }
        .nofal-tools-marquee__box { padding: 22px 16px 26px; border-radius: 18px; }
        .nofal-tools-marquee__head { margin-bottom: 16px; padding-bottom: 14px; }
        .nofal-tools-marquee__viewport {
            mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
        }
        .nofal-tools-marquee__inner { gap: 10px; }
        .nofal-tools-marquee__group { gap: 8px; padding-right: 8px; }
        .nofal-tools-marquee__pill {
            padding: 8px 14px;
            gap: 8px;
            font-size: 0.78rem;
        }
        .nofal-tools-marquee__pill img {
            width: 18px;
            height: 18px;
        }
        .nofal-tools-marquee__row[data-direction="left"] .nofal-tools-marquee__track { --marquee-duration: 24s; }
        .nofal-tools-marquee__row[data-direction="right"] .nofal-tools-marquee__track { --marquee-duration: 28s; }
    }
    @media (hover: hover) {
        .nofal-tools-marquee:hover .nofal-tools-marquee__track {
            animation-play-state: paused;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .nofal-tools-marquee__track {
            animation: none !important;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            gap: 10px;
        }
        .nofal-tools-marquee__viewport {
            mask-image: none;
            -webkit-mask-image: none;
        }
        .nofal-tools-marquee__group[aria-hidden="true"] {
            display: none;
        }
    }
/* legacy carousel + team helpers */
.carousel-slider .logo-block{display:flex;align-items:center;justify-content:center;height:120px;padding:15px;box-sizing:border-box}
.carousel-slider .logo-block img,.carousel-slider .client-logo-link img,.carousel-slider .client-logo-no-link img{max-height:90px;width:auto;height:auto;object-fit:contain;display:block}
@media (max-width:767px){.carousel-slider .logo-block{height:100px;padding:10px}.carousel-slider .logo-block img,.carousel-slider .client-logo-link img,.carousel-slider .client-logo-no-link img{max-height:80px}}
.team-block .content-box p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;line-height:1.6;max-height:calc(1.6em * 2);margin-bottom:15px}
.team-block .content-box p p{display:inline;margin:0;padding:0}
.team-block .content-box p:empty{display:none}

/* nofal-why-showcase.php — calm distinctive section */
.nofal-why-section {
    position: relative;
    padding: 52px 0 56px !important;
    background: #f7f9fc;
    overflow: hidden;
}

.nofal-why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 720px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 170, 225, 0.35), transparent);
    pointer-events: none;
}

.nofal-why-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(37, 170, 225, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(113, 180, 232, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.nofal-why-section .container {
    position: relative;
    z-index: 1;
}

.nofal-why-section__head {
    max-width: 640px;
    margin: 0 auto 32px;
}

.nofal-why-section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 170, 225, 0.08);
    color: #1a94c8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.nofal-why-section__title {
    margin: 0 0 12px;
    color: #1c1c35 !important;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.nofal-why-section__subtitle {
    margin: 0;
    color: #5f6b7d;
    font-size: 0.94rem;
    line-height: 1.8;
}

.nofal-why-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.nofal-why-section__card {
    padding: 20px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(28, 28, 53, 0.06);
    box-shadow: 0 2px 12px rgba(28, 28, 53, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nofal-why-section__card:hover {
    border-color: rgba(37, 170, 225, 0.18);
    box-shadow: 0 8px 24px rgba(37, 170, 225, 0.08);
}

.nofal-why-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: rgba(37, 170, 225, 0.1);
    color: #25aae1;
}

.nofal-why-section__icon svg {
    width: 20px;
    height: 20px;
}

.nofal-why-section__card-title {
    margin: 0 0 6px;
    color: #1c1c35;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.nofal-why-section__card-text {
    margin: 0;
    color: #5f6b7d;
    font-size: 0.8rem;
    line-height: 1.65;
}

.nofal-why-section__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 24px;
    margin: 0 auto 24px;
    padding: 14px 20px;
    max-width: 520px;
    list-style: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(28, 28, 53, 0.06);
}

.nofal-why-section__stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nofal-why-section__stat strong {
    color: #25aae1;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nofal-why-section__stat span {
    color: #6b778c;
    font-size: 0.78rem;
    font-weight: 600;
}

.nofal-why-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nofal-why-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nofal-why-section__btn--primary {
    background: linear-gradient(135deg, #25aae1 0%, #1a94c8 100%);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 170, 225, 0.22);
}

.nofal-why-section__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 170, 225, 0.3);
    color: #fff !important;
}

.nofal-why-section__btn--ghost {
    background: transparent;
    border: 1px solid rgba(28, 28, 53, 0.14);
    color: #1c1c35 !important;
}

.nofal-why-section__btn--ghost:hover {
    border-color: rgba(37, 170, 225, 0.35);
    color: #1a94c8 !important;
}

@media (max-width: 1024px) {
    .nofal-why-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nofal-why-section {
        padding: 44px 0 48px !important;
    }

    .nofal-why-section__head {
        margin-bottom: 28px;
    }

    .nofal-why-section__subtitle {
        font-size: 0.92rem;
    }

    .nofal-why-section__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nofal-why-section__card {
        padding: 18px 16px;
    }

    .nofal-why-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nofal-why-section__btn {
        width: 100%;
    }
}

/* nofal-process-showcase.php — work process timeline */
.nofal-process-section {
    position: relative;
    padding: 52px 0 56px !important;
    background: #fff;
    overflow: hidden;
}

.nofal-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(37, 170, 225, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 0% 100%, rgba(113, 180, 232, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.nofal-process-section .container {
    position: relative;
    z-index: 1;
}

.nofal-process-section__head {
    max-width: 680px;
    margin: 0 auto 36px;
}

.nofal-process-section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 170, 225, 0.08);
    color: #1a94c8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.nofal-process-section__title {
    margin: 0 0 12px;
    color: #1c1c35 !important;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.nofal-process-section__subtitle {
    margin: 0;
    color: #5f6b7d;
    font-size: 0.94rem;
    line-height: 1.8;
}

.nofal-process-section__timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process-step;
}

.nofal-process-section__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
    text-align: center;
}

.nofal-process-section__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, #25aae1 0%, rgba(113, 180, 232, 0.45) 100%);
    pointer-events: none;
}

.nofal-process-section__marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, #25aae1 0%, #1a94c8 100%);
    box-shadow: 0 6px 18px rgba(37, 170, 225, 0.28);
    color: #fff;
}

.nofal-process-section__num {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #1c1c35;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(28, 28, 53, 0.2);
}

html[dir="ltr"] .nofal-process-section__num {
    right: auto;
    left: -6px;
}

.nofal-process-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nofal-process-section__icon svg {
    width: 22px;
    height: 22px;
}

.nofal-process-section__card {
    padding: 16px 12px 18px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid rgba(28, 28, 53, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.nofal-process-section__step:hover .nofal-process-section__card {
    border-color: rgba(37, 170, 225, 0.2);
    box-shadow: 0 8px 24px rgba(37, 170, 225, 0.1);
    transform: translateY(-2px);
}

.nofal-process-section__card-title {
    margin: 0 0 8px;
    color: #1c1c35;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
}

.nofal-process-section__card-text {
    margin: 0;
    color: #5f6b7d;
    font-size: 0.78rem;
    line-height: 1.65;
}

.nofal-process-section__note {
    margin: 28px auto 20px;
    max-width: 560px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(37, 170, 225, 0.06);
    border: 1px solid rgba(37, 170, 225, 0.12);
    color: #3d4a5c;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}

.nofal-process-section__actions {
    display: flex;
    justify-content: center;
}

.nofal-process-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #25aae1 0%, #1a94c8 100%);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(37, 170, 225, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nofal-process-section__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

html[dir="rtl"] .nofal-process-section__btn svg {
    transform: scaleX(-1);
}

.nofal-process-section__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 170, 225, 0.3);
    color: #fff !important;
}

@media (max-width: 1100px) {
    .nofal-process-section__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .nofal-process-section__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .nofal-process-section {
        padding: 44px 0 48px !important;
    }

    .nofal-process-section__head {
        margin-bottom: 28px;
    }

    .nofal-process-section__timeline {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 420px;
        margin: 0 auto;
    }

    .nofal-process-section__step {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
        padding: 0 0 20px;
    }

    html[dir="rtl"] .nofal-process-section__step {
        text-align: right;
    }

    .nofal-process-section__step:not(:last-child) {
        border-bottom: 1px solid rgba(28, 28, 53, 0.06);
        margin-bottom: 20px;
    }

    .nofal-process-section__marker {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
    }

    .nofal-process-section__card {
        flex: 1;
        padding: 14px 14px 16px;
        text-align: inherit;
    }

    .nofal-process-section__note {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .nofal-process-section__btn {
        width: 100%;
        max-width: 420px;
    }
}

/* perf: content-visibility for below-fold sections */
.home .nofal-clients-showcase,.home .nofal-team-showcase,.home .nofal-why-section,.home .nofal-process-section{content-visibility:auto;contain-intrinsic-size:auto 600px}
/* image defaults */
.home img{height:auto;max-width:100%}
