/* ===================================================================
   Portfolio Service — SINGLE page (10 sections)
   1. Hero  2. How we work  3. Cards  4. Images  5. Videos
   6. Stats  7. Reports  8. Numbers  9. Reviews
   Each section has its own coordinated soft-tint background.
   =================================================================== */

/* ──────────── Tokens ──────────── */
.pfs-page {
    --pfs-brand:        #2f5aae;
    --pfs-brand-dark:   #244582;
    --pfs-accent:       #16c172;
    --pfs-accent-dark:  #119a5b;
    --pfs-cyan:         #0891b2;
    --pfs-purple:       #7c3aed;
    --pfs-amber:        #f59e0b;
    --pfs-rose:         #f43f5e;

    --pfs-ink:          #0f172a;
    --pfs-ink-2:        #334155;
    --pfs-ink-muted:    #64748b;
    --pfs-line:         #e2e8f0;

    /* Section background palette (coordinated soft tints) */
    --pfs-bg-hero:      linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
    --pfs-bg-how:       #ffffff;
    --pfs-bg-cards:     #f3f7ff;
    --pfs-bg-images:    #fffbf0;
    --pfs-bg-videos:    #0f172a;
    --pfs-bg-stats:     #f0fdf4;
    --pfs-bg-reports:   #faf5ff;
    --pfs-bg-numbers:   #eaf1ff;
    --pfs-bg-reviews:   #fff7ed;

    --pfs-radius:       18px;
    --pfs-radius-lg:    24px;
    --pfs-shadow:       0 4px 16px rgba(15, 23, 42, 0.06);
    --pfs-shadow-lg:    0 12px 36px rgba(15, 23, 42, 0.10);

    font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
    color: var(--pfs-ink);
    background: #fff;
    overflow-x: hidden;
    direction: rtl;
}

.pfs-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

.pfs-section {
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

/* ──────────── Decorative shapes (per-section) ──────────── */
.pfs-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.pfs-section > .pfs-container,
.pfs-section > .pfs-stats-slider-wrap,
.pfs-section > .pfs-reviews-slider-wrap {
    position: relative;
    z-index: 1;
}
.pfs-deco--blob1,
.pfs-deco--blob2 {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}
.pfs-deco--blob1 {
    top: -120px;
    inset-inline-end: -120px;
    background: radial-gradient(circle, rgba(47, 90, 174, 0.45), transparent 70%);
    animation: pfsBlobFloat 14s ease-in-out infinite;
}
.pfs-deco--blob2 {
    bottom: -140px;
    inset-inline-start: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(22, 193, 114, 0.35), transparent 70%);
    animation: pfsBlobFloat 16s ease-in-out infinite reverse;
}
@keyframes pfsBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -20px) scale(1.08); }
}
.pfs-deco--grid {
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(47, 90, 174, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(47, 90, 174, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 0%, transparent 80%);
}
.pfs-deco--dots {
    inset: 0;
    background-image: radial-gradient(circle, rgba(47, 90, 174, 0.10) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 90%);
}
.pfs-deco--quote {
    top: 40px;
    inset-inline-start: 60px;
    font-size: 280px;
    line-height: 0.6;
    color: var(--pfs-amber);
    opacity: 0.10;
    font-family: serif;
    font-weight: 900;
}
.pfs-deco--sparkle {
    color: var(--pfs-amber);
    font-size: 28px;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    animation: pfsSparkleSpin 4s ease-in-out infinite;
}
.pfs-deco--sparkle-1 {
    top: 14%;
    inset-inline-start: 8%;
    color: var(--pfs-amber);
}
.pfs-deco--sparkle-2 {
    bottom: 18%;
    inset-inline-end: 12%;
    color: var(--pfs-purple);
    font-size: 22px;
    animation-delay: 1.5s;
}
@keyframes pfsSparkleSpin {
    0%, 100% { opacity: 0.4; transform: rotate(0deg) scale(0.9); }
    50%      { opacity: 1;   transform: rotate(180deg) scale(1.2); }
}

/* Section-specific blob tinting */
.pfs-section--videos .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(47, 90, 174, 0.45), transparent 70%);
}
.pfs-section--videos .pfs-deco--blob2 {
    background: radial-gradient(circle, rgba(22, 193, 114, 0.30), transparent 70%);
}
.pfs-section--reports .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.30), transparent 70%);
}
.pfs-section--reports .pfs-deco--blob2 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
}
.pfs-section--stats .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(22, 193, 114, 0.30), transparent 70%);
}
.pfs-section--stats .pfs-deco--blob2 {
    background: radial-gradient(circle, rgba(8, 145, 178, 0.30), transparent 70%);
}
.pfs-section--reviews .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 70%);
}
.pfs-section--reviews .pfs-deco--blob2 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.30), transparent 70%);
}
.pfs-section--numbers .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(47, 90, 174, 0.28), transparent 70%);
}
.pfs-section--numbers .pfs-deco--blob2 {
    background: radial-gradient(circle, rgba(22, 193, 114, 0.25), transparent 70%);
}
.pfs-section--images .pfs-deco--blob1 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
}
.pfs-section--how      { background: var(--pfs-bg-how); }
.pfs-section--cards    { background: var(--pfs-bg-cards); }
.pfs-section--images   { background: var(--pfs-bg-images); }
.pfs-section--videos   { background: var(--pfs-bg-videos); color: #fff; }
.pfs-section--stats    { background: var(--pfs-bg-stats); }
.pfs-section--reports  { background: var(--pfs-bg-reports); }
.pfs-section--numbers  { background: var(--pfs-bg-numbers); }
.pfs-section--reviews  { background: var(--pfs-bg-reviews); }

/* Fade-in utility */
[data-pfs-fade] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-pfs-fade].pfs-in {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-pfs-fade] { opacity: 1; transform: none; transition: none; }
}

