/**
 * Feature Page - Landing Style
 * Shared styles for feature pages using the landing page design system
 */

/* ==========================================================================
   Import Landing Design System Variables
   ========================================================================== */

.feature-landing-page {
    /* Colors - Primary Palette */
    --color-primary: #6366F1;
    --color-primary-light: #818CF8;
    --color-secondary: #8B5CF6;
    --color-accent: #22D3EE;

    /* Colors - Backgrounds */
    --color-bg-primary: #0F0D1A;
    --color-bg-secondary: #1E1B4B;
    --color-bg-surface: rgba(255, 255, 255, 0.05);
    --color-bg-surface-hover: rgba(255, 255, 255, 0.08);

    /* Colors - Text */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A5B4FC;
    --color-text-muted: rgba(255, 255, 255, 0.6);

    /* Colors - Borders */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* Colors - Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
    --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Apply base styles */
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

/* ==========================================================================
   Hero Section - Landing Style
   ========================================================================== */

.feature-landing-page .feature-hero {
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-landing-page .feature-hero .btn-cta {
    margin: 0 auto;
}

.feature-landing-page .feature-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.feature-landing-page .feature-hero h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-landing-page .feature-hero .lead {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.feature-landing-page .feature-hero .hero-screenshot {
    margin-top: var(--space-2xl);
    position: relative;
}

.feature-landing-page .feature-hero .hero-screenshot img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(99, 102, 241, 0.2);
}

.feature-landing-page .feature-hero .hero-screenshot::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
    border-radius: var(--radius-xl);
}

/* ==========================================================================
   CTA Button - Landing Style
   ========================================================================== */

.feature-landing-page .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.feature-landing-page .btn-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.feature-landing-page .btn-cta i {
    font-size: 1.1rem;
}

/* ==========================================================================
   Split Sections - Landing Style
   ========================================================================== */

.feature-landing-page .split-section {
    padding: var(--space-3xl) 0;
}

.feature-landing-page .split-section.alt-bg {
    background: var(--color-bg-secondary);
}

.feature-landing-page .split-section .split-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.feature-landing-page .split-section .split-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.feature-landing-page .split-section .split-body {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.8;
}

.feature-landing-page .split-section .image-placeholder {
    background: var(--gradient-surface);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

.feature-landing-page .split-section .image-placeholder i {
    color: var(--color-text-muted);
}

/* ==========================================================================
   Features Grid - Landing Style with Glass Cards
   ========================================================================== */

.feature-landing-page .features-grid-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.feature-landing-page .features-grid-section .section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2xl);
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-landing-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-landing-page .feature-grid-item {
    background: var(--gradient-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.feature-landing-page .feature-grid-item:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-landing-page .feature-grid-item .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-landing-page .feature-grid-item .feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-landing-page .feature-grid-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.feature-landing-page .feature-grid-item p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.feature-landing-page .feature-grid-item .feature-screenshot {
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.feature-landing-page .feature-grid-item .feature-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   Use Cases Section - Landing Style
   ========================================================================== */

.feature-landing-page .use-cases-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-primary);
}

.feature-landing-page .use-cases-section .section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2xl);
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-landing-page .use-case-item {
    background: var(--gradient-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.feature-landing-page .use-case-item:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-surface-hover);
}

.feature-landing-page .use-case-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-landing-page .use-case-item h3 .use-case-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-landing-page .use-case-item p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    padding-left: calc(32px + var(--space-sm));
}

/* ==========================================================================
   Trust Section - Landing Style
   ========================================================================== */

.feature-landing-page .trust-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
}

.feature-landing-page .trust-section .section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: center;
    color: var(--color-text-secondary);
}

.feature-landing-page .trust-section .section-body {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   Closing CTA - Landing Style
   ========================================================================== */

.feature-landing-page .closing-cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.feature-landing-page .closing-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.feature-landing-page .closing-cta-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    position: relative;
}

.feature-landing-page .closing-cta-section .section-body {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    position: relative;
}

