:root {
    /* Color Palette */
    --primary-blue: #2563eb;
    --primary-blue-light: #60a5fa;
    --primary-green: #10b981;
    --primary-green-light: #34d399;

    /* Background */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(30, 41, 59, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);

    /* Text */
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;

    /* Variables */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

/* Background Gradients & Glows */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
}

.glow-2 {
    top: 20%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
}

.glow-3 {
    bottom: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right,
            var(--primary-green-light) 0%,
            var(--primary-blue-light) 33%,
            #a78bfa 66%,
            var(--primary-green-light) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowText 6s linear infinite;
}

@keyframes flowText {
    to {
        background-position: 300% center;
    }
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.7);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    color: var(--primary-green);
    background: linear-gradient(to bottom right, var(--primary-blue-light), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Language Switcher */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    min-width: 150px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown,
.lang-dropdown.show {
    display: flex;
    flex-direction: column;
}

.lang-dropdown a {
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
    font-family: 'Cairo', 'Inter', sans-serif;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-header {
    text-align: center;
}

[dir="rtl"] .logo i,
[dir="rtl"] .hero-actions .fa-arrow-right {
    transform: scaleX(-1);
}

[dir="rtl"] .hero p {
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .hero p,
[dir="rtl"] .section-header h2 {
    letter-spacing: 0;
}

[dir="rtl"] .fd-card {
    text-align: right;
}

[dir="rtl"] .fd-card::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Global Big Shield Watermark */
.global-bg-shield {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 75vh;
    line-height: 1;
    z-index: 1;
    /* Au-dessus du fond, mais sous le contenu */
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.12;
    pointer-events: none;
    /* Les clics passent à travers */
    filter: blur(2px);
}

.hero-container {
    position: relative;
    z-index: 1;
    /* Keep content above shield */
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge-wrapper {
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary-green-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cloudflare-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(243, 128, 32, 0.1);
    border: 1px solid rgba(243, 128, 32, 0.3);
    color: #f38020;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

/* Glow pulse when count-up finishes */
.stat-number.stat-done {
    animation: statGlow 1.5s ease;
}

@keyframes statGlow {
    0% {
        filter: brightness(1);
        transform: scale(1);
    }

    30% {
        filter: brightness(1.8) drop-shadow(0 0 15px rgba(52, 211, 153, 0.8));
        transform: scale(1.15);
    }

    100% {
        filter: brightness(1);
        transform: scale(1);
    }
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fraudex Dashboard Mockup */
.fraudex-dashboard-mockup {
    margin-top: 5rem;
    border-radius: 0.5rem;
    background: #f8fafc;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
    width: 100%;
    color: #0f172a;
    font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fraudex-dashboard-mockup:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.fd-header {
    background: #101c37;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fd-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.fd-version {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.fd-body {
    padding: 1.5rem;
}

.fd-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.fd-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.fd-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 3px;
    border-radius: 0 3px 3px 0;
}

.fd-card-green::before {
    background: #22c55e;
}

.fd-card-red::before {
    background: #ef4444;
}

.fd-card-orange::before {
    background: #f59e0b;
}

.fd-card-blue::before {
    background: #3b82f6;
}

.fd-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fd-card-green .fd-card-icon {
    background: #e0f2fe;
    color: #22c55e;
}

.fd-card-green .fd-card-icon i {
    animation: iconPulse 3s infinite;
}

.fd-card-red .fd-card-icon {
    background: #fee2e2;
    color: #ef4444;
}

.fd-card-red .fd-card-icon i {
    animation: iconShake 4s infinite 1s;
}

.fd-card-orange .fd-card-icon {
    background: #fef3c7;
    color: #d97706;
}

.fd-card-orange .fd-card-icon i {
    animation: iconSpin 5s infinite linear;
}

.fd-card-blue .fd-card-icon {
    background: #efe0ff;
    color: #8b5cf6;
}

.fd-card-blue .fd-card-icon i {
    animation: iconFloat 3s infinite ease-in-out 0.5s;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes iconShake {

    0%,
    100% {
        transform: rotate(0);
    }

    5%,
    15%,
    25% {
        transform: rotate(-10deg);
    }

    10%,
    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    60% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

.fd-card-content {
    display: flex;
    flex-direction: column;
}

.fd-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.fd-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}


/* Trust Symbols */
.trust-symbols {
    padding: 4rem 0;
    text-align: center;
    background: rgba(2, 6, 23, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-symbols p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatLogo 4s ease-in-out infinite;
    will-change: transform, color;
}

.logo-item:nth-child(1) {
    animation-delay: 0s;
}

.logo-item:nth-child(2) {
    animation-delay: 1.2s;
}

.logo-item:nth-child(3) {
    animation-delay: 2.4s;
}

.logo-item:hover {
    color: var(--text-primary);
    animation-play-state: paused;
    transform: scale(1.15) translateY(-2px);
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Features Grid */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effect strong */
.glass-card:hover .feature-icon i {
    transform: scale(1.15) rotate(5deg);
    color: inherit;
}

/* Continuous Background Animations */
.icon-teal i {
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-red i {
    animation: iconPulse 3s infinite 0.5s;
}

.icon-blue i {
    animation: iconFloat 3.5s ease-in-out infinite 0.2s;
}

.icon-orange i {
    animation: iconSpin 8s linear infinite;
}

.icon-purple i {
    animation: iconShake 5s infinite 1s;
}

.icon-green i {
    animation: iconFloat 5s ease-in-out infinite 0.7s;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #2dd4bf;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0 8rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--primary-blue), transparent);
    z-index: 0;
    opacity: 0.5;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2.5rem 2rem;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
    background: var(--primary-green);
    color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-green);
    color: var(--primary-green-light);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--primary-blue), transparent);
}

.cta-content {
    max-width: 50%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lifetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary-green-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    animation: lifetimePulse 3s ease-in-out infinite;
}

.lifetime-badge i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

@keyframes lifetimePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }

    50% {
        box-shadow: 0 0 15px 3px rgba(16, 185, 129, 0.2);
    }
}

.guarantee {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary-green-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* High-End Animations Engine */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.fade-in-up {
    opacity: 0;
    filter: blur(5px);
    animation: fadeInUpPro 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, transform, filter;
}

.fade-in {
    opacity: 0;
    filter: blur(5px);
    animation: fadeInPro 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, filter;
}

@keyframes fadeInUpPro {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInPro {
    0% {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Float Animation for Mockups */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fraudex-dashboard-mockup.active {
    animation: float 6s ease-in-out infinite;
}

/* Staggered Delays Utilities */
.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container::before {
        display: none;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-action {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 0 3rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .fraudex-dashboard-mockup {
        margin-top: 3rem;
    }

    .fd-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .fd-body {
        padding: 1rem;
    }

    .fd-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
        /* Hide primary download btn on tiny mobile headers to save space, let the switch breathe */
    }
}