/* ──────────── Section heads ──────────── */
.pfs-head {
    margin-bottom: 44px;
}
.pfs-head--center { text-align: center; }
.pfs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(47, 90, 174, 0.10);
    color: var(--pfs-brand);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
}
.pfs-badge--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.pfs-head__title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 14px 0 8px;
}
.pfs-head--light .pfs-head__title { color: #fff; }
.pfs-head__sub {
    color: var(--pfs-ink-muted);
    font-size: 16.5px;
    margin: 0;
    line-height: 1.85;
}
.pfs-head--light .pfs-head__sub { color: rgba(255, 255, 255, 0.7); }

/* ──────────── Buttons ──────────── */
.pfs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}
.pfs-btn--primary {
    background: var(--pfs-accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(22, 193, 114, 0.35);
}
.pfs-btn--primary:hover {
    background: var(--pfs-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22, 193, 114, 0.45);
}
.pfs-btn--ghost {
    background: transparent;
    color: var(--pfs-ink);
    border-color: var(--pfs-line);
}
.pfs-btn--ghost:hover {
    border-color: var(--pfs-brand);
    color: var(--pfs-brand);
    background: rgba(47, 90, 174, 0.05);
}
.pfs-btn--ghost-dark {
    background: #fff;
    color: var(--pfs-brand);
    border-color: var(--pfs-brand);
}
.pfs-btn--ghost-dark:hover {
    background: var(--pfs-brand);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(47, 90, 174, 0.30);
}
.pfs-btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.pfs-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.pfs-section-cta {
    margin-top: 40px;
    text-align: center;
    position: relative;
}

/* ════════════════════ 1. HERO ════════════════════ */
.pfs-hero {
    background: var(--pfs-bg-hero);
    overflow: hidden;
}
.pfs-hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.pfs-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pfs-brand);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(47, 90, 174, 0.08);
    transition: background 0.2s ease, gap 0.25s ease;
}
.pfs-hero__back svg { transform: rotate(180deg); }
.pfs-hero__back:hover { background: rgba(47, 90, 174, 0.14); gap: 10px; }
.pfs-hero__eyebrow {
    display: inline-block;
    color: var(--pfs-brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(47, 90, 174, 0.10);
    border-radius: 99px;
}
.pfs-hero__title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    color: #000;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}
.pfs-hero__subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--pfs-brand-dark);
    font-weight: 700;
    margin: 0 0 14px;
}
.pfs-hero__desc {
    font-size: 17px;
    line-height: 1.85;
    color: var(--pfs-ink-2);
    margin: 0 0 30px;
    max-width: 560px;
}
.pfs-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.pfs-hero__media {
    position: relative;
    aspect-ratio: 4/3;
}
.pfs-hero__media-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--pfs-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
    border: 8px solid #fff;
    transform: rotate(-1.5deg);
}
.pfs-hero__media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pfs-hero__media-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.pfs-hero__media-deco--1 {
    top: -16px; right: -16px;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--pfs-amber), var(--pfs-rose));
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    animation: pfsDecoFloat 5s ease-in-out infinite;
}
.pfs-hero__media-deco--2 {
    bottom: -20px; left: -20px;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--pfs-accent), var(--pfs-cyan));
    box-shadow: 0 12px 28px rgba(22, 193, 114, 0.35);
    animation: pfsDecoFloat 6s ease-in-out infinite reverse;
}
@keyframes pfsDecoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-12px) scale(1.05); }
}

