/*
Theme Name: WinSafy Custom Theme
Theme URI: https://winsafy.com
Description: Thème WordPress sur-mesure pour le site WinSafy.com, avec intégration native du design system premium, typographies Sora/DM Sans, et habillage automatique de l'Éditeur Classique.
Author: Edwin Jordan
Author URI: https://winsafy.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: winsafy-theme
*/

/* CSS variables identical to style.css */
        :root {
            --winsafy-primary: #1A3FD8;
            --winsafy-primary-dark: #0D1760;
            --winsafy-accent: #00A3FF;
            --winsafy-success: #00C853;
            --winsafy-warning: #EF9F27;
            --winsafy-danger: #E24B4A;
            --winsafy-bg-light: #F8F9FC;
            --winsafy-bg-dark: #070B28;
            --winsafy-text-dark: #1E234A;
            --winsafy-text-light: #FFFFFF;
            --winsafy-text-muted: #64748B;
            --winsafy-font-heading: 'Sora', sans-serif;
            --winsafy-font-body: 'DM Sans', sans-serif;
            --winsafy-transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --winsafy-border-radius-md: 16px;
        }

        /* Base Reset & Smooth Scroll */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--winsafy-font-body);
            font-size: 16px;
            line-height: 1.65;
            color: var(--winsafy-text-dark);
            background-color: var(--winsafy-bg-light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--winsafy-font-heading);
            font-weight: 700;
            color: var(--winsafy-primary-dark);
        }

        /* Centered Container Wrapper */
        .winsafy-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header.winsafy-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            z-index: 1000;
            background: rgba(7, 11, 40, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        header.winsafy-header .winsafy-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--winsafy-font-heading);
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            z-index: 1100;
        }

        .logo-symbol {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            position: relative;
        }

        .logo-symbol-svg {
            width: 100%;
            height: 100%;
            display: block;
        }


        .logo-text span:first-child { color: #ffffff; }
        .logo-text span:last-child { color: var(--winsafy-accent); }

        /* Navigation Menu styling */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-family: var(--winsafy-font-heading);
            font-size: 14px;
            font-weight: 600;
            transition: var(--winsafy-transition-smooth);
        }

        .nav-link:hover {
            color: var(--winsafy-accent);
        }

        .nav-link-cta {
            background: linear-gradient(90deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%);
            color: #ffffff !important;
            padding: 8px 20px;
            border-radius: 20px;
            font-family: var(--winsafy-font-heading);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--winsafy-transition-smooth);
            box-shadow: 0 4px 10px rgba(0, 163, 255, 0.25);
        }

        .nav-link-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(0, 163, 255, 0.4);
        }

        /* Mobile nav toggle button */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 22px;
            height: 16px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        .nav-toggle span {
            width: 100%;
            height: 2px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* General Sections style */
        section {
            padding: 100px 0;
            position: relative;
        }

        /* Hero Section with futuristic gradient & lights */
        .hero-section {
            background: linear-gradient(135deg, rgba(13, 23, 96, 0.9) 0%, rgba(8, 12, 44, 0.92) 50%, rgba(3, 5, 23, 0.96) 100%), url('assets/images/hero-bg.webp') no-repeat center center / cover;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 140px;
            overflow: hidden;
        }

        /* Futuristic matrix background grid */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            z-index: 2;
            gap: 40px;
        }

        .hero-left {
            width: 55%;
            text-align: left;
        }

        .hero-section h1 {
            font-size: 54px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 40%, #00A3FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(0, 163, 255, 0.15);
        }

        .hero-section p.subtitle {
            font-size: 19px;
            color: rgba(255,255,255,0.75);
            max-width: 600px;
            margin-bottom: 40px;
            font-family: var(--winsafy-font-body);
        }

        .hero-right {
            width: 45%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Futuristic Glow Orb behind the Phone Mockup */
        .hero-glow-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 163, 255, 0.45) 0%, rgba(26, 63, 216, 0.15) 45%, transparent 70%);
            filter: blur(50px);
            z-index: 0;
            pointer-events: none;
            animation: orbFloat 7s ease-in-out infinite, orbPulse 4s ease-in-out infinite alternate;
        }

        @keyframes orbFloat {
            0%, 100% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.1) translate(20px, -20px); }
        }

        @keyframes orbPulse {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        /* 3D Floating Phone Mockup */
        .phone-mockup-container {
            position: relative;
            z-index: 2;
            width: 210px; /* Reduced width for a more compact and elegant fit */
            height: 420px; /* Reduced height to fit mode switcher on screen */
            background: #000000;
            border: 6px solid #1c2035;
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 
                        0 0 35px rgba(0, 163, 255, 0.35);
            overflow: hidden;
            animation: phoneFloat 5s ease-in-out infinite, glowPulse 4s ease-in-out infinite alternate;
            transition: all 0.3s ease;
            pointer-events: auto; /* Active pointer events to keep hover trigger */
        }

        @keyframes glowPulse {
            0% { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 163, 255, 0.25); }
            100% { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 163, 255, 0.55); }
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(1.5deg); }
        }

        /* Phone Screen Content */
        .phone-screen {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        /* Phone notch */
        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 18px;
            background: #1c2035;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            z-index: 10;
        }

        /* Phone mockup mode switcher */
        .phone-mode-switcher {
            display: inline-flex;
            gap: 8px;
            margin-top: 20px;
            background: rgba(255,255,255,0.06);
            padding: 4px;
            border-radius: 20px;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .phone-mode-btn {
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--winsafy-font-heading);
        }

        .phone-mode-btn.active {
            background: #ffffff;
            color: var(--winsafy-primary-dark);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* Downloads styling */
        .winsafy-downloads-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 500px;
            margin-top: 10px;
        }
        .winsafy-buttons-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .winsafy-store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            border-radius: 8px;
            text-decoration: none !important;
            font-family: 'DM Sans', sans-serif;
            background: #11142A;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #ffffff !important;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .winsafy-store-btn::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: all 0.6s ease;
        }
        .winsafy-store-btn:hover::after {
            left: 150%;
        }

        .winsafy-store-btn:hover:not(.disabled) {
            border-color: #00A3FF;
            background: #151A3B;
            box-shadow: 0 0 25px rgba(0, 163, 255, 0.35);
            transform: translateY(-2px);
        }
        .winsafy-store-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.02);
        }
        .winsafy-store-btn .btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
            text-align: left;
        }
        .winsafy-store-btn .subtext {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.5);
        }
        .winsafy-store-btn .maintext {
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
        }
        .winsafy-apk-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-top: 4px;
        }
        .winsafy-apk-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #00A3FF !important;
            text-decoration: none !important;
            border-bottom: 1px dashed #00A3FF;
            padding-bottom: 2px;
            transition: all 0.2s ease;
        }
        .winsafy-apk-link:hover {
            color: #1A3FD8 !important;
            border-color: #1A3FD8;
        }
        .winsafy-apk-warning {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            margin: 6px 0 0 0;
            font-style: italic;
        }

        /* Language Switcher */
        .winsafy-lang-switcher-wrapper {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 30px;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        .winsafy-lang-link {
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .winsafy-lang-link.active {
            color: #00A3FF;
        }
        .winsafy-lang-separator {
            color: rgba(255, 255, 255, 0.2);
            margin: 0 8px;
            user-select: none;
        }

        /* Problem Section Redesign */
        .problem-section {
            background: #ffffff;
        }
        .problem-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }
        .problem-left { 
            width: 50%; 
        }
        .problem-right { 
            width: 50%; 
            position: relative;
        }
        .problem-section h2 { 
            font-size: 36px; 
            margin-top: 10px; 
            line-height: 1.3; 
            color: var(--winsafy-primary-dark);
            margin-bottom: 25px;
        }
        .problem-section p { 
            color: var(--winsafy-text-muted); 
            margin-bottom: 18px; 
            font-size: 16px;
            line-height: 1.65;
        }

        /* Image Wrapper with Shadows and Hover Zoom */
        .problem-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: visible; /* Allows badges to overflow slightly */
            box-shadow: 0 20px 40px rgba(7, 11, 40, 0.06);
            border: 1px solid rgba(26, 63, 216, 0.05);
            background: #ffffff;
        }
        .problem-image-wrapper img {
            width: 100%;
            display: block;
            border-radius: 20px;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .problem-image-wrapper:hover img {
            transform: scale(1.02);
        }

        /* Floating glass badges on stock photo */
        .problem-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 14px;
            padding: 14px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 12px 30px rgba(7, 11, 40, 0.1);
            z-index: 10;
            transition: transform 0.3s ease;
        }
        .problem-badge:hover {
            transform: translateY(-2px) scale(1.03);
        }
        .problem-badge.badge-top {
            top: -30px;
            left: -30px;
            animation: badgeFloat1 6s infinite ease-in-out;
        }
        .problem-badge.badge-bottom {
            bottom: -30px;
            right: -30px;
            animation: badgeFloat2 6s infinite ease-in-out;
        }

        .problem-badge-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(26, 63, 216, 0.1);
            color: var(--winsafy-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .problem-badge-icon.success-icon {
            background: rgba(0, 200, 83, 0.1);
            color: var(--winsafy-success);
        }

        .problem-badge-text {
            font-family: var(--winsafy-font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--winsafy-primary-dark);
            line-height: 1.25;
        }
        .problem-badge-text span {
            display: block;
            font-size: 11px;
            font-weight: 500;
            color: var(--winsafy-text-muted);
            margin-top: 2px;
        }


        @keyframes badgeFloat1 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes badgeFloat2 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }


        /* Features Section (La Solution) */
        .features-section {
            background: var(--winsafy-bg-light);
            text-align: center;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        /* Glassmorphic Cards */
        .winsafy-glass {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(26, 63, 216, 0.08);
            border-radius: var(--winsafy-border-radius-md);
            padding: 40px 30px;
            box-shadow: 0 8px 32px 0 rgba(7, 11, 40, 0.05);
            transition: var(--winsafy-transition-smooth);
            text-align: left;
            position: relative;
        }
        .winsafy-glass::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: var(--winsafy-border-radius-md);
            border: 1px solid transparent;
            background: linear-gradient(135deg, var(--winsafy-accent), transparent) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .winsafy-glass:hover::before {
            opacity: 1;
        }
        .winsafy-glass:hover {
            box-shadow: 0 0 25px rgba(0, 163, 255, 0.25);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.55); /* Keep it slightly white but transparent */
        }

        .winsafy-glass.highlighted-card {
            border-color: rgba(0, 163, 255, 0.3);
            background: rgba(26, 63, 216, 0.03);
        }
        .winsafy-glass.highlighted-card::before {
            opacity: 0.5;
        }
        .winsafy-glass.highlighted-card:hover {
            background: rgba(26, 63, 216, 0.06);
        }

        .feature-title { font-size: 20px; font-weight: 700; color: var(--winsafy-primary-dark); margin-bottom: 15px; }
        .feature-desc { color: var(--winsafy-text-muted); font-size: 15px; }

        /* Section 4: WinCoach in Action (AI Coach details) */
        .wincoach-section {
            background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #080C2C 100%);
            color: #ffffff;
        }
        .wincoach-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
        }

        .wincoach-left {
            width: 50%;
        }

        .wincoach-section h2 {
            font-size: 36px;
            color: #ffffff;
            margin-top: 10px;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .wincoach-pillars {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pillar-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .pillar-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 163, 255, 0.15);
            border: 1px solid var(--winsafy-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--winsafy-accent);
            font-weight: 700;
            flex-shrink: 0;
            font-family: var(--winsafy-font-heading);
            font-size: 14px;
        }

        .pillar-content h4 {
            color: #ffffff;
            font-size: 17px;
            margin-bottom: 5px;
        }

        .pillar-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .wincoach-right {
            width: 50%;
        }

        /* Glassmorphic conversation block */
        .conversation-container {
            background: rgba(7, 11, 40, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .convo-header {
            font-weight: 700;
            color: var(--winsafy-accent);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 12px;
            margin-bottom: 20px;
            font-size: 14px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .convo-bubble {
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .convo-bubble.user {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-style: italic;
        }

        .convo-bubble.coach {
            background: rgba(0, 163, 255, 0.08);
            border-left: 4px solid var(--winsafy-accent);
            border-radius: 0 12px 12px 12px;
        }

        /* Section 5: Pourquoi Local-First */
        .localfirst-section {
            background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #080C2C 100%) !important;
            position: relative;
            overflow: hidden;
        }
        /* Add a subtle neon gradient overlay in the background */
        .localfirst-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 163, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }
        .localfirst-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        .localfirst-left { width: 50%; }
        .localfirst-right { width: 50%; }
        .localfirst-section h2 { font-size: 36px; margin-top: 10px; margin-bottom: 20px; line-height: 1.3; color: #ffffff !important; }
        .localfirst-section p { color: rgba(255, 255, 255, 0.7) !important; margin-bottom: 20px; }
        .localfirst-card {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(0, 163, 255, 0.15) !important;
            backdrop-filter: blur(12px) !important;
            -webkit-backdrop-filter: blur(12px) !important;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .localfirst-card:hover {
            border-color: rgba(0, 163, 255, 0.3) !important;
            box-shadow: 0 8px 32px 0 rgba(0, 163, 255, 0.1) !important;
        }
        .localfirst-card h4 { font-size: 18px; color: #ffffff !important; margin-bottom: 10px; font-family: var(--winsafy-font-heading); font-weight: 700; }
        .localfirst-card p { font-size: 14px; color: rgba(255, 255, 255, 0.7) !important; margin-bottom: 0; }

        /* SVG cyber-shield Animations */
        @keyframes scan {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes dotRotate {
            0% { transform: rotate(360deg); }
            100% { transform: rotate(0deg); }
        }
        @keyframes pulseGlow {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.95; }
        }
        @keyframes lockPulse {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(0, 163, 255, 0.4)); }
            50% { transform: scale(1.04); filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.8)); }
        }
        .security-shield-animation {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }
        .cyber-shield {
            filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.3));
        }
        .scanning-ring {
            transform-origin: 50px 50px;
            animation: scan 6s linear infinite;
        }
        .dot-ring {
            transform-origin: 50px 50px;
            animation: dotRotate 15s linear infinite;
        }
        .shield-glow {
            animation: pulseGlow 3s ease-in-out infinite;
        }
        .padlock-group {
            transform-origin: 50px 50px;
            animation: lockPulse 2.5s ease-in-out infinite;
        }

        /* Section 6: Témoignages */
        .testimonials-section {
            background: var(--winsafy-bg-light);
            text-align: center;
            position: relative;
        }
        .testimonials-slider-container {
            position: relative;
            max-width: 1200px;
            width: 100%;
            margin: 50px auto 0 auto;
            padding: 0 45px;
        }
        .testimonials-track-wrapper {
            overflow: hidden;
            width: 100%;
        }
        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            gap: 30px;
            width: 100%;
        }
        .testimonial-slide {
            flex: 0 0 calc(50% - 15px);
            box-sizing: border-box;
        }
        @media (max-width: 991px) {
            .testimonial-slide {
                flex: 0 0 100%;
            }
        }
        .testimonial-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
            border-radius: 16px;
            padding: 35px;
            text-align: left;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02) !important;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.01) !important;
            border-color: rgba(0, 163, 255, 0.2) !important;
            box-shadow: 0 16px 40px rgba(0, 163, 255, 0.08) !important;
        }
        
        /* Carousel Navigation Controls */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid rgba(0, 163, 255, 0.1);
            color: var(--winsafy-primary-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            z-index: 10;
            transition: all 0.3s ease;
        }
        .slider-arrow:hover {
            background: var(--winsafy-primary);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(26, 63, 216, 0.3);
            border-color: var(--winsafy-primary);
        }
        .prev-arrow { left: -5px; }
        .next-arrow { right: -5px; }
        @media (max-width: 991px) {
            .prev-arrow { left: 0px; }
            .next-arrow { right: 0px; }
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
        }
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(13, 23, 96, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--winsafy-primary);
        }
        .testimonial-text {
            font-style: italic;
            font-size: 15px;
            color: var(--winsafy-text-dark);
            margin-bottom: 20px;
        }
        .testimonial-author {
            font-weight: 700;
            color: var(--winsafy-primary-dark);
            font-size: 14px;
        }
        .testimonial-location {
            font-size: 12px;
            color: var(--winsafy-text-muted);
        }

        /* Section 7: Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, #070B28 0%, #0D1760 100%);
        }
        .newsletter-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--winsafy-border-radius-md);
            padding: 50px;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(7, 11, 40, 0.15);
            transition: var(--winsafy-transition-smooth);
        }
        
        /* Fix the gray hover background on the newsletter card */
        .newsletter-card:hover {
            background: rgba(255, 255, 255, 0.05) !important;
            border-color: rgba(255, 255, 255, 0.12) !important;
            box-shadow: 0 12px 40px 0 rgba(0, 163, 255, 0.15) !important;
        }

        .newsletter-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .newsletter-form {
            display: flex;
            width: 100%;
            max-width: 500px;
            gap: 12px;
            margin-top: 10px;
        }
        .newsletter-input {
            flex-grow: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 12px 24px;
            color: #ffffff;
            font-family: var(--winsafy-font-body);
            font-size: 14px;
            outline: none;
            transition: var(--winsafy-transition-smooth);
        }
        .newsletter-input:focus {
            border-color: var(--winsafy-accent);
            background: rgba(255, 255, 255, 0.08);
        }
        .newsletter-submit-btn {
            background: linear-gradient(90deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%);
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-family: var(--winsafy-font-heading);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: var(--winsafy-transition-smooth);
        }
        .newsletter-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0, 163, 255, 0.4);
        }
        #newsletter-status {
            margin-top: 15px;
            font-weight: 600;
            font-size: 14px;
        }

        /* Section 8: CTA Final */
        .cta-section {
            background: #f4f6fc !important;
            color: var(--winsafy-primary-dark) !important;
            text-align: center;
            border-top: 1px solid rgba(0, 163, 255, 0.08) !important;
            border-bottom: 1px solid rgba(0, 163, 255, 0.08) !important;
        }
        .cta-section h2 { font-size: 40px; color: var(--winsafy-primary-dark) !important; margin-bottom: 20px; }
        .cta-section p { color: var(--winsafy-text-muted) !important; max-width: 600px; margin: 0 auto 40px auto; }
        .cta-section .winsafy-downloads-container { margin: 0 auto; }

        /* Futuristic Footer */
        footer {
            background: #0D1760;
            color: #ffffff;
            padding: 60px 0 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(0, 163, 255, 0.02) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(0, 163, 255, 0.02) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            animation: gridMove 12s linear infinite;
            z-index: 1;
        }
        footer > .winsafy-container {
            position: relative;
            z-index: 2;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col { width: 30%; }
        .footer-col h4 { color: #ffffff; font-size: 18px; margin-bottom: 15px; }
        .footer-col p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 10px; }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--winsafy-accent);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            font-size: 12px;
            color: rgba(255,255,255,0.4);
        }

        /* Chatbot widget styling */
        .winsafy-chat-fab {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A3FD8 0%, #00A3FF 100%);
            color: #ffffff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 163, 255, 0.4);
            z-index: 99999;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            animation: winsafyPulse 2.5s infinite;
        }
        .winsafy-chat-fab:hover {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 0 25px rgba(0, 163, 255, 0.6);
        }
        @keyframes winsafyPulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(0, 163, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0); }
        }
        .winsafy-chat-box-container {
            position: fixed;
            bottom: 96px;
            right: 24px;
            width: 360px;
            height: 520px;
            display: flex;
            flex-direction: column;
            z-index: 99998;
            overflow: hidden;
            background: rgba(7, 11, 40, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .winsafy-chat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: linear-gradient(90deg, rgba(26, 63, 216, 0.2) 0%, rgba(0, 163, 255, 0.1) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .header-info { display: flex; align-items: center; gap: 12px; }
        .winsafy-chat-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A3FD8 0%, #00A3FF 100%);
            position: relative;
            box-shadow: 0 0 10px rgba(0, 163, 255, 0.4);
        }
        .winsafy-chat-avatar::after {
            content: ''; position: absolute; top: 11px; left: 14px; width: 6px; height: 10px;
            border: solid #ffffff; border-width: 0 2px 2px 0; transform: rotate(45deg);
        }
        .winsafy-chat-header h4 { margin: 0; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #ffffff; }
        .online-indicator { font-size: 10px; color: #00C853; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
        .online-indicator .pulse {
            width: 6px; height: 6px; background-color: #00C853; border-radius: 50%; display: inline-block;
            animation: winsafyPulseGreen 2s infinite;
        }
        .close-btn { background: none; border: none; color: rgba(255, 255, 255, 0.6); font-size: 24px; cursor: pointer; }
        .winsafy-chat-messages-area { flex-grow: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
        .winsafy-message { display: flex; max-width: 85%; }
        .winsafy-message.bot { align-self: flex-start; }
        .winsafy-message.user { align-self: flex-end; }
        .message-content { padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; line-height: 1.5; }
        .winsafy-message.bot .message-content { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.06); color: #e2e8f0; border-radius: 12px 12px 12px 2px; }
        .winsafy-message.user .message-content { background: linear-gradient(135deg, #1A3FD8 0%, #00A3FF 100%); color: #ffffff; border-radius: 12px 12px 2px 12px; box-shadow: 0 4px 12px rgba(26, 63, 216, 0.2); }
        .winsafy-chat-input-area { display: flex; padding: 12px 16px; background: rgba(0, 0, 0, 0.25); border-top: 1px solid rgba(255, 255, 255, 0.06); }
        .winsafy-chat-input-area input { flex-grow: 1; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 30px; padding: 10px 18px; color: #ffffff; font-size: 13.5px; outline: none; }
        .send-btn { background: none; border: none; color: #00A3FF; cursor: pointer; padding-left: 12px; display: flex; align-items: center; }

        /* Loading indicator bouncy dots */
        .loading-indicator .message-content { display: flex; gap: 4px; padding: 12px 18px; }
        .loading-indicator .dot { width: 6px; height: 6px; background-color: rgba(255, 255, 255, 0.5); border-radius: 50%; display: inline-block; animation: winsafyBouncingDot 1.4s infinite both; }
        .loading-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
        .loading-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

        /* Bouncing dots and pulse green animations */
        @keyframes winsafyBouncingDot {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1.0); }
        }
        @keyframes winsafyPulseGreen {
            0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5); }
            70% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
        }

        /* Social Proof Popup */
        .social-proof-container {
            position: fixed;
            bottom: 24px;
            left: 24px;
            background: rgba(7, 11, 40, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transform: translateY(120px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            max-width: 340px;
            pointer-events: none;
        }

        .social-proof-container.active {
            transform: translateY(0);
            opacity: 1;
        }

        .social-proof-flag {
            font-size: 24px;
            line-height: 1;
        }

        .social-proof-details {
            font-family: var(--winsafy-font-body);
            font-size: 12.5px;
            color: #e2e8f0;
            line-height: 1.4;
        }

        .social-proof-name {
            font-family: var(--winsafy-font-heading);
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .social-proof-dot {
            width: 7px;
            height: 7px;
            background-color: #00C853;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px #00C853;
            animation: winsafyPulseGreen 2s infinite;
        }

        .social-proof-action {
            color: rgba(255, 255, 255, 0.8);
        }

        .social-proof-time {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 2px;
        }

        /* Responsive & Mobile styles */
        @media (max-width: 768px) {
            .winsafy-container { padding: 0 16px; }
            header.winsafy-header { padding: 12px 0; }
            section { padding: 50px 0; }
            
            /* Navigation toggle & menu styling for mobile */
            .nav-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(5, 8, 29, 0.88) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                border-left: 1px solid rgba(255, 255, 255, 0.08);
                display: flex !important;
                flex-direction: column !important;
                justify-content: flex-start !important;
                gap: 12px !important;
                padding: 90px 24px 30px 24px !important;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 1005;
            }

            .nav-menu.active {
                right: 0;
            }

            /* Premium header title inside mobile sidebar */
            .nav-menu::before {
                content: "WinSafy" !important;
                display: block !important;
                font-family: 'Sora', sans-serif !important;
                font-weight: 800 !important;
                font-size: 24px !important;
                color: #ffffff !important;
                letter-spacing: -0.5px !important;
                margin-bottom: 25px !important;
                padding-bottom: 12px !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
                text-align: left !important;
                width: 100% !important;
                background: linear-gradient(135deg, #ffffff 0%, var(--winsafy-accent) 100%) !important;
                -webkit-background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
            }

            /* Mobile menu links styling */
            .nav-menu a {
                font-family: 'Sora', sans-serif !important;
                font-size: 16px !important;
                font-weight: 700 !important;
                color: rgba(255, 255, 255, 0.8) !important;
                text-transform: capitalize !important;
                padding: 14px 16px !important;
                border-radius: 8px !important;
                display: flex !important;
                align-items: center !important;
                transition: all 0.25s ease !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
                width: 100% !important;
                text-decoration: none !important;
            }

            .nav-menu a:hover,
            .nav-menu a:active {
                color: #ffffff !important;
                background: rgba(255, 255, 255, 0.03) !important;
                padding-left: 24px !important;
                box-shadow: inset 4px 0 0 var(--winsafy-accent) !important;
            }

            /* Bottom tagline inside mobile sidebar */
            .nav-menu::after {
                content: "Gérez. Automatisez. Grandissez." !important;
                display: block !important;
                font-family: 'DM Sans', sans-serif !important;
                font-size: 11px !important;
                color: rgba(255, 255, 255, 0.3) !important;
                margin-top: auto !important;
                padding-top: 15px !important;
                border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
                text-align: center !important;
                width: 100% !important;
            }

            /* Hamburger transform animations */
            .nav-toggle.active span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .nav-toggle.active span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .header-actions {
                gap: 15px;
            }
            
            /* Refined Mobile Typography */
            .hero-section h1 { 
                font-size: 28px !important; 
                line-height: 1.3 !important; 
                font-weight: 700 !important; 
            }
            .hero-section p.subtitle { 
                font-size: 15px !important; 
                margin-bottom: 25px !important; 
                line-height: 1.5 !important;
            }
            
            h2 { 
                font-size: 22px !important; 
                line-height: 1.3 !important;
                font-weight: 700 !important;
            }
            h3 {
                font-size: 13px !important;
                letter-spacing: 0.05em !important;
            }
            
            .feature-title { font-size: 18px !important; }
            .feature-desc { font-size: 14px !important; }
            
            .pillar-content h4 { font-size: 15px !important; font-weight: 700 !important; }
            .pillar-content p { font-size: 13px !important; line-height: 1.5 !important; }
            
            .testimonial-card { padding: 24px !important; }
            .testimonial-text { font-size: 13.5px !important; }
            
            .newsletter-card { padding: 30px 20px !important; }
            .newsletter-form { flex-direction: column; gap: 12px; }
            .newsletter-submit-btn { width: 100%; }

            .cta-section h2 { font-size: 26px !important; }
            
            /* Container grids */
            .hero-container { flex-direction: column; text-align: center; gap: 30px; }
            .hero-left, .hero-right { width: 100%; }
            .hero-left { display: flex; flex-direction: column; align-items: center; }
            
            .problem-container { flex-direction: column; gap: 40px; }
            .problem-left, .problem-right { width: 100%; }
            .problem-section h2 { margin-bottom: 15px; }
            .problem-badge { padding: 6px 12px; }
            .problem-badge.badge-top { top: -10px; left: -10px; }
            .problem-badge.badge-bottom { bottom: -10px; right: -10px; }
            .problem-right { margin-top: 20px; }

            
            .features-grid { grid-template-columns: 1fr; gap: 20px; }
            .winsafy-glass { padding: 30px 20px !important; }
            
            .wincoach-container { flex-direction: column; gap: 30px; }
            .wincoach-left, .wincoach-right { width: 100%; }
            
            .localfirst-container { flex-direction: column; gap: 30px; }
            .localfirst-left, .localfirst-right { width: 100%; }
            .localfirst-card { padding: 30px 20px !important; }
            
            .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
            
            .winsafy-buttons-row { grid-template-columns: 1fr; gap: 12px; }
            .winsafy-downloads-container { margin-top: 15px; }
            
            .footer-container { flex-direction: column; gap: 30px; }
            .footer-col { width: 100%; }
            
            .winsafy-chat-box-container {
                width: calc(100vw - 20px) !important;
                height: 460px !important;
                max-height: calc(100vh - 110px) !important;
                right: 10px !important;
                bottom: 80px !important;
            }

            .winsafy-chat-fab {
                bottom: 16px !important;
                right: 16px !important;
                width: 50px !important;
                height: 50px !important;
            }

            .social-proof-container {
                bottom: 16px;
                left: 16px;
                max-width: calc(100vw - 32px);
            }

            /* Disable heavy animations & 3D on mobile for smooth scroll and stability */
            .hero-globe-backdrop,
            .hero-shooting-lights,
            .ai-particles,
            .orbital-ring,
            .ai-node,
            .hero-light-waves {
                display: none !important;
                animation: none !important;
            }

            .phone-mockup-container {
                transform: none !important;
                transition: none !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
            }

            .hero-interactive-universe:hover .phone-mockup-container {
                transform: none !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
                border-color: rgba(255,255,255,0.1) !important;
            }
        }


/* Futuristic Shooting Lights (Diagonal streaks) */
.hero-shooting-lights {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.hero-shooting-lights .streak {
    position: absolute;
    width: 180px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.4), #ffffff, rgba(0, 163, 255, 0.4), transparent);
    opacity: 0;
    transform: rotate(-35deg);
}
.hero-shooting-lights .streak-1 {
    top: 15%; left: -25%;
    animation: shootStreak1 12s infinite linear;
}
.hero-shooting-lights .streak-2 {
    top: 45%; left: -25%;
    animation: shootStreak2 16s infinite linear;
    animation-delay: 4s;
}
.hero-shooting-lights .streak-3 {
    top: 75%; left: -25%;
    animation: shootStreak3 14s infinite linear;
    animation-delay: 8s;
}
@keyframes shootStreak1 {
    0% { left: -25%; opacity: 0; }
    5% { opacity: 0.8; }
    25% { left: 125%; opacity: 0; }
    100% { left: 125%; opacity: 0; }
}
@keyframes shootStreak2 {
    0% { left: -25%; opacity: 0; }
    5% { opacity: 0.6; }
    30% { left: 125%; opacity: 0; }
    100% { left: 125%; opacity: 0; }
}
@keyframes shootStreak3 {
    0% { left: -25%; opacity: 0; }
    5% { opacity: 0.7; }
    22% { left: 125%; opacity: 0; }
    100% { left: 125%; opacity: 0; }
}

/* Expanding Radar Light Waves (Ripple effect) */
.hero-light-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}
.hero-light-waves .wave {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1.5px solid rgba(0, 163, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    animation: waveRipple 9s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
.hero-light-waves .wave-1 { animation-delay: 0s; }
.hero-light-waves .wave-2 { animation-delay: 3s; }
.hero-light-waves .wave-3 { animation-delay: 6s; }

@keyframes waveRipple {
    0% { transform: scale(0.2); opacity: 0; }
    8% { opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 0; border-color: rgba(26, 63, 216, 0); }
}


/* ==========================================================================
   $5000 PREMIUM INTERACTIVE AI CORE UNIVERSE
   ========================================================================== */

/* Main Universe wrapper */
.hero-interactive-universe {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 520px;
    pointer-events: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Horizontal Laser Scanner Sweep */
.hero-grid-scanner {
    position: absolute;
    left: -20%;
    width: 140%;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 163, 255, 0) 15%, 
        rgba(0, 163, 255, 0.45) 35%, 
        #ffffff 50%, 
        rgba(0, 163, 255, 0.45) 65%, 
        rgba(0, 163, 255, 0) 85%, 
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.7), 0 0 25px rgba(0, 163, 255, 0.3);
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
    animation: gridScan 7s ease-in-out infinite;
}
@keyframes gridScan {
    0% { top: 0%; opacity: 0; }
    8% { opacity: 0.85; }
    50% { top: 100%; opacity: 0.85; }
    92% { opacity: 0.85; }
    100% { top: 0%; opacity: 0; }
}

/* 3D Orbiting Rings behind the phone */
.ai-orbitals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transform-style: preserve-3d;
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
    transition: border-color 0.5s ease;
}

/* Outer ring - Dashed */
.orbital-ring.ring-1 {
    width: 580px;
    height: 580px;
    margin-left: -290px;
    margin-top: -290px;
    border: 1px dashed rgba(0, 163, 255, 0.35);
    transform: rotateX(70deg) rotateY(-20deg);
    animation: orbitClockwise 32s linear infinite;
}

/* Middle ring - Solid thin */
.orbital-ring.ring-2 {
    width: 440px;
    height: 440px;
    margin-left: -220px;
    margin-top: -220px;
    border: 1.5px solid rgba(26, 63, 216, 0.25);
    transform: rotateX(65deg) rotateY(25deg);
    animation: orbitCounterClockwise 22s linear infinite;
}

/* Inner ring - Dashed cyan */
.orbital-ring.ring-3 {
    width: 320px;
    height: 320px;
    margin-left: -160px;
    margin-top: -160px;
    border: 1px dashed rgba(0, 240, 255, 0.4);
    transform: rotateX(60deg) rotateY(5deg);
    animation: orbitClockwise 14s linear infinite;
}

/* Orbit keyframes */
@keyframes orbitClockwise {
    from { transform: rotateX(70deg) rotateY(-20deg) rotateZ(0deg); }
    to { transform: rotateX(70deg) rotateY(-20deg) rotateZ(360deg); }
}
@keyframes orbitCounterClockwise {
    from { transform: rotateX(65deg) rotateY(25deg) rotateZ(360deg); }
    to { transform: rotateX(65deg) rotateY(25deg) rotateZ(0deg); }
}

/* Glowing connection nodes on the rings */
.ai-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.5s ease;
}

.ai-node.node-1 {
    top: 15%;
    left: 20%;
    background: #00A3FF;
    box-shadow: 0 0 10px #00A3FF, 0 0 20px rgba(0, 163, 255, 0.5);
    animation: nodePulse 3s infinite ease-in-out;
}
.ai-node.node-2 {
    top: 85%;
    left: 75%;
    background: #00f0ff;
    box-shadow: 0 0 10px #00f0ff, 0 0 20px rgba(0, 240, 255, 0.5);
    animation: nodePulse 3s infinite ease-in-out 1.5s;
}
.ai-node.node-3 {
    top: 50%;
    left: 92%;
    background: #1A3FD8;
    box-shadow: 0 0 10px #1A3FD8, 0 0 20px rgba(26, 63, 216, 0.5);
    animation: nodePulse 2.5s infinite ease-in-out 0.7s;
}
.ai-node.node-4 {
    top: 48%;
    left: 8%;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 15px rgba(255, 255, 255, 0.8);
    animation: nodePulse 4s infinite ease-in-out 2s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
}

/* Floating Ethereal AI Particles */
.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ai-particles .particle {
    position: absolute;
    width: 3.5px;
    height: 3.5px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 163, 255, 0.8);
    opacity: 0;
}

/* Custom drift paths for particles */
.ai-particles .p-1 { left: 20%; top: 80%; animation: particleDrift1 11s infinite linear; }
.ai-particles .p-2 { left: 75%; top: 75%; animation: particleDrift2 14s infinite linear 2s; }
.ai-particles .p-3 { left: 45%; top: 90%; animation: particleDrift3 12s infinite linear 4s; }
.ai-particles .p-4 { left: 15%; top: 60%; animation: particleDrift2 10s infinite linear 6s; }
.ai-particles .p-5 { left: 82%; top: 40%; animation: particleDrift1 13s infinite linear 1s; }
.ai-particles .p-6 { left: 30%; top: 70%; animation: particleDrift3 15s infinite linear 3s; }

@keyframes particleDrift1 {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    15% { opacity: 0.75; }
    85% { opacity: 0.75; }
    100% { transform: translateY(-350px) translateX(-40px); opacity: 0; }
}
@keyframes particleDrift2 {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-400px) translateX(50px); opacity: 0; }
}
@keyframes particleDrift3 {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-380px) translateX(20px); opacity: 0; }
}

/* Transition smoothness for the phone mockup itself */
.phone-mockup-container {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.6s ease !important;
}

/* ==========================================================================
   AI HYPER-ACTIVITY STATE (Interactive Hover States)
   ========================================================================== */

/* Speed up orbital rings rotation on hover */
.hero-interactive-universe:hover .orbital-ring.ring-1 {
    animation-duration: 9s;
    border-color: rgba(0, 163, 255, 0.75);
}
.hero-interactive-universe:hover .orbital-ring.ring-2 {
    animation-duration: 6s;
    border-color: rgba(26, 63, 216, 0.65);
}
.hero-interactive-universe:hover .orbital-ring.ring-3 {
    animation-duration: 3.5s;
    border-color: rgba(0, 240, 255, 0.85);
}

/* React nodes on hover */
.hero-interactive-universe:hover .ai-node {
    transform: scale(1.6);
    filter: brightness(1.3);
}

/* Intensify and shift phone mockup shadow color to neon purple/cyan on hover */
.hero-interactive-universe:hover .phone-mockup-container {
    transform: translateY(-8px) rotateX(12deg) rotateY(-8deg);
    box-shadow: 
        -15px 15px 40px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(0, 163, 255, 0.65),
        0 0 90px rgba(157, 0, 255, 0.45) !important;
    border-color: rgba(0, 240, 255, 0.95) !important;
}

/* Accelerate particle drift on hover */
.hero-interactive-universe:hover .ai-particles .particle {
    animation-duration: 4s !important;
    background: #00f0ff;
    box-shadow: 0 0 10px #00f0ff;
}


/* ==========================================================================
   FUTURISTIC TERRESTRIAL NETWORK GLOBE BACKDROP
   ========================================================================== */

/* Globe Backdrop Behind Hero Left Text */
.hero-left {
    position: relative;
    z-index: 2; /* Keep left content structure on top */
}

.hero-globe-backdrop {
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    z-index: -1; /* Behind text layers */
    opacity: 0.48; /* Highly visible but elegant wireframe texture */
    pointer-events: none;
    transform-style: preserve-3d;
    mix-blend-mode: screen;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.16) 0%, transparent 65%);
}