.feature-landing-page .closing-cta-section .btn-cta {
    position: relative;
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.feature-landing-page .closing-cta-section .btn-cta:hover {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(99, 102, 241, 0.4);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991.98px) {
    body:has(.feature-landing-page) .navbar > .container {
        border-radius: var(--radius-xl);
        padding: 0.75rem 1.25rem;
        max-width: calc(100% - 2rem);
    }
}

@media (max-width: 992px) {
    .feature-landing-page .feature-hero h1 {
        font-size: var(--font-size-3xl);
    }

    .feature-landing-page .feature-hero .lead {
        font-size: var(--font-size-lg);
    }

    .feature-landing-page .split-section .split-title {
        font-size: var(--font-size-2xl);
    }

    .feature-landing-page .features-grid-section .section-title,
    .feature-landing-page .use-cases-section .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .feature-landing-page .feature-hero {
        padding: calc(var(--space-2xl) + 60px) 0 var(--space-2xl);
        min-height: auto;
    }

    .feature-landing-page .feature-hero h1 {
        font-size: var(--font-size-2xl);
    }

    .feature-landing-page .split-section {
        padding: var(--space-2xl) 0;
    }

    .feature-landing-page .split-section .split-content {
        text-align: center;
    }

    .feature-landing-page .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-landing-page .use-case-item p {
        padding-left: 0;
        margin-top: var(--space-sm);
    }

    .feature-landing-page .closing-cta-section h2 {
        font-size: var(--font-size-2xl);
    }
}

/* ==========================================================================
   Animations - Hero Entrance
   ========================================================================== */

@keyframes evo-title-reveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes evo-fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes evo-scale-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Title Animation */
.feature-landing-page .feature-hero h1 {
    animation: evo-title-reveal 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Hero Lead Animation */
.feature-landing-page .feature-hero .lead {
    animation: evo-fade-up 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Hero CTA Animation */
.feature-landing-page .feature-hero .btn-cta {
    animation: evo-fade-up 0.8s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* Hero Screenshot Animation */
.feature-landing-page .feature-hero .hero-screenshot {
    animation: evo-scale-in 1s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* ==========================================================================
   Scroll-Triggered Animations
   ========================================================================== */

/* Base Animation Class */
.feature-landing-page .evo-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out;
}

.feature-landing-page .evo-animate.is-visible {
    opacity: 1;
}

/* Fade Up Animation */
.feature-landing-page .evo-animate-up {
    transform: translateY(40px);
}

.feature-landing-page .evo-animate-up.is-visible {
    transform: translateY(0);
}

/* Fade Left Animation */
.feature-landing-page .evo-animate-left {
    transform: translateX(-50px);
}

.feature-landing-page .evo-animate-left.is-visible {
    transform: translateX(0);
}

/* Fade Right Animation */
.feature-landing-page .evo-animate-right {
    transform: translateX(50px);
}

.feature-landing-page .evo-animate-right.is-visible {
    transform: translateX(0);
}

/* Scale Animation */
.feature-landing-page .evo-animate-scale {
    transform: scale(0.9);
}

.feature-landing-page .evo-animate-scale.is-visible {
    transform: scale(1);
}

/* Staggered Grid Items */
.feature-landing-page .feature-grid-item:nth-child(1) { transition-delay: 0s; }
.feature-landing-page .feature-grid-item:nth-child(2) { transition-delay: 0.1s; }
.feature-landing-page .feature-grid-item:nth-child(3) { transition-delay: 0.2s; }
.feature-landing-page .feature-grid-item:nth-child(4) { transition-delay: 0.3s; }
.feature-landing-page .feature-grid-item:nth-child(5) { transition-delay: 0.4s; }

/* Use Case Items Stagger */
.feature-landing-page .use-case-item:nth-child(1) { transition-delay: 0s; }
.feature-landing-page .use-case-item:nth-child(2) { transition-delay: 0.1s; }
.feature-landing-page .use-case-item:nth-child(3) { transition-delay: 0.2s; }
.feature-landing-page .use-case-item:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   Enhanced Card Hover Effects
   ========================================================================== */

.feature-landing-page .feature-grid-item {
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.feature-landing-page .feature-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.feature-landing-page .feature-grid-item:hover::before {
    opacity: 1;
}

/* Icon pulse on hover */
.feature-landing-page .feature-grid-item:hover .feature-icon {
    animation: evo-icon-pulse 0.6s ease-out;
}

@keyframes evo-icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Use Case Item Hover Enhancement */
.feature-landing-page .use-case-item {
    position: relative;
    overflow: hidden;
}

.feature-landing-page .use-case-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-landing-page .use-case-item:hover::before {
    opacity: 1;
}

.feature-landing-page .use-case-item:hover .use-case-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.feature-landing-page .use-case-item .use-case-number {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* ==========================================================================
   Background Ambient Effects
   ========================================================================== */

/* Animated Gradient Orbs */
.feature-landing-page .feature-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: evo-orb-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes evo-orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translate(20px, -30px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-20px, -10px) scale(1.05);
        opacity: 0.6;
    }
}

/* Second Orb */
.feature-landing-page .features-grid-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: evo-orb-float 25s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.feature-landing-page .features-grid-section {
    position: relative;
}

/* Floating Particles */
.feature-landing-page .feature-hero .evo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: evo-float-particle 15s infinite ease-in-out;
    pointer-events: none;
}

.feature-landing-page .feature-hero .evo-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.feature-landing-page .feature-hero .evo-particle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
    width: 6px;
    height: 6px;
}

.feature-landing-page .feature-hero .evo-particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: -6s;
}

.feature-landing-page .feature-hero .evo-particle:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: -9s;
    width: 5px;
    height: 5px;
}

.feature-landing-page .feature-hero .evo-particle:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: -12s;
}

@keyframes evo-float-particle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 0.7;
    }
    50% {
        transform: translate(-10px, -50px);
        opacity: 0.3;
    }
    75% {
        transform: translate(30px, -20px);
        opacity: 0.6;
    }
}

/* Subtle Grid Pattern */
.feature-landing-page .features-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.feature-landing-page .features-grid-section .container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Split Section Animation Enhancements
   ========================================================================== */

.feature-landing-page .split-section .split-image {
    position: relative;
}

.feature-landing-page .split-section .split-image::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient-glow);
    filter: blur(40px);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
    border-radius: var(--radius-xl);
}

.feature-landing-page .split-section .split-image:hover::after {
    opacity: 0.4;
}

.feature-landing-page .split-section .split-image img {
    transition: transform var(--transition-base);
}

.feature-landing-page .split-section .split-image:hover img {
    transform: scale(1.02);
}

/* ==========================================================================
   Closing CTA Animation Enhancement
   ========================================================================== */

.feature-landing-page .closing-cta-section .btn-cta {
    position: relative;
    overflow: hidden;
}

.feature-landing-page .closing-cta-section .btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.feature-landing-page .closing-cta-section .btn-cta:hover::after {
    width: 300px;
    height: 300px;
}

/* ==========================================================================
   Reduced Motion Preference
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .feature-landing-page .feature-hero h1,
    .feature-landing-page .feature-hero .lead,
    .feature-landing-page .feature-hero .btn-cta,
    .feature-landing-page .feature-hero .hero-screenshot {
        animation: none;
        opacity: 1;
    }

    .feature-landing-page .evo-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .feature-landing-page .feature-hero::after,
    .feature-landing-page .features-grid-section::after,
    .feature-landing-page .feature-hero .evo-particle {
        animation: none;
    }
}