/* ════════════════════ 2. HOW WE WORK ════════════════════ */
.pfs-how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    counter-reset: pfs-how;
}
.pfs-how-step {
    --pfs-hs-color: var(--pfs-brand);
    --pfs-hs-grad-end: var(--pfs-accent);
    position: relative;
    padding: 30px 24px 26px;
    background: #fff;
    border: 1px solid var(--pfs-line);
    border-radius: var(--pfs-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.pfs-how-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pfs-hs-color), var(--pfs-hs-grad-end));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.pfs-how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--pfs-shadow-lg);
    border-color: var(--pfs-hs-color);
}
.pfs-how-step:hover::before { transform: scaleX(1); }
.pfs-how-step__num {
    position: absolute;
    top: 12px;
    inset-inline-end: 18px;
    font-size: 14px;
    font-weight: 900;
    color: var(--pfs-hs-color);
    opacity: 0.35;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}
.pfs-how-step:hover .pfs-how-step__num { opacity: 0.85; }
.pfs-how-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pfs-hs-color) 14%, #fff), #fff);
    border-radius: 20px;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}
.pfs-how-step:hover .pfs-how-step__icon {
    transform: scale(1.08) rotate(-4deg);
}
.pfs-how-step__title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.4;
}
.pfs-how-step__desc {
    color: var(--pfs-ink-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}
.pfs-how-step--0 { --pfs-hs-color: #2f5aae; --pfs-hs-grad-end: #16c172; }
.pfs-how-step--1 { --pfs-hs-color: #a855f7; --pfs-hs-grad-end: #ec4899; }
.pfs-how-step--2 { --pfs-hs-color: #f97316; --pfs-hs-grad-end: #ef4444; }
.pfs-how-step--3 { --pfs-hs-color: #0891b2; --pfs-hs-grad-end: #14b8a6; }

/* ════════════════════ 3. CARDS ════════════════════ */
.pfs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.pfs-card {
    --pfs-c-color: var(--pfs-brand);
    background: #fff;
    border: 1px solid var(--pfs-line);
    border-radius: var(--pfs-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pfs-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pfs-shadow-lg);
    border-color: var(--pfs-c-color);
}
.pfs-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--pfs-bg-cards);
}
.pfs-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pfs-card:hover .pfs-card__image img { transform: scale(1.05); }
.pfs-card__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pfs-card__title {
    font-size: 19px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.4;
}
.pfs-card__desc {
    color: var(--pfs-ink-muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0 0 18px;
    flex: 1;
}
.pfs-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 9px 18px;
    border-radius: 99px;
    background: var(--pfs-c-color);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.pfs-card__btn:hover {
    gap: 10px;
    background: var(--pfs-brand-dark);
    transform: translateY(-2px);
}
.pfs-card--0 { --pfs-c-color: #2f5aae; }
.pfs-card--1 { --pfs-c-color: #a855f7; }
.pfs-card--2 { --pfs-c-color: #f97316; }
.pfs-card--3 { --pfs-c-color: #0891b2; }

/* ════════════════════ 4. IMAGES GRID ════════════════════ */
.pfs-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.pfs-images-item {
    margin: 0;
    background: #fff;
    border-radius: var(--pfs-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pfs-images-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--pfs-shadow-lg);
}
.pfs-images-item__link {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: zoom-in;
}
.pfs-images-item__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pfs-images-item:hover img { transform: scale(1.06); }
.pfs-images-item__zoom {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pfs-images-item:hover .pfs-images-item__zoom { opacity: 1; }
.pfs-images-item__caption {
    padding: 14px 18px;
    color: var(--pfs-ink-2);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    text-align: center;
}

/* ════════════════════ 5. VIDEOS GRID ════════════════════ */
.pfs-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.pfs-video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pfs-radius);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.pfs-video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}
.pfs-video-card__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1e293b;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}
.pfs-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pfs-video-card__thumb:hover img { transform: scale(1.06); }
.pfs-video-card__thumb:disabled { cursor: default; opacity: 0.7; }
.pfs-video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: var(--pfs-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(22, 193, 114, 0.5);
    transition: transform 0.25s ease, background 0.25s ease;
}
.pfs-video-card__thumb:hover .pfs-video-card__play {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--pfs-accent-dark);
}
.pfs-video-card__play svg { margin-inline-start: 4px; }
.pfs-video-card__purpose {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
}
.pfs-video-card__caption {
    padding: 16px 22px 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 600;
    text-align: center;
}

/* ════════════════════ 6. STATS SCREENSHOTS — full-width slider ════════════════════ */
.pfs-stats-slider-wrap,
.pfs-reviews-slider-wrap {
    position: relative;
    padding-inline: clamp(24px, 6vw, 80px);
    margin-top: 12px;
}
.pfs-stats-swiper,
.pfs-reviews-swiper {
    width: 100%;
    padding: 16px 0 56px;
    overflow: visible;
}
.pfs-stats-swiper .swiper-slide,
.pfs-reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.pfs-stat-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(22, 193, 114, 0.18);
    border-radius: var(--pfs-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pfs-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pfs-shadow-lg);
    border-color: var(--pfs-accent);
}
.pfs-stat-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f8fafc;
}
.pfs-stat-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pfs-stat-card:hover img { transform: scale(1.04); }
.pfs-stat-card__zoom {
    position: absolute;
    bottom: 14px;
    inset-inline-end: 14px;
    width: 36px; height: 36px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pfs-stat-card:hover .pfs-stat-card__zoom { opacity: 1; }
.pfs-stat-card__value {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--pfs-accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(22, 193, 114, 0.4);
}
.pfs-stat-card__label {
    display: block;
    padding: 16px 22px 18px;
    color: var(--pfs-ink);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

/* ════════════════════ 7. REPORTS SCREENSHOTS ════════════════════ */
.pfs-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.pfs-report-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: var(--pfs-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pfs-report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pfs-shadow-lg);
    border-color: var(--pfs-purple);
}
.pfs-report-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
    cursor: zoom-in;
}
.pfs-report-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pfs-report-card:hover .pfs-report-card__image img { transform: scale(1.04); }
.pfs-report-card__zoom {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.40);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pfs-report-card__image:hover .pfs-report-card__zoom { opacity: 1; }
.pfs-report-card__body {
    padding: 18px 22px 22px;
}
.pfs-report-card__title {
    font-size: 16.5px;
    font-weight: 800;
    color: #000;
    margin: 0 0 8px;
    line-height: 1.45;
}
.pfs-report-card__desc {
    color: var(--pfs-ink-muted);
    font-size: 13.5px;
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════ 8. NUMBERS (counters) ════════════════════ */
.pfs-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}
.pfs-number {
    --pfs-n-color: var(--pfs-brand);
    --pfs-n-bg:    rgba(47, 90, 174, 0.10);
    padding: 32px 22px 28px;
    background: #fff;
    border: 1px solid var(--pfs-line);
    border-radius: var(--pfs-radius);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.pfs-number::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pfs-n-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.pfs-number::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--pfs-n-color);
    opacity: 0.10;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.pfs-number:hover {
    transform: translateY(-6px);
    box-shadow: var(--pfs-shadow-lg);
    border-color: var(--pfs-n-color);
}
.pfs-number:hover::before { transform: scaleX(1); }
.pfs-number:hover::after  { transform: scale(1.4); opacity: 0.18; }
.pfs-number__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pfs-n-color) 18%, #fff), #fff 80%);
    border-radius: 50%;
    box-shadow:
        0 12px 30px color-mix(in srgb, var(--pfs-n-color) 28%, transparent),
        inset 0 0 0 4px rgba(255, 255, 255, 0.55);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pfs-number:hover .pfs-number__icon {
    transform: scale(1.08) rotate(-6deg);
}
.pfs-number__icon .pf-color-icon {
    /* the inline color icon already has a tinted backdrop — neutralize it
       inside our circular wrapper for a cleaner image-icon look */
    background: transparent !important;
}
.pfs-number__value {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    color: var(--pfs-n-color);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.pfs-number__label {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--pfs-ink-2);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.5;
}
.pfs-number--0 { --pfs-n-color: #2f5aae; }
.pfs-number--1 { --pfs-n-color: #16c172; }
.pfs-number--2 { --pfs-n-color: #f97316; }
.pfs-number--3 { --pfs-n-color: #a855f7; }
.pfs-number--4 { --pfs-n-color: #0891b2; }

/* ════════════════════ 9. REVIEWS — full-width slider ════════════════════ */
.pfs-review {
    position: relative;
    width: 100%;
    padding: 32px 28px 28px;
    background: #fff;
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: var(--pfs-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pfs-review:hover {
    transform: translateY(-4px);
    box-shadow: var(--pfs-shadow-lg);
}
.pfs-review__quote-mark {
    position: absolute;
    top: 8px;
    inset-inline-end: 22px;
    font-size: 64px;
    line-height: 1;
    color: var(--pfs-amber);
    font-family: serif;
    opacity: 0.30;
}
.pfs-review__quote {
    color: var(--pfs-ink);
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0 0 18px;
    font-weight: 500;
}
.pfs-review__rating {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 20px;
}
.pfs-review__star {
    color: var(--pfs-line);
}
.pfs-review__star.is-on { color: var(--pfs-amber); }
.pfs-review__person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--pfs-line);
}
.pfs-review__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--pfs-amber);
}
.pfs-review__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pfs-review__meta {
    display: flex;
    flex-direction: column;
}
.pfs-review__name {
    color: #000;
    font-size: 15px;
    font-weight: 800;
}
.pfs-review__role {
    color: var(--pfs-ink-muted);
    font-size: 13px;
    font-weight: 600;
}

/* ════════════════════ MODAL (lightbox + video) ════════════════════ */
.pfs-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 32px;
}
.pfs-modal[hidden] { display: none; }
.pfs-modal.pfs-modal--open {
    opacity: 1;
    pointer-events: auto;
}
.pfs-modal__close,
.pfs-modal__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pfs-modal__close { top: 24px; left: 24px; }
.pfs-modal__nav { top: 50%; transform: translateY(-50%); }
.pfs-modal__nav--prev { right: 24px; }
.pfs-modal__nav--next { left: 24px; }
.pfs-modal__close:hover,
.pfs-modal__nav:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: scale(1.05);
}
.pfs-modal__nav:hover { transform: translateY(-50%) scale(1.05); }
.pfs-modal__body {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pfs-modal__body img,
.pfs-modal__body iframe,
.pfs-modal__body video {
    max-width: 100%;
    max-height: 86vh;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.pfs-modal__body iframe,
.pfs-modal__body video {
    width: min(1100px, 92vw);
    aspect-ratio: 16/9;
    height: auto;
    background: #000;
}
.pfs-modal__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
}

/* ════════════════════ THEMED DECO ICONS (per-section) ════════════════════ */

.pfs-deco-icon {
    display: block;
    pointer-events: none;
    color: currentColor;
}
.pfs-deco-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ─── HERO ─── */
.pfs-deco-icon--rocket {
    top: 18%;
    inset-inline-start: 4%;
    width: 90px; height: 90px;
    color: var(--pfs-amber);
    opacity: 0.18;
    animation: pfsDrift 9s ease-in-out infinite;
}
.pfs-deco-icon--dot1,
.pfs-deco-icon--dot2 {
    width: 18px; height: 18px;
    border-radius: 50%;
    opacity: 0.5;
}
.pfs-deco-icon--dot1 {
    top: 30%;
    inset-inline-start: 10%;
    background: var(--pfs-cyan);
    animation: pfsIdleBob 3.5s ease-in-out infinite;
}
.pfs-deco-icon--dot2 {
    bottom: 22%;
    inset-inline-start: 24%;
    width: 12px; height: 12px;
    background: var(--pfs-purple);
    animation: pfsIdleBob 4.5s ease-in-out infinite reverse;
}
.pfs-deco-icon--ring1 {
    top: 56%;
    inset-inline-start: 6%;
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 3px dashed rgba(47, 90, 174, 0.30);
    animation: pfsRotate 28s linear infinite;
}
@keyframes pfsRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─── HOW WE WORK ─── */
.pfs-deco-icon--gear {
    top: 18%;
    inset-inline-end: 6%;
    width: 110px; height: 110px;
    color: var(--pfs-brand);
    opacity: 0.06;
    animation: pfsRotate 30s linear infinite;
}
.pfs-deco-icon--target {
    bottom: 14%;
    inset-inline-start: 5%;
    width: 80px; height: 80px;
    color: var(--pfs-rose);
    opacity: 0.10;
    animation: pfsIdleBob 6s ease-in-out infinite;
}

/* ─── IMAGES ─── */
.pfs-deco-icon--camera {
    top: 12%;
    inset-inline-end: 5%;
    width: 100px; height: 100px;
    color: var(--pfs-amber);
    opacity: 0.10;
    transform: rotate(-8deg);
    animation: pfsDrift 10s ease-in-out infinite;
}
.pfs-deco-icon--frame {
    bottom: 10%;
    inset-inline-start: 6%;
    width: 80px; height: 80px;
    color: var(--pfs-brand);
    opacity: 0.10;
    transform: rotate(6deg);
    animation: pfsDrift 12s ease-in-out infinite reverse;
}

/* ─── VIDEOS (dark bg) ─── */
.pfs-deco-icon--play {
    top: 14%;
    inset-inline-start: 5%;
    width: 90px; height: 90px;
    color: var(--pfs-accent);
    opacity: 0.16;
    animation: pfsIdleBob 5s ease-in-out infinite;
}
.pfs-deco-icon--filmstrip {
    bottom: 14%;
    inset-inline-end: 5%;
    width: 130px; height: 130px;
    color: rgba(255, 255, 255, 0.08);
    transform: rotate(-12deg);
    animation: pfsDrift 14s ease-in-out infinite;
}

/* ─── STATS (analytics) ─── */
.pfs-deco-icon--bars {
    top: 14%;
    inset-inline-end: 5%;
    width: 100px; height: 100px;
    color: var(--pfs-accent);
    opacity: 0.14;
    animation: pfsIdleBob 5.5s ease-in-out infinite;
}
.pfs-deco-icon--linegraph {
    bottom: 18%;
    inset-inline-start: 6%;
    width: 110px; height: 110px;
    color: var(--pfs-cyan);
    opacity: 0.18;
    animation: pfsDrift 11s ease-in-out infinite reverse;
}
.pfs-deco-icon--percent {
    top: 60%;
    inset-inline-end: 12%;
    width: 60px; height: 60px;
    color: var(--pfs-accent);
    opacity: 0.14;
    transform: rotate(15deg);
    animation: pfsIdleBob 4s ease-in-out infinite;
}

/* ─── REPORTS (documents) ─── */
.pfs-deco-icon--document {
    top: 16%;
    inset-inline-end: 5%;
    width: 100px; height: 100px;
    color: var(--pfs-purple);
    opacity: 0.14;
    transform: rotate(-6deg);
    animation: pfsIdleBob 6s ease-in-out infinite;
}
.pfs-deco-icon--check {
    bottom: 16%;
    inset-inline-start: 6%;
    width: 90px; height: 90px;
    color: #ec4899;
    opacity: 0.14;
    animation: pfsDrift 10s ease-in-out infinite;
}

/* ─── NUMBERS ─── */
.pfs-deco-icon--bigpercent {
    top: 14%;
    inset-inline-end: 5%;
    width: 110px; height: 110px;
    color: var(--pfs-brand);
    opacity: 0.10;
    animation: pfsIdleBob 6s ease-in-out infinite;
}
.pfs-deco-icon--trend {
    bottom: 18%;
    inset-inline-start: 6%;
    width: 100px; height: 100px;
    color: var(--pfs-accent);
    opacity: 0.14;
    animation: pfsDrift 11s ease-in-out infinite reverse;
}

/* ─── REVIEWS ─── */
.pfs-deco-icon--star1 {
    top: 14%;
    inset-inline-start: 8%;
    width: 60px; height: 60px;
    color: var(--pfs-amber);
    opacity: 0.20;
    animation: pfsIdleBob 4s ease-in-out infinite;
}
.pfs-deco-icon--star2 {
    top: 22%;
    inset-inline-end: 12%;
    width: 40px; height: 40px;
    color: var(--pfs-amber);
    opacity: 0.16;
    animation: pfsIdleBob 5.5s ease-in-out infinite reverse;
}
.pfs-deco-icon--heart {
    bottom: 14%;
    inset-inline-end: 8%;
    width: 70px; height: 70px;
    color: var(--pfs-rose);
    opacity: 0.16;
    animation: pfsIdleBob 4.5s ease-in-out infinite;
}

/* Hide on small screens to avoid clutter */
@media (max-width: 760px) {
    .pfs-deco-icon { display: none; }
    /* Keep just one per section so it's not bare */
    .pfs-section--hero .pfs-deco-icon--ring1,
    .pfs-section--reviews .pfs-deco-icon--star2 { display: block; opacity: 0.10; }
}

/* Reduced motion: pause all deco animations */
@media (prefers-reduced-motion: reduce) {
    .pfs-deco-icon { animation: none !important; }
}

/* ════════════════════ EXTRA ANIMATIONS — across all sections ════════════════════ */

/* idle bob (icons / numbers / play button) */
@keyframes pfsIdleBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* pulse ring (around play buttons / live dots) */
@keyframes pfsPulseRing {
    0%   { box-shadow: 0 0 0 0   rgba(22, 193, 114, 0.55); }
    100% { box-shadow: 0 0 0 18px rgba(22, 193, 114, 0); }
}

/* shine sweep (over card images on hover) */
@keyframes pfsShineSweep {
    0%   { transform: translateX(-120%) skewX(-20deg); }
    100% { transform: translateX(220%)  skewX(-20deg); }
}

/* gentle wobble (icons inside hover) */
@keyframes pfsWobble {
    0%, 100% { transform: rotate(0deg); }
    25%      { transform: rotate(-6deg); }
    75%      { transform: rotate(6deg); }
}

/* badge pulse (stat value badges) */
@keyframes pfsBadgePulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 6px 16px rgba(22, 193, 114, 0.40); }
    50%      { transform: scale(1.08); box-shadow: 0 10px 22px rgba(22, 193, 114, 0.55); }
}

/* slow drift (decorations / shapes) */
@keyframes pfsDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(8px, -10px) rotate(2deg); }
    66%      { transform: translate(-6px, 6px) rotate(-2deg); }
}