.globe-svg {
    width: 100%;
    height: 100%;
    animation: rotateGlobe 75s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.45));
}

.globe-line {
    fill: none;
    stroke: rgba(0, 163, 255, 0.45);
    stroke-width: 1.5px; /* Thicker grid lines */
    stroke-dasharray: 5, 4;
}

.connection-line {
    stroke: #00f0ff; /* Glowing cyan connection lines */
    stroke-width: 2px; /* Thicker dashes */
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: dashConnection 7s linear infinite;
}
.connection-line.line-a { animation-delay: 0s; }
.connection-line.line-b { animation-delay: 1.8s; }
.connection-line.line-c { animation-delay: 3.6s; }
.connection-line.line-d { animation-delay: 5.4s; }

.globe-node {
    fill: #ffffff; /* Bright white center */
    stroke: #00f0ff; /* Glowing cyan outline */
    stroke-width: 2px;
    filter: drop-shadow(0 0 8px #00f0ff);
    animation: nodePulseGlow 3s infinite ease-in-out;
}
.globe-node.node-a { animation-delay: 0s; }
.globe-node.node-b { animation-delay: 0.5s; }
.globe-node.node-c { animation-delay: 1s; }
.globe-node.node-d { animation-delay: 1.5s; }
.globe-node.node-e { fill: #ffffff; animation-delay: 2s; }
.globe-node.node-f { fill: #ffffff; animation-delay: 2.5s; }

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes dashConnection {
    to {
        stroke-dashoffset: -120;
    }
}
@keyframes nodePulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.35); opacity: 1; }
}

