* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0d1524;
    color: white;
    overflow-x: hidden;
}

/* Szolgáltatások szekció */
.services-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: #0d1524;;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    z-index: 2;
    position: relative;
}

.services-content {
    margin-top: 3rem;
    flex: 1;
    max-width: 600px;
}

.services-tag {
    background-color: rgba(242, 201, 76, 0.15);
    color: #f2c94c;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.services-tag::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.services-title {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    position: relative;
}

.services-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #f2c94c;
    font-weight: 400;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.btn-primary {
    background-color: #f2c94c;
    color: #0f1123;
    border: 2px solid #f2c94c;
}

.btn-primary:hover {
    background-color: #ddb73e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 201, 76, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #f2c94c;
    border: 2px solid #f2c94c;
}

.btn-secondary:hover {
    background-color: rgba(242, 201, 76, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 201, 76, 0.1);
}

.services-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.blob-1, .blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(242, 201, 76, 0.3);
    top: -100px;
    right: -50px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(41, 98, 255, 0.3);
    bottom: -50px;
    left: 50px;
}

/* Animáció */
.services-visual .device-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.services-visual .device {
    width: 100%;
    height: 100%;
    background-color: #1a1d35;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.device-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.device-circles {
    display: flex;
    gap: 5px;
}

.device-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.device-circle:nth-child(1) {
    background-color: #ff5f56;
}

.device-circle:nth-child(2) {
    background-color: #ffbd2e;
}

.device-circle:nth-child(3) {
    background-color: #27c93f;
}

.device-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.code-snippet {
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a9b7c6;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px;
    background-color: #282a36;
    border-radius: 10px;
}

.code-line {
    display: block;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInCode 0.5s forwards;
}

.color-yellow {
    color: #f2c94c;
}

.color-blue {
    color: #6272a4;
}

.color-green {
    color: #50fa7b;
}

.color-purple {
    color: #bd93f9;
}