/* sequential star reveal (reviews) */
@keyframes pfsStarsTwinkle {
    0%, 100% { transform: scale(1);    filter: brightness(1); }
    50%      { transform: scale(1.15); filter: brightness(1.3); }
}

/* ─── HERO image idle float ─── */
.pfs-hero__media-frame {
    animation: pfsIdleBob 6s ease-in-out infinite;
}

/* ─── How we work — icon idle bob, with stagger ─── */
.pfs-how-step.pfs-in .pfs-how-step__icon {
    animation: pfsIdleBob 4s ease-in-out infinite;
}
.pfs-how-step--0.pfs-in .pfs-how-step__icon { animation-delay: 0s; }
.pfs-how-step--1.pfs-in .pfs-how-step__icon { animation-delay: 1s; }
.pfs-how-step--2.pfs-in .pfs-how-step__icon { animation-delay: 2s; }
.pfs-how-step--3.pfs-in .pfs-how-step__icon { animation-delay: 3s; }

/* number badge pulses gently when section is in view */
.pfs-how-step.pfs-in .pfs-how-step__num {
    animation: pfsStarsTwinkle 3.5s ease-in-out infinite;
}

/* ─── Cards — shine sweep on hover ─── */
.pfs-card { isolation: isolate; }
.pfs-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: transform 0.7s ease;
}
.pfs-card:hover .pfs-card__image::after {
    animation: pfsShineSweep 0.8s ease;
}
.pfs-card__image { position: relative; overflow: hidden; }