/* Guarantee absolute text readability over the globe backdrop */
.hero-left h1, 
.hero-left .subtitle,
.hero-left .winsafy-downloads-container {
    position: relative;
    z-index: 3;
}


/* ==========================================================================
   WINCOACH SIMULATED CONVERSATION & TYPING ANIMATIONS
   ========================================================================== */

/* Bubbles animations wrapper setup */
.conversation-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* User query bubble animation */
.convo-bubble.user {
    opacity: 0;
    transform: translateY(15px);
    animation: userBubbleCycle 16s infinite ease-in-out;
}

/* WinCoach response bubble animation */
.convo-bubble.coach {
    opacity: 0;
    transform: translateY(15px);
    animation: coachBubbleCycle 16s infinite ease-in-out;
}

/* Pulsing typing indicator */
.convo-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 18px;
    margin: 10px 0;
    width: fit-content;
    align-self: flex-start;
    opacity: 0;
    animation: typingIndicatorCycle 16s infinite ease-in-out;
    position: relative;
}

.convo-typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--winsafy-accent);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.2s infinite ease-in-out;
}
.convo-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.convo-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Cycle animations timelines */
@keyframes userBubbleCycle {
    0% { opacity: 0; transform: translateY(15px); }
    6% { opacity: 0; transform: translateY(15px); } /* 1s mark */
    9% { opacity: 1; transform: translateY(0); }
    94% { opacity: 1; transform: translateY(0); }
    98% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(15px); }
}

