/*
 * Data Recovery - warstwa hubu /data-recovery/
 *
 * Wyniesione z bloku Gutenberga hubu dnia 14.08.2026.
 * Tresc bajtowo taka sama jak inline, ktory zastepuje - jedyne zmiany
 * opisane sa w naglowku pliku. Kolejnosc ladowania pilnuje
 * includes/core/dr-cluster-assets.php.
 */


    :root {
        /* Color Palette */
        --primary-color: light-dark(#00aac4, var(--teal-300));
        --primary-dark: var(--action);
        --primary-darker: var(--action-hover);
        --accent-color: var(--accent-warm);
        --dark-color: light-dark(#121212, var(--content));
        --light-color: var(--surface);
        --grey-100: light-dark(#f8f9fa, var(--surface-alt));
        --grey-300: light-dark(#e8e8e8, var(--surface-fill));
        --grey-900: light-dark(#212529, var(--content));

        /* Semantic Colors */
        --text-primary: light-dark(#222222, var(--content));
        --text-secondary: light-dark(#444444, var(--content-body));
        --text-muted: light-dark(#666666, var(--content-secondary));
        --bg-primary: var(--surface);
        --border-color: var(--border-interactive);

        /* Typography Scale */

        /* Line Heights */
        --leading-normal: 1.5;
        --leading-relaxed: 1.625;

        /* Font Weights */
        --font-medium: 500;
        --font-semibold: 600;
        --font-bold: 700;

        /* Spacing Scale */
        --space-5: 1.5rem;
        --space-6: 2rem;
        --space-7: 3rem;
        --space-8: 4rem;
        --space-9: 5rem;

        /* Elevation (Shadows) */
        --shadow-strong: none;

        /* Border Radius */
        --radius-sm: 4px;
        --radius-base: 9px;
        --radius-lg: 12px;
        --radius-full: 9999px;

        /* Transitions */
        --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

        /* Transforms */
        --transform-subtle: none;
        --transform-normal: none;
        --transform-strong: none;

        /* Scales */
        --scale-subtle: none;
        --scale-normal: none;
        --scale-strong: none;

        /* Z-index Scale */
        --z-10: 10;
        --z-20: 20;
        --z-30: 30;

        /* Layout */
        --container-max-width: 1320px;
        --section-padding-y: var(--space-9);
        --section-padding-x: var(--space-6);
    }
    
    /* =============================================
       GLOBAL RESET & BASE STYLES
    ============================================= */
    
    /* Box sizing reset */
    #ff-dr *, #ff-dr *::before, #ff-dr *::after {
        box-sizing: border-box;
    }

    /* Smooth scroll and anchor offset */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 20px;
    }

    /* Set Inter font for text elements */
    #ff-dr h1, #ff-dr h2, #ff-dr h3, #ff-dr h4, #ff-dr h5, #ff-dr h6,
    #ff-dr p, #ff-dr span:not([class*="fa"]), #ff-dr a,
    #ff-dr div:not([class*="icon"]), #ff-dr label,
    #ff-dr input, #ff-dr textarea, #ff-dr button {
        font-family: var(--font-stack);
    }

    /* Improved touch target sizes for touch devices */
    @media (hover: none) and (pointer: coarse) {
        #ff-dr .fixfactor-button,
        #ff-dr .fixfactor-faq-label,
        #ff-dr button {
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            min-height: 44px;
        }
    }
    
    /* =============================================
       UTILITY CLASSES
    ============================================= */
    
    /* Layout Utilities */
    #ff-dr .fixfactor-container {
        max-width: var(--container-max-width);
        width: 100%;
        margin: 0 auto;
        padding: 0 var(--section-padding-x);
    }

    /* Card Base */
    #ff-dr .fixfactor-card {
        background-color: var(--bg-primary);
        border-radius: var(--radius-base);
        box-shadow: none;
        transition: var(--transition);
        border: 1px solid var(--border-color);
    }

    #ff-dr .fixfactor-card:hover {
        transform: var(--transform-strong);
        box-shadow: none;
        border-color: var(--primary-dark);
    }

    /* Section Base */
    #ff-dr .fixfactor-section {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
    }

    /* Button Base */
    #ff-dr .fixfactor-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        font-weight: var(--font-semibold);
        text-align: center;
        border-radius: var(--radius-base);
        transition: var(--transition);
        cursor: pointer;
        text-decoration: none;
        box-shadow: none;
    }

    #ff-dr .fixfactor-button:hover {
        transform: var(--transform-subtle);
        box-shadow: none;
    }

    #ff-dr .fixfactor-button-primary {
        background: var(--primary-dark);
        color: var(--on-action);
        border: 2px solid transparent;
    }

    #ff-dr .fixfactor-button-primary:hover {
        background: var(--primary-darker);
    }

    #ff-dr .fixfactor-button-secondary {
        background-color: transparent;
        color: var(--primary-dark);
        border: 2px solid var(--primary-color);
    }

    #ff-dr .fixfactor-button-secondary:hover {
        background-color: var(--wash-brand-soft);
        color: var(--primary-dark);
        border-color: var(--primary-dark);
        box-shadow: none;
    }

    /* Focus States */
    #ff-dr .fixfactor-focusable:focus,
    #ff-dr .fixfactor-button:focus,
    #ff-dr .fixfactor-faq-label:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    #ff-dr .fixfactor-focusable:focus:not(:focus-visible) {
        outline: none;
    }

    /* =============================================
       TYPOGRAPHY RESET — clears browser defaults on headings.
       #ff-dr ID specificity already beats Avada class selectors,
       so no needed. Component styles override via source order.
    ============================================= */

    #ff-dr .fixfactor-hero h1,
    #ff-dr .fixfactor-section-header h2,
    #ff-dr .fixfactor-process-title,
    #ff-dr .fixfactor-feature-title,
    #ff-dr .fixfactor-priority-name,
    #ff-dr .fixfactor-scenario-title,
    #ff-dr .fixfactor-faq-question,
    #ff-dr .fixfactor-service-title,
    #ff-dr .fixfactor-reviews-header h2,
    #ff-dr .fixfactor-specialist-content h2,
    #ff-dr .fixfactor-specialist-content h3 {
        color: inherit;
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        margin: 0;
        padding: 0;
        font-family: inherit;
        letter-spacing: inherit;
        background: none;
        border: none;
        text-transform: none;
    }
    
    /* =============================================
       HERO SECTION
    ============================================= */
    
    #ff-dr .fixfactor-hero {
        position: relative;
        min-height: 500px;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, rgba(0, 170, 196, 0.07) 0%, rgba(0, 170, 196, 0.03) 100%);
        overflow: hidden;
        color: var(--text-primary);
        padding: var(--space-5) 0;
    }

    #ff-dr .fixfactor-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(0deg, rgba(0, 170, 196, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 170, 196, 0.03) 1px, transparent 1px),
            radial-gradient(circle at center, var(--wash-brand-faint) 1px, transparent 1px),
            radial-gradient(circle at center, rgba(0, 170, 196, 0.03) 2px, transparent 2px);
        background-size: 25px 25px, 25px 25px, 40px 40px, 50px 50px;
        pointer-events: none;
        z-index: 1;
    }

    #ff-dr .fixfactor-hero-wrapper {
        max-width: var(--container-max-width);
        width: 100%;
        margin: 0 auto;
        padding: 0 var(--section-padding-x);
        position: relative;
        min-height: 480px;
        display: flex;
        align-items: center;
    }

    #ff-dr .fixfactor-hero-image {
        position: absolute;
        top: 0;
        right: var(--section-padding-x);
        width: calc(55% - var(--section-padding-x));
        height: 100%;
        background-color: var(--grey-100);
        clip-path: url(#ff-dr-hero-clip);
        overflow: hidden;
    }

    #ff-dr .fixfactor-hero-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    #ff-dr .fixfactor-hero-content {
        max-width: 550px;
        position: relative;
        z-index: var(--z-20);
    }

    #ff-dr .fixfactor-hero-badge {
        display: inline-block;
        font-size: var(--text-base);
        font-weight: var(--font-semibold);
        color: var(--primary-dark);
        margin-bottom: var(--space-5);
        letter-spacing: 0.5px;
        position: relative;
        text-align: inherit;
    }

    #ff-dr .fixfactor-hero-badge::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 2px;
        background: var(--accent-color);
        transform: none;
    }

    #ff-dr section.fixfactor-hero h1,
    #ff-dr section.fixfactor-hero h1.entry-title,
    #ff-dr .fixfactor-hero h1 {
        font-size: var(--text-5xl);
        font-weight: 800;
        margin-bottom: var(--space-5);
        line-height: 1.2;
        letter-spacing: -0.03em;
        color: var(--content);
        -webkit-text-stroke: 0;
        font-family: var(--font-stack);
    }

    #ff-dr .fixfactor-hero h1 .fixfactor-gradient {
        color: var(--primary-dark);
        display: block;
        font-weight: 800;
    }

    #ff-dr .fixfactor-hero p {
        font-size: clamp(15px, 1.6vw, 17px);
        line-height: 1.65;
        margin-bottom: 0;
        color: var(--content);
        max-width: 520px;
    }

    #ff-dr .fixfactor-hero-buttons {
        display: flex;
        gap: 0.875rem;
        margin-top: 2rem;
        margin-bottom: var(--space-7);
    }

    #ff-dr .fixfactor-hero-buttons .fixfactor-button {
        box-shadow: none;
    }

    #ff-dr .fixfactor-hero-buttons .fixfactor-button:hover {
        box-shadow: none;
    }

    #ff-dr .fixfactor-hero-ratings {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-top: var(--space-2);
    }

    #ff-dr .fixfactor-rating-badge {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    #ff-dr .fixfactor-rating-badge:hover {
        opacity: 0.8;
    }

    #ff-dr .fixfactor-rating-logo {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    #ff-dr .fixfactor-rating-stars {
        display: flex;
        gap: 2px;
    }

    #ff-dr .fixfactor-rating-star {
        width: 16px;
        height: 16px;
        fill: var(--accent-warm);
    }

    #ff-dr .fixfactor-rating-star-box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background: #00B67A;
        border-radius: 2px;
    }

    #ff-dr .fixfactor-rating-star-box .fixfactor-rating-star {
        width: 12px;
        height: 12px;
        fill: white;
    }

    #ff-dr .fixfactor-rating-number {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1;
        margin-left: 0.25rem;
    }

    #ff-dr .fixfactor-rating-text {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1;
    }

    #ff-dr .fixfactor-rating-divider {
        width: 1px;
        height: 20px;
        background: rgba(0, 0, 0, 0.2);
    }
    
    /* =============================================
       SECTION HEADERS
    ============================================= */
    
    #ff-dr .fixfactor-section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto var(--space-8);
    }

    #ff-dr .fixfactor-section-header h2 {
        font-size: var(--text-4xl);
        font-weight: var(--font-bold);
        margin-bottom: -5px;
        color: var(--text-primary);
        position: relative;
        display: inline-block;
        letter-spacing: -0.5px;
        padding-bottom: 20px;
    }


    #ff-dr .fixfactor-section-header p {
        font-size: var(--text-lg);
        color: var(--text-secondary);
        margin-top: var(--space-6);
        line-height: var(--leading-relaxed);
    }
    
    /* =============================================
       SERVICES SECTION
    ============================================= */
    
    #ff-dr .fixfactor-services {
        padding: var(--section-padding-y) 0;
        background-color: var(--bg-primary);
        position: relative;
        z-index: var(--z-10);
    }

    #ff-dr .fixfactor-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
        margin-top: var(--space-7);
    }

    #ff-dr .fixfactor-service-card {
        position: relative;
        background-color: var(--bg-primary);
        border-radius: var(--radius-base);
        box-shadow: none;
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 360px;
        border: 1px solid var(--border-color);
        text-decoration: none;
        color: inherit;
    }

    #ff-dr .fixfactor-service-card:hover {
        transform: var(--scale-subtle);
        box-shadow: none;
        border-color: var(--primary-dark);
        border-width: 2px;
    }

    #ff-dr .fixfactor-service-image {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--space-4);
        background: linear-gradient(135deg, rgba(0, 170, 196, 0.02) 0%, var(--wash-brand-soft) 100%);
        overflow: hidden;
    }

    #ff-dr .fixfactor-service-image img {
        width: 125px;
        height: 125px;
        object-fit: contain;
        transition: var(--transition);
        aspect-ratio: 1/1;
    }

    #ff-dr .fixfactor-service-card:hover .fixfactor-service-image img {
        transform: var(--scale-normal);
    }

    #ff-dr .fixfactor-service-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: var(--space-5);
        position: relative;
        height: 200px;
    }

    #ff-dr .fixfactor-service-title {
        font-size: var(--text-lg);
        font-weight: var(--font-semibold);
        margin-bottom: var(--space-3);
        color: var(--text-primary);
    }

    #ff-dr .fixfactor-service-text {
        font-size: var(--text-sm);
        color: var(--text-secondary);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-4);
        min-height: 76px;
        max-height: 76px;
    }
    
    
    /* =============================================
       PROCESS SECTION
    ============================================= */
    
    #ff-dr .fixfactor-process {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
        background:
            var(--surface); /* v4 §7: flat background alternation */
        overflow: hidden;
    }

    #ff-dr .fixfactor-process::before {
        content: '';
        position: absolute;
        top: 20%;
        left: -10%;
        width: 450px;
        height: 450px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-process::after {
        content: '';
        position: absolute;
        bottom: 10%;
        right: -5%;
        width: 350px;
        height: 350px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-process .fixfactor-container {
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-process-timeline {
        position: relative;
        max-width: 900px;
        margin: var(--space-8) auto 0;
        padding: 0 var(--space-6);
    }

    #ff-dr .fixfactor-process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: var(--accent);
        border-radius: var(--radius-sm);
    }

    #ff-dr .fixfactor-process-item {
        position: relative;
        display: flex;
        margin-bottom: var(--space-8);
    }

    #ff-dr .fixfactor-process-item:last-child {
        margin-bottom: 0;
    }

    #ff-dr .fixfactor-process-item:nth-child(odd) {
        justify-content: flex-end;
    }

    #ff-dr .fixfactor-process-content {
        width: 48%;
        padding: var(--space-5);
        background-color: var(--bg-primary);
        border-radius: var(--radius-base);
        box-shadow: none;
        position: relative;
        z-index: var(--z-20);
        transition: var(--transition);
        border: 1px solid var(--border-color);
    }

    #ff-dr .fixfactor-process-item:hover .fixfactor-process-content {
        transform: var(--transform-normal);
        box-shadow: none;
    }

    #ff-dr .fixfactor-process-content::before {
        content: '';
        position: absolute;
        top: 30px;
        width: 20px;
        height: 20px;
        background-color: var(--bg-primary);
        transform: rotate(45deg);
        z-index: var(--z-10);
        border: 1px solid var(--border-color);
    }

    #ff-dr .fixfactor-process-item:nth-child(odd) .fixfactor-process-content::before {
        left: -10px;
        border-width: 0 0 1px 1px;
    }

    #ff-dr .fixfactor-process-item:nth-child(even) .fixfactor-process-content::before {
        right: -10px;
        border-width: 0 1px 1px 0;
    }

    #ff-dr .fixfactor-process-number {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        background-color: var(--primary-dark);
        color: var(--on-action);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: var(--font-bold);
        font-size: var(--text-xl);
        z-index: var(--z-30);
        border: 4px solid var(--bg-primary);
        box-shadow: none;
    }

    #ff-dr .fixfactor-process-title {
        font-size: var(--text-lg);
        font-weight: var(--font-semibold);
        margin-bottom: 0;
        color: var(--text-primary);
        display: block;
        width: 100%;
    }

    #ff-dr .fixfactor-process-text {
        font-size: var(--text-sm);
        color: var(--text-secondary);
        line-height: var(--leading-relaxed);
    }

    #ff-dr .fixfactor-process-content .fixfactor-process-badge {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: var(--font-medium);
        color: var(--primary-dark);
        background: transparent;
        padding: 3px 8px;
        margin-top: 6px;
        margin-bottom: 12px;
        letter-spacing: 0.3px;
        opacity: 0.8;
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        text-align: left;
        line-height: 1.3;
        float: none;
        clear: both;
    }

    /* =============================================
       PRIORITY LEVELS SECTION
    ============================================= */
    
    #ff-dr .fixfactor-priority {
        padding: var(--section-padding-y) 0;
        background: var(--bg-primary);
        position: relative;
        z-index: var(--z-10);
    }


    #ff-dr .fixfactor-priority-levels {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
        margin-top: var(--space-7);
    }

    #ff-dr .fixfactor-priority-card {
        background-color: var(--bg-primary);
        border-radius: var(--radius-base);
        overflow: hidden;
        transition: var(--transition);
        box-shadow: none;
        border: 1px solid var(--border-color);
        height: 100%;
    }

    #ff-dr .fixfactor-priority-card:hover {
        border-color: var(--border-active);
        box-shadow: none;
    }

    #ff-dr .fixfactor-priority-header {
        padding: var(--space-6);
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    /* Escalating teal shades — AA-safe (white text passes on all three) */
    #ff-dr .fixfactor-priority-normal .fixfactor-priority-header {
        background: var(--action);
        color: var(--on-action);
    }

    #ff-dr .fixfactor-priority-priority .fixfactor-priority-header {
        background: var(--action-hover);
        color: var(--on-action);
    }

    #ff-dr .fixfactor-priority-emergency .fixfactor-priority-header {
        background: #0a2a33;
        color: #ffffff;
    }

    #ff-dr .fixfactor-priority-name {
        font-size: var(--text-2xl);
        font-weight: var(--font-bold);
        margin-bottom: var(--space-2);
        color: inherit;
    }

    #ff-dr .fixfactor-priority-time {
        font-size: var(--text-base);
        font-weight: var(--font-medium);
        color: inherit;
    }

    #ff-dr .fixfactor-priority-body {
        padding: var(--space-6);
    }

    #ff-dr .fixfactor-priority-feature {
        display: flex;
        align-items: flex-start;
        gap: var(--space-4);
        margin-bottom: var(--space-4);
    }

    #ff-dr .fixfactor-priority-feature i {
        color: var(--primary-dark);
        margin-top: 0.2rem;
        font-size: 14px;
        flex-shrink: 0;
        opacity: 0.7;
    }

    #ff-dr .fixfactor-priority-feature span {
        font-size: var(--text-sm);
        line-height: var(--leading-normal);
        color: var(--text-secondary);
    }
    
    /* =============================================
       WHY CHOOSE US SECTION - MODULAR SYSTEM
    ============================================= */

    #ff-dr .fixfactor-why-us {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
        background-color: var(--bg-primary);
    }

    #ff-dr .fixfactor-why-us .fixfactor-container {
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-why-us .fixfactor-section-header h2 {
        color: var(--text-primary);
        text-shadow: none;
    }

    #ff-dr .fixfactor-why-us .fixfactor-section-header p {
        color: var(--text-muted);
    }

    /* Modular Grid System */
    #ff-dr .fixfactor-modules-wrapper {
        position: relative;
        margin-top: var(--space-7);
    }

    #ff-dr .fixfactor-modules-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
        position: relative;
    }

    #ff-dr .fixfactor-module-connector {
        position: absolute;
        stroke: var(--primary-color);
        stroke-width: 2;
        fill: none;
        opacity: 0.3;
        pointer-events: none;
        z-index: 0;
    }

    /* Module Cards with Scan Hover Effect */
    #ff-dr .fixfactor-module-item {
        background: var(--light-color);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-base);
        padding: var(--space-6) var(--space-5);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1;
    }

    /* Scan sweep removed — clean border-color + subtle tint hover instead */
    #ff-dr .fixfactor-module-item::before { content: none; /* v4 §9: decorative-only animation removed */ }

    #ff-dr .fixfactor-module-item:hover {
        border-color: var(--border-active);
        background: rgba(0, 170, 196, 0.035);
        box-shadow: none;
    }

    #ff-dr .fixfactor-module-badge {
        display: inline-block;
        background: rgba(0, 170, 196, 0.10);
        color: var(--primary-dark);
        font-size: var(--text-xs);
        font-weight: var(--font-bold);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 6px 12px;
        border-radius: 6px;
        margin-bottom: var(--space-4);
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-module-content {
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-module-content h3 {
        font-size: var(--text-xl);
        font-weight: var(--font-bold);
        color: var(--text-primary);
        margin-bottom: var(--space-3);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #ff-dr .fixfactor-module-content h3 i {
        font-size: var(--text-2xl);
        color: var(--primary-dark);
    }

    #ff-dr .fixfactor-module-content p {
        font-size: var(--text-sm);
        color: var(--text-secondary);
        line-height: var(--leading-relaxed);
    }

    /* Responsive */
    @media (max-width: 768px) {
        #ff-dr .fixfactor-modules-grid {
            grid-template-columns: 1fr;
        }

        #ff-dr .fixfactor-module-connector {
            display: none;
        }
    }
    
    /* =============================================
       SCENARIOS SECTION - DIAGONAL CASCADE
    ============================================= */

    #ff-dr .fixfactor-scenarios {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
        background:
            var(--surface); /* v4 §7: flat background alternation */
        overflow: hidden;
    }

    #ff-dr .fixfactor-scenarios::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-scenarios::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-scenarios .fixfactor-container {
        position: relative;
        z-index: 1;
    }

    /* Diagonal Cascade Container */
    #ff-dr .fixfactor-scenarios-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 1200px;
        margin: var(--space-7) auto 0;
    }

    #ff-dr .fixfactor-scenario-row {
        display: flex;
        gap: 20px;
        animation: slideInDiagonal 0.8s ease-out backwards;
    }

    #ff-dr .fixfactor-scenario-row:nth-child(1) {
        animation-delay: 0.1s;
        margin-left: 0;
    }

    #ff-dr .fixfactor-scenario-row:nth-child(2) {
        animation-delay: 0.2s;
        margin-left: 60px;
    }

    @keyframes slideInDiagonal {
        from {
            opacity: 0;
            transform: translate(-50px, 50px);
        }
        to {
            opacity: 1;
            transform: translate(0, 0);
        }
    }

    #ff-dr .fixfactor-scenario-card {
        flex: 1;
        background: var(--light-color);
        border: 1px solid var(--border-color);
        padding: var(--space-7) var(--space-6);
        border-radius: var(--radius-lg);
        transition: border-color 0.25s ease;
        position: relative;
        overflow: hidden;
    }

    #ff-dr .fixfactor-scenario-card:hover {
        border-color: var(--border-active);
        box-shadow: none;
    }

    #ff-dr .fixfactor-scenario-content {
        transform: none;
        position: relative;
        z-index: 1;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #ff-dr .fixfactor-scenario-card:hover .fixfactor-scenario-content {
        transform: none;
    }

    #ff-dr .fixfactor-scenario-icon {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(0, 170, 196, 0.10);
        font-size: 100px;
        transition: color 0.3s ease;
        z-index: 0;
        pointer-events: none;
    }

    #ff-dr .fixfactor-scenario-card:hover .fixfactor-scenario-icon {
        color: var(--wash-brand);
    }

    #ff-dr .fixfactor-scenario-title {
        font-size: var(--text-2xl);
        font-weight: var(--font-bold);
        margin-bottom: var(--space-3);
        color: var(--text-primary);
    }

    #ff-dr .fixfactor-scenario-text {
        color: var(--text-secondary);
        margin-bottom: var(--space-5);
        line-height: var(--leading-relaxed);
        font-size: var(--text-sm);
    }

    #ff-dr .fixfactor-scenario-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #ff-dr .fixfactor-scenario-list li {
        padding: var(--space-2) 0 var(--space-2) var(--space-6);
        color: var(--text-secondary);
        position: relative;
        font-size: var(--text-sm);
        line-height: var(--leading-relaxed);
    }

    #ff-dr .fixfactor-scenario-list li::before {
        content: '—';
        position: absolute;
        left: 0;
        color: var(--primary-dark);
        font-weight: var(--font-bold);
    }

    /* Responsive */
    @media (max-width: 768px) {
        #ff-dr .fixfactor-scenario-row {
            flex-direction: column;
            margin-left: 0;
        }

        #ff-dr .fixfactor-scenario-card {
            transform: skewY(0deg);
        }

        #ff-dr .fixfactor-scenario-card:hover {
            transform: skewY(0deg);
        }

        #ff-dr .fixfactor-scenario-content,
        #ff-dr .fixfactor-scenario-card:hover .fixfactor-scenario-content {
            transform: skewY(0deg);
        }

        #ff-dr .fixfactor-scenario-icon,
        #ff-dr .fixfactor-scenario-card:hover .fixfactor-scenario-icon {
            transform: skewY(0deg);
        }

        #ff-dr .fixfactor-scenario-card:hover .fixfactor-scenario-icon {
            transform: none;
        }
    }
    
    /* =============================================
       GALLERY SECTION
    ============================================= */
    
    #ff-dr .fixfactor-gallery {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
        background:
            var(--surface); /* v4 §7: flat background alternation */
        overflow: hidden;
    }

    #ff-dr .fixfactor-gallery::before {
        content: '';
        position: absolute;
        top: -25%;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 800px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-gallery::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: 15%;
        width: 650px;
        height: 650px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-gallery .fixfactor-container {
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-4);
        margin-top: var(--space-7);
    }

    #ff-dr .fixfactor-gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-base);
        height: 220px;
        box-shadow: none;
        transition: var(--transition);
        background-color: var(--grey-300);
    }

    #ff-dr .fixfactor-gallery-item:hover {
        box-shadow: none;
        transform: var(--transform-strong);
    }

    #ff-dr .fixfactor-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    #ff-dr .fixfactor-gallery-item:hover img {
        transform: var(--scale-strong);
    }

    #ff-dr .fixfactor-gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        opacity: 0;
        transition: var(--transition);
        display: flex;
        align-items: flex-end;
        padding: var(--space-5);
    }

    #ff-dr .fixfactor-gallery-item:hover .fixfactor-gallery-overlay {
        opacity: 1;
    }

    #ff-dr .fixfactor-gallery-title {
        /* The overlay under this caption is a black gradient in BOTH registers,
           so its ink must not follow one. --content-inverse is always white. */
        color: var(--content-inverse);
        font-size: var(--text-base);
        font-weight: var(--font-medium);
    }
    
    /* =============================================
       FAQ SECTION
    ============================================= */
    
    #ff-dr .fixfactor-faq {
        padding: var(--section-padding-y) 0;
        background-color: var(--bg-primary);
        position: relative;
        box-shadow: none;
        z-index: var(--z-10);
    }

    #ff-dr .fixfactor-faq-container {
        max-width: 900px;
        margin: var(--space-7) auto 0;
    }

    #ff-dr .fixfactor-faq-item {
        margin-bottom: var(--space-5);
    }

    #ff-dr .fixfactor-faq-toggle {
        position: absolute;
        opacity: 0;
        left: -9999px;
    }

    #ff-dr .fixfactor-faq-label {
        position: relative;
        display: block;
        padding: var(--space-5) var(--space-7) var(--space-5) var(--space-5);
        background-color: var(--bg-primary);
        border-radius: var(--radius-base);
        box-shadow: none;
        font-weight: var(--font-semibold);
        font-size: var(--text-lg);
        color: var(--text-primary);
        cursor: pointer;
        transition: var(--transition);
        border: 1px solid var(--border-color);
    }

    #ff-dr .fixfactor-faq-label::after {
        content: '+';
        font-size: var(--text-2xl);
        font-weight: var(--font-medium);
        position: absolute;
        right: var(--space-5);
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-dark);
        transition: var(--transition);
    }

    #ff-dr .fixfactor-faq-toggle:checked + .fixfactor-faq-label {
        color: var(--primary-dark);
        border-radius: var(--radius-base) var(--radius-base) 0 0;
        border-bottom-color: transparent;
    }

    #ff-dr .fixfactor-faq-toggle:checked + .fixfactor-faq-label::after {
        content: '−';
        color: var(--primary-dark);
    }

    /* Smooth grid-rows accordion — animates to natural height, no max-height jank */
    #ff-dr .fixfactor-faq-content {
        display: grid;
        grid-template-rows: minmax(0, 0fr);
        overflow: hidden;
        margin-top: -1px;
        transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #ff-dr .fixfactor-faq-toggle:checked ~ .fixfactor-faq-content {
        grid-template-rows: minmax(0, 1fr);
    }

    #ff-dr .fixfactor-faq-text {
        min-height: 0;
        overflow: hidden;
        padding: var(--space-5);
        background-color: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 var(--radius-base) var(--radius-base);
        font-size: var(--text-base);
        color: var(--text-secondary);
        line-height: var(--leading-relaxed);
    }
    
    /* =============================================
       CONTACT FORM SECTION
    ============================================= */
    
    #ff-dr .fixfactor-contact {
        padding: var(--section-padding-y) 0;
        position: relative;
        z-index: var(--z-10);
        background:
            var(--surface); /* v4 §7: flat background alternation */
        overflow: hidden;
    }

    #ff-dr .fixfactor-contact::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ff-dr .fixfactor-contact::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* Contact Section - Reduce header bottom margin */
    #ff-dr .fixfactor-contact .fixfactor-section-header {
        margin-bottom: 0;
    }

    #ff-dr .fixfactor-contact .fixfactor-section-header p {
        margin-bottom: 0;
    }

    #ff-dr .fixfactor-contact-container {
        max-width: 800px;
        margin: var(--space-5) auto 0;
        padding: 0 var(--space-4) var(--space-8);
        position: relative;
        z-index: 1;
    }

    #ff-dr .fixfactor-contact .fixfactor-container {
        position: relative;
        z-index: 1;
    }

    /* International telephone input container */
    #ff-dr .iti {
        width: 100%;
    }
    
    /* =============================================
       CUSTOMER REVIEWS CAROUSEL
    ============================================= */

    #ff-dr .fixfactor-reviews-section {
        padding: var(--section-padding-y) 0;
        background: linear-gradient(180deg, var(--surface) 0%, light-dark(#f5f9fc, var(--surface-alt)) 50%, light-dark(#f0f7fa, var(--surface-alt)) 100%);
        position: relative;
        overflow: hidden;
        z-index: var(--z-10);
    }

    #ff-dr .fixfactor-reviews-section::before {
        content: '';
        position: absolute;
        top: 15%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: none; /* v4 §7: mid-page radial blobs retired */
        border-radius: 50%;
        pointer-events: none;
    }

    #ff-dr .fixfactor-reviews-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto var(--space-7);
        position: relative;
        z-index: 2;
    }

    #ff-dr .fixfactor-reviews-header h2 {
        font-size: var(--text-4xl);
        font-weight: var(--font-bold);
        color: var(--text-primary);
        margin: 0 0 var(--space-5);
        text-align: center;
        letter-spacing: -0.6px;
        line-height: 1.3;
        position: relative;
        display: inline-block;
        padding-bottom: 20px;
    }


    #ff-dr .fixfactor-reviews-header p {
        color: var(--text-secondary);
        font-size: var(--text-lg);
        margin: 0;
        line-height: var(--leading-relaxed);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #ff-dr .fixfactor-reviews-carousel-wrap {
        position: relative;
        z-index: 2;
        margin-bottom: var(--space-6);
        padding: 0 var(--space-6);
    }

    #ff-dr .fixfactor-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: var(--radius-full);
        background: var(--surface);
        border: 1px solid var(--border-interactive);
        box-shadow: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: var(--z-10);
        transition: all 0.25s ease;
        color: var(--primary-dark);
        padding: 0;
    }

    #ff-dr .fixfactor-carousel-arrow:hover {
        background: var(--primary-dark);
        color: var(--on-action);
        box-shadow: none;
    }

    #ff-dr .fixfactor-carousel-arrow svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    #ff-dr .fixfactor-carousel-arrow--left { left: -20px; }
    #ff-dr .fixfactor-carousel-arrow--right { right: -20px; }

    #ff-dr .fixfactor-reviews-carousel {
        display: flex;
        gap: var(--space-5);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: var(--space-2) var(--space-2) var(--space-5);
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 170, 196, 0.3) transparent;
    }

    #ff-dr .fixfactor-reviews-carousel::-webkit-scrollbar { height: 6px; }
    #ff-dr .fixfactor-reviews-carousel::-webkit-scrollbar-track { background: transparent; }
    #ff-dr .fixfactor-reviews-carousel::-webkit-scrollbar-thumb { background: var(--wash-brand-med); border-radius: 3px; }
    #ff-dr .fixfactor-reviews-carousel::-webkit-scrollbar-thumb:hover { background: rgba(0, 170, 196, 0.45); }

    #ff-dr .fixfactor-review-card {
        flex: 0 0 340px;
        scroll-snap-align: start;
        background: var(--surface);
        border-radius: var(--radius-base);
        padding: var(--space-5);
        box-shadow: none;
        border: 1px solid var(--border-color);
        transition: border-color 0.25s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    #ff-dr .fixfactor-review-card:hover {
        border-color: var(--border-active);
        box-shadow: none;
    }

    #ff-dr .fixfactor-review-stars { display: flex; gap: 3px; margin-bottom: var(--space-3); }
    #ff-dr .fixfactor-review-star { width: 18px; height: 18px; fill: var(--accent-color); }

    #ff-dr .fixfactor-review-text {
        font-size: 14.5px;
        color: var(--text-secondary);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-5);
        flex-grow: 1;
        font-style: italic;
    }

    #ff-dr .fixfactor-review-author {
        font-size: var(--text-sm);
        font-weight: var(--font-semibold);
        color: var(--text-primary);
    }

    #ff-dr .fixfactor-review-source {
        font-size: var(--text-xs);
        color: var(--text-muted);
        margin-top: 0.15rem;
    }

    #ff-dr .fixfactor-reviews-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--space-2);
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
        font-size: var(--text-sm);
        color: var(--text-secondary);
    }

    #ff-dr .fixfactor-reviews-links span {
        color: var(--text-secondary);
        font-size: var(--text-sm);
    }

    #ff-dr .fixfactor-review-link {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        color: var(--primary-dark);
        font-size: var(--text-sm);
        font-weight: var(--font-semibold);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    #ff-dr .fixfactor-review-link:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    #ff-dr .fixfactor-review-link svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        flex-shrink: 0;
    }

    /* =============================================
       DATA RECOVERY SPECIALIST DESCRIPTION
    ============================================= */

    #ff-dr .fixfactor-specialist-section {
        padding: var(--section-padding-y) 0;
        background: linear-gradient(180deg, light-dark(#f0f7fa, var(--surface-alt)) 0%, var(--surface) 100%);
        position: relative;
        z-index: var(--z-10);
    }

    #ff-dr .fixfactor-specialist-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 var(--section-padding-x);
    }

    #ff-dr .fixfactor-specialist-content h2 {
        font-size: var(--text-4xl);
        font-weight: var(--font-bold);
        color: var(--text-primary);
        text-align: center;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
        padding-bottom: 20px;
        margin: 0 0 var(--space-7);
        width: 100%;
    }


    #ff-dr .fixfactor-specialist-content h3 {
        font-size: var(--text-2xl);
        font-weight: var(--font-bold);
        color: var(--text-primary);
        margin: var(--space-7) 0 var(--space-4);
        letter-spacing: -0.3px;
        text-align: center;
    }

    #ff-dr .fixfactor-specialist-content p {
        font-size: var(--text-base);
        color: var(--text-primary);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-5);
        text-align: center;
    }

    #ff-dr .fixfactor-inline-link {
        color: var(--primary-dark);
        text-decoration: none;
        font-weight: var(--font-medium);
        transition: color 0.2s ease;
        border-bottom: 1px solid transparent;
    }

    #ff-dr .fixfactor-inline-link:hover {
        color: var(--primary-dark);
        border-bottom-color: var(--primary-dark);
    }

    /* =============================================
       RESPONSIVE DESIGN
    ============================================= */
    
    @media (max-width: 1200px) {
        #ff-dr .fixfactor-hero h1 {
            font-size: var(--text-5xl);
        }

        #ff-dr .fixfactor-section-header h2 {
            font-size: var(--text-3xl);
        }

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

        #ff-dr .fixfactor-features {
            grid-template-columns: repeat(2, 1fr);
        }

        #ff-dr .fixfactor-gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        #ff-dr .fixfactor-process-timeline::before {
            left: 30px;
        }

        #ff-dr .fixfactor-process-item {
            justify-content: flex-start;
        }

        #ff-dr .fixfactor-process-item:nth-child(odd) {
            justify-content: flex-start;
        }

        #ff-dr .fixfactor-process-content {
            width: calc(100% - 60px);
            margin-left: 60px;
        }

        #ff-dr .fixfactor-process-item:nth-child(odd) .fixfactor-process-content::before,
        #ff-dr .fixfactor-process-item:nth-child(even) .fixfactor-process-content::before {
            left: -10px;
            border-width: 0 0 1px 1px;
        }

        #ff-dr .fixfactor-process-number {
            left: 30px;
        }
    }
    
    @media (max-width: 992px) {
        #ff-dr section.fixfactor-hero {
            min-height: auto;
            padding: var(--space-9) 0;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-image {
            display: none;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-content {
            max-width: 100%;
            text-align: center;
            padding: var(--space-6);
        }

        #ff-dr section.fixfactor-hero h1 {
            font-size: var(--text-4xl);
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-buttons {
            justify-content: center;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-ratings {
            justify-content: center;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-content .fixfactor-hero-badge,
        #ff-dr section.fixfactor-hero .fixfactor-hero-content span.fixfactor-hero-badge {
            font-size: calc(0.85rem + 1px);
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-content .fixfactor-hero-badge::after,
        #ff-dr section.fixfactor-hero .fixfactor-hero-content span.fixfactor-hero-badge::after {
            left: 50%;
            transform: translateX(-50%);
            height: 2px;
            width: 80px;
        }

        #ff-dr .fixfactor-section-header h2 {
            font-size: var(--text-3xl);
        }

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

        #ff-dr .fixfactor-features {
            grid-template-columns: 1fr;
        }

        #ff-dr .fixfactor-scenarios-cards {
            grid-template-columns: 1fr;
        }

        #ff-dr .fixfactor-priority-levels {
            grid-template-columns: 1fr;
        }

        #ff-dr .fixfactor-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        :root {
            --section-padding-y: var(--space-6);
            --section-padding-x: var(--space-4);

            --text-xs: 0.7rem;
            --text-sm: 0.8rem;
            --text-base: 0.95rem;
            --text-lg: 1.05rem;
            --text-xl: 1.15rem;
            --text-2xl: 1.35rem;
            --text-3xl: 1.6rem;
            --text-4xl: 1.8rem;
        }

        html {
            scroll-padding-top: 80px;
        }

        #ff-dr section.fixfactor-hero {
            min-height: auto;
            padding: var(--space-6) 0;
        }

        #ff-dr .fixfactor-hero-wrapper {
            flex-direction: column;
            min-height: auto;
            padding: 0 var(--section-padding-x);
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-image {
            position: relative;
            width: 100%;
            min-height: 220px;
            clip-path: none;
            border-radius: var(--radius-base);
            margin-top: var(--space-5);
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-content {
            text-align: center;
        }

        #ff-dr section.fixfactor-hero h1 {
            font-size: 2.5rem;
            margin-bottom: var(--space-5);
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        #ff-dr section.fixfactor-hero p {
            font-size: 0.95rem;
            margin-bottom: var(--space-5);
            line-height: 1.5;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-badge {
            font-size: 0.85rem;
            margin-bottom: var(--space-4);
            padding: var(--space-1) 0;
            letter-spacing: 0.2px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-badge::after {
            height: 2px;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-buttons {
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: var(--space-6);
        }

        #ff-dr section.fixfactor-hero .fixfactor-button {
            padding: 10px 8px;
            font-size: 0.85rem;
            min-height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 1 1 auto;
            min-width: 140px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-hero-ratings {
            justify-content: center;
            gap: 1rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
            flex-direction: row;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-badge {
            gap: 0.25rem;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-logo {
            width: 16px;
            height: 16px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-star {
            width: 13px;
            height: 13px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-star-box {
            width: 15px;
            height: 15px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-star-box .fixfactor-rating-star {
            width: 10px;
            height: 10px;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-number {
            font-size: 0.8125rem;
            margin-left: 0.125rem;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-text {
            font-size: 0.75rem;
        }

        #ff-dr section.fixfactor-hero .fixfactor-rating-divider {
            height: 16px;
        }

        #ff-dr .fixfactor-section-header {
            margin-bottom: var(--space-5);
        }

        #ff-dr .fixfactor-section-header h2 {
            font-size: var(--text-4xl);
            margin-bottom: var(--space-4);
        }

        #ff-dr .fixfactor-section-header p {
            font-size: var(--text-sm);
            margin-top: var(--space-4);
        }

        #ff-dr .fixfactor-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-3);
            margin-top: var(--space-5);
        }

        #ff-dr .fixfactor-service-card {
            height: auto;
            min-height: 260px;
        }

        #ff-dr .fixfactor-service-image {
            height: 140px;
            padding: var(--space-2);
        }

        #ff-dr .fixfactor-service-image img {
            width: 70px;
            height: 70px;
        }

        #ff-dr .fixfactor-service-content {
            height: auto;
            min-height: 180px;
            padding: var(--space-4);
        }

        #ff-dr .fixfactor-service-title {
            font-size: var(--text-lg);
            line-height: 1.3;
            margin-bottom: var(--space-2);
        }

        #ff-dr .fixfactor-service-text {
            font-size: var(--text-sm);
            line-height: 1.5;
            margin-bottom: var(--space-3);
            min-height: auto;
            max-height: none;
        }

        #ff-dr .fixfactor-feature-icon {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }

        #ff-dr .fixfactor-scenario-card {
            padding: var(--space-5) var(--space-4);
        }

        #ff-dr .fixfactor-scenario-icon {
            width: 48px;
            height: 48px;
            font-size: 20px;
            margin-bottom: var(--space-3);
        }

        #ff-dr .fixfactor-scenario-title {
            font-size: var(--text-lg);
        }

        #ff-dr .fixfactor-priority-feature i {
            font-size: 12px;
        }

        /* Priority Levels: compact mobile layout */
        #ff-dr .fixfactor-priority-levels {
            gap: var(--space-3);
            margin-top: var(--space-5);
        }

        #ff-dr .fixfactor-priority-header {
            padding: var(--space-3) var(--space-4);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        #ff-dr .fixfactor-priority-name {
            font-size: var(--text-lg);
            margin-bottom: 0;
        }

        #ff-dr .fixfactor-priority-time {
            font-size: var(--text-sm);
        }

        #ff-dr .fixfactor-priority-body {
            padding: var(--space-3) var(--space-4);
        }

        #ff-dr .fixfactor-priority-body > p {
            font-size: var(--text-sm);
            margin-bottom: 0;
        }

        #ff-dr .fixfactor-priority-feature {
            margin-bottom: var(--space-2);
        }

        #ff-dr .fixfactor-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-3);
            margin-top: var(--space-5);
        }

        #ff-dr .fixfactor-gallery-item {
            height: 160px;
        }

        #ff-dr .fixfactor-gallery-overlay {
            opacity: 1;
        }

        /* Process Mobile */
        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-timeline {
            padding: 0 12px;
            max-width: 100%;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-timeline::before {
            left: 23px;
            transform: none;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-item {
            justify-content: flex-start;
            padding-left: 45px;
            padding-right: 12px;
            margin-bottom: 24px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-number {
            left: 12px;
            transform: translateX(-50%);
            top: 15px;
            width: 42px;
            height: 42px;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-content {
            width: 100%;
            max-width: 100%;
            padding: 16px;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-content::before {
            display: none;
            content: none;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-title {
            font-size: 0.95rem;
            padding-bottom: 4px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-content .fixfactor-process-badge {
            font-size: 0.65rem;
            padding: 2px 6px;
            margin-top: 4px;
            margin-bottom: 10px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-text {
            font-size: 0.85rem;
        }

        /* Reviews */
        #ff-dr .fixfactor-reviews-header h2 { font-size: var(--text-3xl); }
        #ff-dr .fixfactor-reviews-carousel-wrap { padding: 0 var(--space-4); }
        #ff-dr .fixfactor-review-card { flex: 0 0 280px; }
        #ff-dr .fixfactor-carousel-arrow { width: 34px; height: 34px; }
        #ff-dr .fixfactor-carousel-arrow svg { width: 15px; height: 15px; }
        #ff-dr .fixfactor-carousel-arrow--left { left: -8px; }
        #ff-dr .fixfactor-carousel-arrow--right { right: -8px; }

        /* Specialist */
        #ff-dr .fixfactor-specialist-content h2 { font-size: var(--text-3xl); }
        #ff-dr .fixfactor-specialist-content h3 { font-size: var(--text-xl); }
        #ff-dr .fixfactor-specialist-content p { font-size: var(--text-base); }

        /* Contact Form: proportional input sizes on mobile */
        #ff-dr .fixfactor-contact-container {
            padding: 0 var(--space-3) var(--space-5);
        }
    }

    @media (max-width: 480px) {
        :root {
            --section-padding-y: var(--space-5);
            --section-padding-x: var(--space-3);
        }

        #ff-dr section.fixfactor-hero {
            padding: var(--space-4) 0;
        }

        #ff-dr section.fixfactor-hero h1 {
            font-size: 2.25rem;
        }

        #ff-dr .fixfactor-section-header h2 {
            font-size: var(--text-3xl);
        }

        #ff-dr .fixfactor-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        #ff-dr .fixfactor-gallery-item {
            height: 140px;
        }

        #ff-dr .fixfactor-contact-container {
            padding: 0 var(--space-3) var(--space-5);
        }

        /* Reviews 480px */
        #ff-dr .fixfactor-reviews-header h2 { font-size: var(--text-2xl); }
        #ff-dr .fixfactor-reviews-header p { font-size: var(--text-base); }
        #ff-dr .fixfactor-review-card { flex: 0 0 260px; padding: var(--space-4); }
        #ff-dr .fixfactor-carousel-arrow--left { left: -4px; }
        #ff-dr .fixfactor-carousel-arrow--right { right: -4px; }

        /* Specialist 480px */
        #ff-dr .fixfactor-specialist-content h2 { font-size: var(--text-2xl); }
        #ff-dr .fixfactor-specialist-content h3 { font-size: var(--text-lg); }
        #ff-dr .fixfactor-specialist-content p { font-size: var(--text-sm); }

        /* Process Small Mobile */
        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-timeline {
            padding: 0 8px;
            max-width: 100%;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-timeline::before {
            left: 16px;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-item {
            padding-left: 40px;
            padding-right: 8px;
            margin-bottom: 20px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-number {
            left: 8px;
            transform: translateX(-50%);
            width: 36px;
            height: 36px;
            font-size: 0.95rem;
            top: 12px;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-content {
            padding: 12px;
            margin-left: 0;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-title {
            font-size: 0.95rem;
            padding-bottom: 3px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-content .fixfactor-process-badge {
            font-size: 0.6rem;
            padding: 2px 5px;
            margin-top: 3px;
            margin-bottom: 8px;
        }

        #ff-dr section#process[data-mobile-optimized] .fixfactor-process-text {
            font-size: 0.8rem;
            line-height: 1.5;
        }
    }

    /* ---- Custom SVG icon sizing (replaces FontAwesome glyphs) ---- */
    #ff-dr .fixfactor-scenario-icon svg {
        width: 100px;
        height: 100px;
    }

    #ff-dr .fixfactor-module-content h3 svg {
        width: 26px;
        height: 26px;
        color: var(--primary-dark);
        flex-shrink: 0;
    }

    /* Accessibility — visible focus ring */
    /* Form controls are deliberately left out: the theme's wp-integration.css
       already gives them a focus treatment (border-colour shift plus a 2px
       inset ring). Adding an offset outline on top of that drew a second ring
       around the field - the doubled outline reported on the hub. */
    #ff-dr a:focus-visible,
    #ff-dr button:focus-visible {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
        #ff-dr *,
        #ff-dr *::before,
        #ff-dr *::after {
            animation: none !important;   /* Reduced-motion override */
            transition: none !important;  /* Reduced-motion override */
        }
    }