/* ─── Images grid — slight tilt on hover ─── */
.pfs-images-item:hover .pfs-images-item__link img {
    transform: scale(1.08) rotate(-1deg);
}

/* ─── Videos — pulse ring around play button ─── */
.pfs-video-card__play::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--pfs-accent);
    animation: pfsPulseRing 2.4s ease-out infinite;
    pointer-events: none;
}
.pfs-video-card__play { position: relative; }
.pfs-video-card.pfs-in .pfs-video-card__play {
    animation: pfsIdleBob 5s ease-in-out infinite;
}

/* ─── Stats — badge value idle pulse ─── */
.pfs-stat-card.pfs-in .pfs-stat-card__value,
.pfs-stats-swiper .swiper-slide .pfs-stat-card__value {
    animation: pfsBadgePulse 2.8s ease-in-out infinite;
}

/* ─── Reports — slight tilt on hover ─── */
.pfs-report-card:hover { transform: translateY(-6px) rotate(-0.5deg); }

/* ─── Numbers — icon idle float, in-view ─── */
.pfs-number.pfs-in .pfs-number__icon {
    animation: pfsIdleBob 4s ease-in-out infinite;
}
.pfs-number--0.pfs-in .pfs-number__icon { animation-delay: 0s; }
.pfs-number--1.pfs-in .pfs-number__icon { animation-delay: 0.4s; }
.pfs-number--2.pfs-in .pfs-number__icon { animation-delay: 0.8s; }
.pfs-number--3.pfs-in .pfs-number__icon { animation-delay: 1.2s; }
.pfs-number--4.pfs-in .pfs-number__icon { animation-delay: 1.6s; }