@keyframes typingIndicatorCycle {
    0% { opacity: 0; transform: scale(0.9); }
    15% { opacity: 0; transform: scale(0.9); } /* 2.4s mark */
    18% { opacity: 1; transform: scale(1); }
    28% { opacity: 1; transform: scale(1); } /* 4.5s mark */
    30% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 0; }
}

@keyframes coachBubbleCycle {
    0% { opacity: 0; transform: translateY(15px); }
    28% { opacity: 0; transform: translateY(15px); } /* 4.5s mark */
    31% { opacity: 1; transform: translateY(0); }
    94% { opacity: 1; transform: translateY(0); }
    98% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(15px); }
}


/* Section 5: Pourquoi Local-First Background Override */
.localfirst-section {
                background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #080C2C 100%) !important;
}

.testimonials-section {
                position: relative;
        }
        .testimonials-slider-container {
            position: relative;
            max-width: 1200px;
            width: 100%;
            margin: 50px auto 0 auto;
            padding: 0 45px;
        }
        .testimonials-track-wrapper {
            overflow: hidden;
            width: 100%;
        }
        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            gap: 30px;
            width: 100%;
        }
        .testimonial-slide {
            flex: 0 0 calc(50% - 15px);
            box-sizing: border-box;
        }
        @media (max-width: 991px) {
            .testimonial-slide {
                flex: 0 0 100%;
            }
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02) !important;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform: translateY(-8px) scale(1.01) !important;
            border-color: rgba(0, 163, 255, 0.2) !important;
            box-shadow: 0 16px 40px rgba(0, 163, 255, 0.08) !important;
        }
        
        /* Carousel Navigation Controls */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid rgba(0, 163, 255, 0.1);
            color: var(--winsafy-primary-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            z-index: 10;
            transition: all 0.3s ease;
        }
        .slider-arrow:hover {
            background: var(--winsafy-primary);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(26, 63, 216, 0.3);
            border-color: var(--winsafy-primary);
        }
        .prev-arrow { left: -5px; }
        .next-arrow { right: -5px; }
        @media (max-width: 991px) {
            .prev-arrow { left: 0px; }
            .next-arrow { right: 0px; }
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
        }
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(13, 23, 96, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--winsafy-primary);
}