/* Animációk */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes fadeInCode {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatDevice {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.float-animation {
    animation: floatDevice 6s ease-in-out infinite;
}

/* Reszponzivitás */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-content {
        max-width: 100%;
    }
    
    .services-title {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .services-visual {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

        /* UX/UI Design szekció */
        .uxui-section {
            min-height: 100vh;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            background-color: #0d1524;
        }
        
        .design-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .design-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .design-tag {
            background-color: rgba(255, 129, 112, 0.15);
            color: #ff8170;
            font-weight: 600;
            padding: 0.6rem 1.2rem;
            border-radius: 2rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }
        
        .design-tag::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s infinite;
        }
        
        .design-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ff8170, #f2c94c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .design-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .uxui-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .services-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        #services {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            max-height: 80px;
        }
        
        .service-item:hover {
            background-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .service-icon {
            color: #ff8170;
            font-size: 1.2rem;
            min-width: 24px;
            max-height: 15px;
        }
        
        .service-text {
            font-size: 1rem;
            font-weight: 500;
        }
        
        /* UX/UI demó stílusok */
        .uxui-demo {
            position: relative;
            height: 500px;
            perspective: 1000px;
            overflow: hidden;
            border-radius: 16px;
            background-color: rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .device-mockup {
            position: absolute;
            width: 85%;
            height: 85%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #1a1f2e;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.5s ease;
        }
        
        .device-mockup:hover {
            transform: translate(-50%, -50%) scale(1.02);
        }
        
        .device-screen {
            position: absolute;
            width: 92%;
            height: 85%;
            top: 7.5%;
            left: 4%;
            background-color: #0d111a;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .ui-component {
            position: absolute;
            border-radius: 12px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s forwards, float 6s ease-in-out infinite;
        }
        
        .component-1 {
            width: 70%;
            height: 50px;
            top: 30px;
            left: 15%;
            background: linear-gradient(120deg, #ff8170 0%, #ff61ab 100%);
            animation-delay: 0.3s;
        }
        
        .component-2 {
            width: 40%;
            height: 160px;
            top: 100px;
            left: 15%;
            background: linear-gradient(120deg, #7c4dff 0%, #448aff 100%);
            animation-delay: 0.6s;
        }
        
        .component-3 {
            width: 25%;
            height: 160px;
            top: 100px;
            right: 15%;
            background: linear-gradient(120deg, #00bfa5 0%, #1de9b6 100%);
            animation-delay: 0.9s;
        }
        
        .component-4 {
            width: 85%;
            height: 100px;
            bottom: 30px;
            left: 7.5%;
            background: linear-gradient(120deg, #ffab40 0%, #ffee58 100%);
            animation-delay: 1.2s;
        }
        
        .design-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.5;
            animation: colorShift 15s ease-in-out infinite;
        }
        
        .element-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            background: radial-gradient(circle, #7b4dff 0%, transparent 70%);
            animation-delay: 0s;
        }
        
        .element-2 {
            width: 250px;
            height: 250px;
            bottom: -100px;
            left: -80px;
            background: radial-gradient(circle, #ff8170 0%, transparent 70%);
            animation-delay: -5s;
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .icon {
            position: absolute;
            width: 16px;
            height: 16px;
            background-color: white;
            border-radius: 4px;
            opacity: 0.15;
            animation: floatIcon 10s ease-in-out infinite;
        }
        /* Wireframe effect */
        .wireframe {
            position: absolute;
            opacity: 0.15;
            z-index: 1;
        }
        
        .wire-line {
            position: absolute;
            height: 1px;
            background-color: white;
            animation: expandLine 1.5s ease-out forwards;
            transform-origin: left center;
        }
        
        /* Animációk */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        @keyframes colorShift {
            0%, 100% {
                filter: blur(40px) hue-rotate(0deg);
            }
            50% {
                filter: blur(40px) hue-rotate(90deg);
            }
        }
        
        @keyframes floatIcon {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, -20px) rotate(90deg);
            }
            50% {
                transform: translate(40px, 0) rotate(180deg);
            }
            75% {
                transform: translate(20px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        @keyframes pulseRing {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.4;
            }
            100% {
                transform: scale(0.8);
                opacity: 0.8;
            }
        }
        
        @keyframes expandLine {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }
        
        @keyframes breathe {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .breathe-animation {
            animation: breathe 4s ease-in-out infinite;
        }
        
        /* Reszponzivitás */
        @media (max-width: 1024px) {
            .uxui-showcase {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .uxui-demo {
                height: 400px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .design-title {
                font-size: 2rem;
            }
        }

        .evocode-services {
            background-color: #111827;
            color: #fff;
            font-family: 'Inter', sans-serif;
            padding: 4rem 0;
        }
        
        .evocode-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .evocode-section-title {
            color: #FF9F7F;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .evocode-section-subtitle {
            text-align: center;
            color: #e2e8f0;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .evocode-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        @media (min-width: 768px) {
            .evocode-services-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .evocode-service-card {
            background-color: #1E2A45;
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .evocode-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }
        
        .evocode-service-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }
        
        .evocode-service-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #FF9F7F;
        }
        
        .evocode-service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .evocode-service-content {
            padding: 1.5rem;
        }
        
        .evocode-service-description {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: #e2e8f0;
        }
        
        .evocode-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }
        
        .evocode-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }
        
        .evocode-check-icon {
            color: #10B981;
            margin-right: 0.75rem;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .evocode-testimonial-block {
            background-color: #0F172A;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-top: 1.5rem;
            position: relative;
            border-left: 4px solid #FF9F7F;
        }
        
        .evocode-code-dots {
            display: flex;
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
        }
        
        .evocode-code-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-left: 6px;
        }
        
        .evocode-code-dot-red {
            background-color: #EF4444;
        }
        
        .evocode-code-dot-yellow {
            background-color: #F59E0B;
        }
        
        .evocode-code-dot-green {
            background-color: #10B981;
        }
        
        .evocode-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF9F7F 0%, #FF7B54 100%);
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .evocode-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(255, 159, 127, 0.3);
        }
        
        .evocode-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding: 1rem;
            background-color: rgba(16, 185, 129, 0.1);
            border-radius: 0.5rem;
        }
        
        .evocode-stat {
            text-align: center;
        }
        
        .evocode-stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #10B981;
        }
        
        .evocode-stat-label {
            font-size: 0.85rem;
            color: #a3b3bc;
        }

        :root {
            --dark-bg: #0d111e;
            --coral: #ff7e67;
            --purple: #8377D1;
            --teal: #3CDFBD;
            --yellow: #FFB84D;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--dark-bg);
            color: white;
        }
        
        .seo-section {
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--coral);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s 0.3s forwards;
        }
        
        .seo-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .seo-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 400px;
        }
        
        .chart-container {
            position: relative;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 1s 0.6s forwards;
        }
        
        /* Analytics Dashboard Visualization */
        .analytics-dashboard {
            position: absolute;
            width: 90%;
            height: 80%;
            background: rgba(20, 30, 50, 0.8);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            top: 10%;
            left: 5%;
            display: flex;
            flex-direction: column;
        }
        
        .dashboard-header {
            background: rgba(30, 40, 60, 0.9);
            padding: 12px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dashboard-title {
            color: white;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .dashboard-title svg {
            margin-right: 8px;
        }
        
        .dashboard-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .metrics-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .metric-card {
            flex: 1;
            background: rgba(40, 50, 70, 0.9);
            border-radius: 8px;
            padding: 12px;
            margin: 0 5px;
            text-align: center;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }
        
        .metric-card:nth-child(1) {
            animation-delay: 0.8s;
        }
        
        .metric-card:nth-child(2) {
            animation-delay: 1s;
        }
        
        .metric-card:nth-child(3) {
            animation-delay: 1.2s;
        }
        
        .metric-value {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 5px 0;
        }
        
        .metric-card:nth-child(1) .metric-value {
            color: var(--coral);
        }
        
        .metric-card:nth-child(2) .metric-value {
            color: var(--teal);
        }
        
        .metric-card:nth-child(3) .metric-value {
            color: var(--yellow);
        }
        
        .metric-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .chart-area {
            flex: 1;
            position: relative;
            margin-top: 10px;
        }
        
        .main-chart {
            background: rgba(30, 40, 60, 0.5);
            border-radius: 8px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .chart-legend {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            flex-direction: column;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            opacity: 0;
            animation: fadeIn 0.5s 1.5s forwards;
        }
        
        .legend-color {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 5px;
        }
        
        .legend-text {
            font-size: 10px;
        }
        
        .chart-lines {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80%;
            display: flex;
        }
        
        .month-marker {
            position: absolute;
            bottom: 5px;
            font-size: 8px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .month-marker:nth-child(1) {
            left: 10%;
        }
        
        .month-marker:nth-child(2) {
            left: 30%;
        }
        
        .month-marker:nth-child(3) {
            left: 50%;
        }
        
        .month-marker:nth-child(4) {
            left: 70%;
        }
        
        .month-marker:nth-child(5) {
            left: 90%;
        }
        
        .data-line {
            position: absolute;
            height: 100%;
            width: 3px;
            bottom: 0;
            transform: scaleY(0);
            transform-origin: bottom;
        }
        
        .data-point {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            transform: scale(0);
            animation: popIn 0.3s forwards;
        }
        
        /* Traffic Line */
        .traffic-line {
            background: linear-gradient(to top, transparent, var(--coral));
            left: 10%;
            animation: lineGrow 1s 1.7s forwards;
        }
        
        .traffic-point-1 {
            background: var(--coral);
            bottom: 20%;
            left: 10%;
            animation-delay: 1.7s;
        }
        
        .traffic-point-2 {
            background: var(--coral);
            bottom: 35%;
            left: 30%;
            animation-delay: 1.8s;
        }
        
        .traffic-point-3 {
            background: var(--coral);
            bottom: 50%;
            left: 50%;
            animation-delay: 1.9s;
        }
        
        .traffic-point-4 {
            background: var(--coral);
            bottom: 65%;
            left: 70%;
            animation-delay: 2s;
        }
        
        .traffic-point-5 {
            background: var(--coral);
            bottom: 85%;
            left: 90%;
            animation-delay: 2.1s;
        }
        
        /* Ranking Line - Teal */
        .ranking-line {
            background: linear-gradient(to top, transparent, var(--teal));
            left: 30%;
            animation: lineGrow 1s 1.9s forwards;
        }
        
        .ranking-point-1 {
            background: var(--teal);
            bottom: 15%;
            left: 10%;
            animation-delay: 1.9s;
        }
        
        .ranking-point-2 {
            background: var(--teal);
            bottom: 40%;
            left: 30%;
            animation-delay: 2s;
        }
        
        .ranking-point-3 {
            background: var(--teal);
            bottom: 60%;
            left: 50%;
            animation-delay: 2.1s;
        }
        
        .ranking-point-4 {
            background: var(--teal);
            bottom: 75%;
            left: 70%;
            animation-delay: 2.2s;
        }
        
        .ranking-point-5 {
            background: var(--teal);
            bottom: 90%;
            left: 90%;
            animation-delay: 2.3s;
        }
        
        .chart-connect {
            position: absolute;
            height: 2px;
            background: var(--coral);
            transform: scaleX(0);
            transform-origin: left;
            animation: connectGrow 0.5s forwards;
        }
        
        .traffic-connect-1 {
            width: 20%;
            bottom: 35%;
            left: 10%;
            animation-delay: 2.1s;
        }
        
        .traffic-connect-2 {
            width: 20%;
            bottom: 50%;
            left: 30%;
            animation-delay: 2.2s;
        }
        
        .traffic-connect-3 {
            width: 20%;
            bottom: 65%;
            left: 50%;
            animation-delay: 2.3s;
        }
        
        .traffic-connect-4 {
            width: 20%;
            bottom: 85%;
            left: 70%;
            animation-delay: 2.4s;
        }
        
        .ranking-connect-1 {
            width: 20%;
            bottom: 40%;
            left: 10%;
            background: var(--teal);
            animation-delay: 2.3s;
        }
        
        .ranking-connect-2 {
            width: 20%;
            bottom: 60%;
            left: 30%;
            background: var(--teal);
            animation-delay: 2.4s;
        }
        
        .ranking-connect-3 {
            width: 20%;
            bottom: 75%;
            left: 50%;
            background: var(--teal);
            animation-delay: 2.5s;
        }
        
        .ranking-connect-4 {
            width: 20%;
            bottom: 90%;
            left: 70%;
            background: var(--teal);
            animation-delay: 2.6s;
        }
        
        .seo-features {
            flex: 1;
            min-width: 300px;
            padding: 20px 0;
        }
        
        .feature-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(30px);
            padding: 0 15px;
        }
        
        .feature-item:nth-child(1) {
            animation: fadeInRight 0.5s 0.4s forwards;
        }
        
        .feature-item:nth-child(2) {
            animation: fadeInRight 0.5s 0.6s forwards;
        }
        
        .feature-item:nth-child(3) {
            animation: fadeInRight 0.5s 0.8s forwards;
        }
        
        .feature-item:nth-child(4) {
            animation: fadeInRight 0.5s 1s forwards;
        }
        
        .feature-item:nth-child(5) {
            animation: fadeInRight 0.5s 1.2s forwards;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3CDFBD;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .feature-content h3 {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
            color: #fff;
        }
        
        .feature-content p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }
        
        .cta-button {
            display: block;
            width: 260px;
            margin: 40px auto 0;
            padding: 15px 30px;
            background: linear-gradient(to right, var(--coral), #FF9F80);
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255, 126, 103, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s 1.4s forwards;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 126, 103, 0.6);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        @keyframes lineGrow {
            to {
                transform: scaleY(1);
            }
        }
        
        @keyframes popIn {
            50% {
                transform: scale(1.5);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes connectGrow {
            to {
                transform: scaleX(1);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .seo-section {
                padding: 60px 15px;
            }
            
            .seo-content {
                flex-direction: column;
            }
            
            .seo-visual {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .analytics-dashboard {
                height: 100%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .metrics-row {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .metric-card {
                margin-bottom: 10px;
            }
            
            .feature-item {
                padding: 0 5px;
            }
            
            .feature-content h3 {
                font-size: 1rem;
            }
            
            .feature-content p {
                font-size: 0.85rem;
            }
            
            .cta-button {
                width: 100%;
                max-width: 260px;
            }
        }
        
        @media (max-width: 480px) {
            .metrics-row {
                flex-direction: column;
            }
            
            .metric-card {
                margin: 0 0 10px 0;
            }
        }
        .marketing-theme {
            --mkt-primary-color: #ffc107;
            --mkt-secondary-color: #ff6b6b;
            --mkt-dark-bg: #1e2130;
            --mkt-darker-bg: #171923;
            --mkt-text-light: #ffffff;
            --mkt-text-muted: #a0aec0;
            --mkt-highlight-gradient: linear-gradient(90deg, #ff6b6b, #ffc107);
        }

        .marketing-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: #171923;
            color: #ffffff;
            margin: 0;
            padding: 0;
        }

        .marketing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .marketing-section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .marketing-badge {
            background-color: #ffc107;
            color: #171923;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .marketing-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .marketing-section-title {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .marketing-section-subtitle {
            font-size: 1.1rem;
            color: #a0aec0;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .marketing-webadwise-highlight {
            display: inline-block;
            padding: 2px 8px;
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 3px solid #ffc107;
            font-weight: 600;
            margin: 20px 0;
            transform: translateX(-50%);
            left: 50%;
            position: relative;
            width: auto;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .marketing-webadwise-highlight:hover {
            background-color: rgba(255, 193, 7, 0.25);
            transform: translateX(-50%) scale(1.05);
        }

        .marketing-main-content {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        #marketing {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            padding: 25px;
            border-radius: 12px;
            background-color: rgba(30, 33, 48, 0.5);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .marketing-intro-block p {
            max-width: 1200px;
        }

        .marketing-intro-block:hover {
            transform: translateY(-5px);
        }

        .marketing-intro-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
            border-radius: 2px 2px 0 0;
        }

        .marketing-services-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .marketing-service-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #1e2130;
            border-radius: 12px;
            padding: 15px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .marketing-service-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }

        .marketing-service-item:hover::before {
            transform: translateX(0);
        }

        .marketing-service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .marketing-service-item i {
            color: #ffc107;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        .marketing-results-section {
            margin-top: 80px;
            text-align: center;
            position: relative;
        }

        .marketing-results-section p {
            max-width: 1200px;
        }
        
        .marketing-results-section::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
            border-radius: 2px;
        }

        .marketing-results-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
            position: relative;
            display: inline-block;
        }

        .marketing-results-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffc107;
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: center;
        }

        .marketing-results-title:hover::after {
            transform: scaleX(1);
        }

        .marketing-webadwise-company {
            font-size: 1.2rem;
            color: #ffc107;
            font-weight: 600;
            margin: 30px 0;
            padding: 15px 30px;
            background-color: rgba(255, 193, 7, 0.1);
            border-radius: 30px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .marketing-webadwise-company:hover {
            background-color: rgba(255, 193, 7, 0.2);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 193, 7, 0.15);
        }

        .marketing-stat-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            margin-bottom: 60px;
        }

        .marketing-stat-card {
            background-color: #1e2130;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .marketing-stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .marketing-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
        }

        .marketing-stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(0deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0) 100%);
            transition: width 0.5s ease;
            z-index: 0;
        }

        .marketing-stat-card:hover::after {
            width: 100%;
        }

        .marketing-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffc107;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .marketing-stat-label {
            color: #a0aec0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

       /* Slider styling */
       .marketing-slider-container {
        position: relative;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        max-width: 900px;
        width: 95%;
    }

    .marketing-slider {
        display: flex;
        transition: transform 0.5s ease;
        height: auto;
    }

    .marketing-slide {
        min-width: 100%;
        position: relative;
        height: auto;
    }

    .marketing-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .marketing-slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(0deg, rgba(23, 25, 35, 0.95) 0%, rgba(23, 25, 35, 0) 100%);
        padding: 40px 20px 20px;
        color: #ffffff;
        transform: translateY(70px);
        transition: transform 0.3s ease;
    }

    .marketing-slide:hover .marketing-slide-content {
        transform: translateY(0);
    }

    .marketing-slide-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #ffc107;
    }

    .marketing-slide-desc {
        font-size: 0.9rem;
        opacity: 0.9;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .marketing-slide-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .marketing-slide-stat {
        background-color: rgba(30, 33, 48, 0.7);
        padding: 8px 12px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.85rem;
    }

    .marketing-slide-stat-value {
        font-size: 1.2rem;
        font-weight: 600;
        color: #ffc107;
    }

    .marketing-slide-stat-label {
        font-size: 0.75rem;
        color: #a0aec0;
    }

    .marketing-slider-nav {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 10;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .marketing-slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .marketing-slider-dot.active,
    .marketing-slider-dot:hover {
        background-color: #ffc107;
        transform: scale(1.2);
    }

    .marketing-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(30, 33, 48, 0.7);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .marketing-slider-btn:hover {
        opacity: 1;
        background-color: #1e2130;
    }

    .marketing-slider-btn.prev {
        left: 10px;
    }

    .marketing-slider-btn.next {
        right: 10px;
    }

    .marketing-slider-btn::before {
        content: '';
        width: 12px;
        height: 12px;
        border-top: 2px solid #ffc107;
        border-right: 2px solid #ffc107;
        display: block;
    }

    .marketing-slider-btn.prev::before {
        transform: rotate(-135deg);
    }

    .marketing-slider-btn.next::before {
        transform: rotate(45deg);
    }

    .marketing-tag-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin: 30px 10px;
    }

    .marketing-tag-item {
        background-color: #1e2130;
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .marketing-tag-item:hover {
        background-color: #ffc107;
        color: #171923;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
    }

    /* Mobilspecifikus beállítások */
    @media (max-width: 768px) {
        .marketing-slider-container {
            margin: 15px auto;
            border-radius: 10px;
        }
        
        .marketing-slide img {
            min-height: 300px;
            object-fit: cover;
        }
        
        .marketing-slide-content {
            padding: 30px 15px 15px;
            transform: translateY(60px);
        }

        .marketing-slide-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .marketing-slide-desc {
            font-size: 0.8rem;
            line-height: 1.3;
        }

        .marketing-slide-stats {
            gap: 8px;
            margin-top: 10px;
        }
        
        .marketing-slide-stat {
            padding: 5px 8px;
        }
        
        .marketing-slide-stat-value {
            font-size: 1rem;
        }
        
        .marketing-slider-btn {
            width: 35px;
            height: 35px;
        }
        
        .marketing-slider-btn::before {
            width: 10px;
            height: 10px;
        }
        
        .marketing-slider-nav {
            bottom: 10px;
            gap: 6px;
        }
        
        .marketing-slider-dot {
            width: 8px;
            height: 8px;
        }
    }

    @media (max-width: 480px) {
        .marketing-slider-container {
            border-radius: 8px;
        }
        
        .marketing-slide img {
            min-height: 250px;
        }
        
        .marketing-slide-content {
            padding: 25px 12px 12px;
            transform: translateY(50px);
        }
        
        .marketing-slide-title {
            font-size: 1.1rem;
        }
        
        .marketing-slide-desc {
            font-size: 0.75rem;
            margin-bottom: 8px;
        }
        
        .marketing-slider-btn {
            width: 30px;
            height: 30px;
        }
        
        .marketing-slider-btn.prev {
            left: 5px;
        }
        
        .marketing-slider-btn.next {
            right: 5px;
        }
        
        .marketing-slider-btn::before {
            width: 8px;
            height: 8px;
            border-width: 2px;
        }
    }

        .evo_supp_services_wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
            font-family: 'Inter', sans-serif;
            color: #ffffff;
        }
        
        .evo_supp_header_container {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .evo_supp_label_tag {
            background-color: #ffc107;
            color: #000000;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .evo_supp_main_title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .evo_supp_main_title_highlight {
            color: #ffc107;
        }
        
        .evo_supp_main_desc {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .evo_supp_cards_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .evo_supp_card_item {
            background: linear-gradient(145deg, #171f2e, #131a26);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .evo_supp_card_item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.1);
        }
        
        .evo_supp_card_item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #ffc107);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .evo_supp_card_item:hover:before {
            transform: scaleX(1);
        }
        
        .evo_supp_card_icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            font-size: 28px;
        }
        
        .evo_supp_icon_maintenance {
            background: linear-gradient(145deg, #1e3b8a, #2e4d9e);
            color: #8aabfe;
        }
        
        .evo_supp_icon_development {
            background: linear-gradient(145deg, #ad2e68, #d25d94);
            color: #ffb6d9;
        }
        
        .evo_supp_card_title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .evo_supp_card_desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .evo_supp_feature_list {
            list-style: none;
        }
        
        .evo_supp_feature_row {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }
        
        .evo_supp_card_item:hover .evo_supp_feature_row {
            opacity: 1;
            transform: translateX(0);
        }
        
        .evo_supp_check_mark {
            color: #ffc107;
            margin-right: 10px;
            font-size: 18px;
            min-width: 18px;
        }
        
        .evo_supp_feature_text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
        }
        
        .evo_supp_bg_glow {
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.15;
            z-index: -1;
        }
        
        .evo_supp_glow_blue {
            background: #4f6eff;
            top: 10%;
            left: 5%;
            animation: evo_supp_float_anim 8s ease-in-out infinite;
        }
        
        .evo_supp_glow_red {
            background: #ff6b6b;
            bottom: 10%;
            right: 5%;
            animation: evo_supp_float_anim 9s ease-in-out infinite 1s;
        }
        
        .evo_supp_glow_yellow {
            background: #ffc107;
            bottom: 30%;
            left: 15%;
            animation: evo_supp_float_anim 7s ease-in-out infinite 2s;
        }
        
        @keyframes evo_supp_float_anim {
            0% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(15px, -15px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        .evo_supp_bg_dots {
            position: absolute;
            width: 200px;
            height: 200px;
            opacity: 0.2;
            z-index: -1;
        }
        
        .evo_supp_dots_top {
            top: 10%;
            right: 10%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        
        .evo_supp_dots_bottom {
            bottom: 10%;
            left: 5%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
            background-size: 15px 15px;
        }
        
        @media (max-width: 768px) {
            .evo_supp_main_title {
                font-size: 2rem;
            }
            .evo_supp_cards_grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animation delay for feature items */
        .evo_supp_feature_row:nth-child(1) { transition-delay: 0.1s; }
        .evo_supp_feature_row:nth-child(2) { transition-delay: 0.2s; }
        .evo_supp_feature_row:nth-child(3) { transition-delay: 0.3s; }
        .evo_supp_feature_row:nth-child(4) { transition-delay: 0.4s; }
        .evo_supp_feature_row:nth-child(5) { transition-delay: 0.5s; }
        
        .evo_supp_particles_container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .evo_supp_particle {
            position: absolute;
            border-radius: 50%;
            transition: all ease-out;
        }