/* ─── Reviews — quote mark drift, stars twinkle on view ─── */
.pfs-review__quote-mark {
    animation: pfsDrift 8s ease-in-out infinite;
    transform-origin: center;
}
.pfs-review__star.is-on { animation: pfsStarsTwinkle 3s ease-in-out infinite; }
.pfs-review__star.is-on:nth-child(1) { animation-delay: 0s; }
.pfs-review__star.is-on:nth-child(2) { animation-delay: 0.3s; }
.pfs-review__star.is-on:nth-child(3) { animation-delay: 0.6s; }
.pfs-review__star.is-on:nth-child(4) { animation-delay: 0.9s; }
.pfs-review__star.is-on:nth-child(5) { animation-delay: 1.2s; }
.pfs-review__avatar { transition: transform 0.3s ease; }
.pfs-review:hover .pfs-review__avatar {
    transform: scale(1.1) rotate(-4deg);
}

/* ─── Section heads — title slide up + shimmer ─── */
[data-pfs-fade].pfs-head .pfs-head__title { /* base entrance is via fade */ }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pfs-hero__media-frame,
    .pfs-how-step__icon,
    .pfs-how-step__num,
    .pfs-video-card__play,
    .pfs-video-card__play::before,
    .pfs-stat-card__value,
    .pfs-number__icon,
    .pfs-review__quote-mark,
    .pfs-review__star.is-on,
    .pfs-card__image::after,
    .pfs-deco--blob1,
    .pfs-deco--blob2,
    .pfs-deco--sparkle {
        animation: none !important;
    }
}