/* ==========================================================================
   17. CONTACT PAGE LIGHT THEME (CUSTOM CUSTOMIZER SUPPORT)
   ========================================================================== */
.contact-content-light {
    background-color: var(--winsafy-bg-light) !important;
    background-image: radial-gradient(rgba(26, 63, 216, 0.05) 1.5px, transparent 1.5px) !important;
    background-size: 24px 24px !important;
    position: relative;
    padding: 80px 0;
}
.contact-card-light {
    background: #ffffff !important;
    border: 1px solid rgba(26, 63, 216, 0.08) !important;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(13, 23, 96, 0.04) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.contact-card-light:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.25) !important;
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.08) !important;
}
.form-label-light {
    display: block;
    font-family: var(--winsafy-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--winsafy-primary-dark) !important;
    margin-bottom: 8px;
}
.form-input-light, .form-textarea-light {
    width: 100%;
    background: #f8fafc !important;
    border: 1px solid rgba(13, 23, 96, 0.12) !important;
    border-radius: 8px;
    padding: 12px 18px;
    font-family: var(--winsafy-font-body);
    font-size: 14.5px;
    outline: none;
    transition: all 0.3s ease !important;
    color: var(--winsafy-text-dark) !important;
}
.form-input-light::placeholder, .form-textarea-light::placeholder {
    color: var(--winsafy-text-muted) !important;
    opacity: 0.6;
}
.form-input-light:hover, .form-textarea-light:hover {
    border-color: rgba(26, 63, 216, 0.3) !important;
    background: #ffffff !important;
}
.form-input-light:focus, .form-textarea-light:focus {
    border-color: var(--winsafy-primary) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(26, 63, 216, 0.08) !important;
}
/* Subpages contact, static shop & newsletter styles */
.winsafy-page-section .entry-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: var(--winsafy-primary-dark) !important;
    margin-bottom: 15px !important;
}

/* ==========================================================================
   14. SUBPAGES: CONTACT, SHOP & NEWSLETTER
   ========================================================================== */

/* Contact Page Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #070B28 100%);
    color: #ffffff;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}
.contact-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.contact-banner h1 {
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 15px;
}
.contact-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Area */
.contact-content {
    padding: 80px 0;
}
.contact-layout {
    display: flex;
    gap: 50px;
}
.contact-info-col {
    width: 40%;
}
.contact-info-col h3 {
    font-size: 24px;
    color: var(--winsafy-primary-dark);
    margin-bottom: 15px;
}
.contact-info-col p {
    color: var(--winsafy-text-muted);
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26, 63, 216, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--winsafy-primary);
    font-size: 20px;
    flex-shrink: 0;
}
.info-text h5 {
    font-family: var(--winsafy-font-heading);
    font-size: 14px;
    color: var(--winsafy-primary-dark);
    margin-bottom: 2px;
}
.info-text p {
    margin-bottom: 0;
    font-size: 14.5px;
    color: var(--winsafy-text-dark);
}

/* Contact Form Styling */
.contact-form-col {
    width: 60%;
}
.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(7, 11, 40, 0.02);
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-family: var(--winsafy-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--winsafy-primary-dark);
    margin-bottom: 8px;
}
.form-input, .form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 12px 18px;
    font-family: var(--winsafy-font-body);
    font-size: 14.5px;
    outline: none;
    transition: var(--winsafy-transition-smooth);
    color: var(--winsafy-text-dark);
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--winsafy-primary);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(26, 63, 216, 0.05);
}
.form-submit-btn {
    background: linear-gradient(90deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    transition: var(--winsafy-transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.25);
}
.form-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 163, 255, 0.4);
}
#contact-status-msg {
    margin-top: 15px;
    font-weight: 600;
    font-size: 14.5px;
}