/* ════════════════════ SLIDER nav + pagination ════════════════════ */
.pfs-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--pfs-line);
    color: var(--pfs-brand);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    z-index: 5;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.pfs-slider-nav:hover {
    background: var(--pfs-brand);
    color: #fff;
    border-color: var(--pfs-brand);
    transform: translateY(-50%) scale(1.06);
}
.pfs-slider-nav.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}
/* RTL: prev button sits on the right (older items), next on the left (newer items) */
.pfs-slider-nav--prev { right: clamp(8px, 2vw, 24px); }
.pfs-slider-nav--next { left:  clamp(8px, 2vw, 24px); }

/* Match nav color to section accent */
.pfs-section--reviews .pfs-slider-nav { color: #c2410c; }
.pfs-section--reviews .pfs-slider-nav:hover { background: #f97316; border-color: #f97316; color: #fff; }
.pfs-section--stats .pfs-slider-nav { color: var(--pfs-accent-dark); }
.pfs-section--stats .pfs-slider-nav:hover { background: var(--pfs-accent); border-color: var(--pfs-accent); color: #fff; }

/* Swiper pagination dots */
.pfs-stats-swiper .swiper-pagination,
.pfs-reviews-swiper .swiper-pagination {
    position: absolute;
    bottom: 8px !important;
    inset-inline-start: 0;
    inset-inline-end: 0;
    text-align: center;
    z-index: 3;
}
.pfs-stats-swiper .swiper-pagination-bullet,
.pfs-reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(15, 23, 42, 0.20);
    opacity: 1;
    margin: 0 5px;
    transition: width 0.25s ease, background 0.25s ease;
}
.pfs-stats-swiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: var(--pfs-accent);
}
.pfs-reviews-swiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: #f97316;
}

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 980px) {
    .pfs-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .pfs-hero__media { max-width: 480px; margin-inline: auto; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
    .pfs-section { padding: 56px 0; }
    .pfs-hero__title { font-size: 28px; }
    .pfs-images-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pfs-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .pfs-number__icon { width: 78px; height: 78px; }
    .pfs-modal { padding: 16px; }
    .pfs-modal__close { top: 14px; left: 14px; }
    .pfs-modal__nav--prev { right: 12px; }
    .pfs-modal__nav--next { left: 12px; }
    .pfs-btn { padding: 12px 22px; font-size: 14px; }
    .pfs-slider-nav { display: none; }
    .pfs-deco--quote { font-size: 180px; top: 20px; inset-inline-start: 24px; }
}