/* Shop Page Banner */
.shop-banner {
    background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #070B28 100%);
    color: #ffffff;
    padding: 160px 0 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.shop-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.shop-banner h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}
.shop-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Content Area */
.shop-content-area {
    background-color: var(--winsafy-bg-light);
    padding: 80px 0;
    position: relative;
}
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background: #ffffff;
    border: 1px solid rgba(26, 63, 216, 0.08);
    color: #475569 !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--winsafy-font-heading);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(13, 23, 96, 0.03);
}
.filter-btn:hover {
    background: rgba(26, 63, 216, 0.04);
    border-color: rgba(26, 63, 216, 0.3);
    color: var(--winsafy-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 63, 216, 0.06);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(26, 63, 216, 0.28);
}

/* Shop Grid */
.woocommerce-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: #ffffff;
    border: 1px solid rgba(26, 63, 216, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(7, 11, 40, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    background: #ffffff;
    border-color: rgba(26, 63, 216, 0.2);
    box-shadow: 0 10px 30px rgba(26, 63, 216, 0.08);
    transform: translateY(-6px);
}
.onsale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--winsafy-danger);
    color: #ffffff;
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 2;
}
.product-image-container {
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--winsafy-border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--winsafy-accent);
}
.product-title {
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    color: var(--winsafy-text-light);
    font-size: 17px;
    margin-bottom: 10px;
}
.product-stars {
    color: var(--winsafy-accent);
    font-size: 13px;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-price {
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    font-size: 19px;
    color: var(--winsafy-accent);
    margin-bottom: 20px;
}
.product-price del {
    color: var(--winsafy-text-muted);
    font-size: 14px;
    margin-right: 8px;
}
.product-price ins {
    text-decoration: none;
    color: var(--winsafy-success);
}
.add-to-cart-btn {
    background: linear-gradient(90deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--winsafy-transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.25);
    text-decoration: none;
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 255, 0.45);
    filter: brightness(1.1);
}

/* Newsletter Page Specific tweaks */
.newsletter-page-wrapper {
    background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #070B28 100%);
    color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px 0;
    position: relative;
}
.newsletter-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}
.newsletter-page-wrapper .newsletter-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
    max-width: 800px;
    width: 100%;
}

/* Responsive adjustments for subpages */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    .contact-info-col, .contact-form-col {
        width: 100%;
    }
    .woocommerce-products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-banner h1, .shop-banner h1 {
        font-size: 32px !important;
    }
}
/* Blog grid & article single post styles */

/* ==========================================================================
   15. BLOG GRID & SINGLE POST SIDEBAR LAYOUT
   ========================================================================== */

/* Article Layout Wrapper */
.article-layout {
    padding: 80px 0;
    display: flex;
    gap: 50px;
}


.article-body {
    width: 70%;
    background: #ffffff !important;
    border: 1px solid rgba(26, 63, 216, 0.08) !important;
    border-radius: 16px !important;
    padding: 45px !important;
    box-shadow: 0 10px 35px rgba(13, 23, 96, 0.03) !important;
}


.article-body p {
    color: var(--winsafy-text-dark);
    margin-bottom: 25px;
    font-size: 17px;
}

.article-body h2 {
    font-size: 26px;
    color: var(--winsafy-primary-dark);
    margin: 40px 0 20px 0;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    font-size: 16.5px;
    color: var(--winsafy-text-dark);
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--winsafy-primary);
    background: rgba(26,63,216,0.03);
    padding: 20px 30px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--winsafy-primary-dark);
}

/* Social sharing buttons */
.winsafy-post-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.winsafy-post-share .share-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--winsafy-primary-dark);
}

.winsafy-post-share .share-buttons {
    display: flex;
    gap: 10px;
}

.winsafy-post-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.winsafy-post-share .share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.winsafy-post-share .share-facebook {
    background-color: #1877F2;
}

.winsafy-post-share .share-twitter {
    background-color: #000000;
}

.winsafy-post-share .share-linkedin {
    background-color: #0A66C2;
}

.winsafy-post-share .share-whatsapp {
    background-color: #25D366;
}

.winsafy-post-share .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    filter: brightness(1.1);
}

@media (max-width: 576px) {
    .winsafy-post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Sidebar styling */
.article-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(7, 11, 40, 0.01);
}

.widget-title {
    font-size: 18px;
    color: var(--winsafy-primary-dark);
    border-bottom: 2px solid rgba(26,63,216,0.08);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding-left: 0 !important;
}

.recent-posts-item {
    margin-bottom: 0 !important;
    list-style-type: none !important;
}

.recent-posts-item a {
    display: block;
    color: var(--winsafy-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.recent-posts-item a:hover {
    color: var(--winsafy-primary);
}

.recent-posts-date {
    font-size: 11px;
    color: var(--winsafy-text-muted);
    margin-top: 4px;
}

/* Glassmorphic App Promo Widget */
.sidebar-widget.app-promo {
    background: linear-gradient(135deg, var(--winsafy-primary-dark) 0%, #070B28 100%);
    color: #ffffff;
    text-align: center;
}
.sidebar-widget.app-promo h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}
.sidebar-widget.app-promo p {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.app-promo-btn {
    display: block;
    background: linear-gradient(90deg, var(--winsafy-primary) 0%, var(--winsafy-accent) 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: var(--winsafy-font-heading);
    font-weight: 700;
    font-size: 13px;
    transition: var(--winsafy-transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
}
.app-promo-btn:hover {
    box-shadow: 0 6px 18px rgba(0, 163, 255, 0.45);
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 11, 40, 0.02);
    transition: var(--winsafy-transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26,63,216,0.08);
    border-color: rgba(0, 163, 255, 0.15);
}

.blog-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(26,63,216,0.08) 0%, rgba(0,163,255,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--winsafy-primary);
    position: relative;
}

.blog-img-placeholder::after {
    content: 'WinSafy';
    font-family: var(--winsafy-font-heading);
    font-weight: 800;
    font-size: 24px;
    opacity: 0.15;
    letter-spacing: 0.1em;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--winsafy-text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}

.blog-card-category {
    color: var(--winsafy-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-size: 18px;
    color: var(--winsafy-primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14.5px;
    color: var(--winsafy-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-family: var(--winsafy-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--winsafy-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: var(--winsafy-accent);
}

/* Suggested articles section at bottom of post */
.suggested-articles-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--winsafy-bg-light);
}

.suggested-articles-title {
    font-family: var(--winsafy-font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--winsafy-primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive updates */
@media (max-width: 992px) {
    .article-layout {
        flex-direction: column;
        gap: 40px;
    }
    .article-body {
        width: 100%;
    }
    .article-sidebar {
        width: 100%;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WINSAFY FOOTER ALIGNMENT & BODY HEIGHT FIX (STICKY FOOTER)
   ========================================================================== */

html, body {
    height: 100% !important;
    margin: 0 !important;
}

body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Push footer to the absolute bottom of the body */
body > footer {
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

/* Ensure any page wrapper gets stretched to fill space */
.winsafy-main-content,
.shop-content-area,
.woocommerce-checkout,
.woocommerce-cart,
.page-template-default main,
#primary,
.site-content,
.newsletter-page-wrapper,
.article-layout {
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   TESTIMONIALS SLIDER RESPONSIVE STYLING (MOBILE OPTIMIZATION)
   ========================================================================== */

@media (max-width: 767px) {
    /* Hide the prev/next arrow buttons completely on mobile */
    .slider-arrow {
        display: none !important;
    }
    
    /* Remove the large padding reserved for arrows so cards can take full width */
    .testimonials-slider-container {
        padding: 0 16px !important;
        margin-top: 30px !important;
    }
    
    /* Optimize slide padding for mobile viewports */
    .testimonial-card {
        padding: 24px 20px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02) !important;
    }
    
    /* Set proper font sizing and line height for restricted mobile screen */
    .testimonial-text {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }
}

/* ==========================================================================
   COOKIE CONSENT POPUP STYLING (GDPR)
   ========================================================================== */
.cookie-consent-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    width: calc(100% - 48px);
    background: rgba(7, 11, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    animation: cookieSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieSlideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cookie-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cookie-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}

.cookie-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.cookie-btn.accept {
    background: var(--winsafy-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 63, 216, 0.25);
}

.cookie-btn.accept:hover {
    background: #0d29ab;
    box-shadow: 0 6px 18px rgba(26, 63, 216, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .cookie-consent-container {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-btn {
        flex-grow: 1;
        text-align: center;
    }
}

/* ==========================================================================
   FOOTER SOCIAL LINKS STYLING
   ========================================================================== */
.footer-social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-links a svg {
    transition: transform 0.3s ease;
}

.footer-social-links a:hover {
    color: #ffffff !important;
    background: var(--winsafy-accent);
    border-color: var(--winsafy-accent);
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
    transform: translateY(-3px);
}

.footer-social-links a:hover svg {
    transform: scale(1.05);
}

/* Center social icons on mobile if footer alignment is centered */
footer .footer-col-1 .footer-social-links {
    justify-content: flex-start;
}

@media (max-width: 767px) {
    footer .footer-col-1 .footer-social-links {
        justify-content: center;
    }
}

/* ==========================================================================
   WINSAFY PREMIUM PAGE PRELOADER & SEAMLESS TRANSITIONS
   ========================================================================== */
.winsafy-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0D1760 !important;
    z-index: 9999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}

.winsafy-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo-symbol {
    width: 64px;
    height: 64px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 163, 255, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-symbol svg {
    width: 100%;
    height: 100%;
}

.preloader-spinner {
    width: 32px;
    height: 32px;
    border: 3.5px solid rgba(255, 255, 255, 0.1);
    border-top-color: #00A3FF;
    border-radius: 50%;
    animation: preloaderSpin 0.75s linear infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 30px rgba(0, 163, 255, 0.85)); }
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}


/* ==========================================================================
   WINSAFY PREMIUM PAGINATION
   ========================================================================== */
.winsafy-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 50px 0 20px 0;
}

.winsafy-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 6px;
	border-radius: 8px;
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #0D1760;
	background-color: #ffffff;
	border: 1px solid rgba(13, 23, 96, 0.08);
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.winsafy-pagination .page-numbers:hover {
	color: #ffffff;
	background-color: #1A3FD8;
	border-color: #1A3FD8;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(26, 63, 216, 0.2);
}

.winsafy-pagination .page-numbers.current {
	color: #ffffff;
	background-color: #1A3FD8;
	border-color: #1A3FD8;
	box-shadow: 0 4px 12px rgba(26, 63, 216, 0.3);
}

.winsafy-pagination .page-numbers.dots {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #6c757d;
}

.winsafy-pagination .page-numbers.dots:hover {
	transform: none;
	background-color: transparent;
	color: #6c757d;
	box-shadow: none;
}

.winsafy-pagination .prev,
.winsafy-pagination .next {
	padding: 0 16px;
}
