/* ===========================================
   INDEX-MODERN.CSS - Főoldal Modern Stílusok
   Verzió: 3.0
   Utolsó frissítés: 2026-02-02
   =========================================== */

/* ===========================================
   I. CSS CUSTOM PROPERTIES
   =========================================== */
   :root {
    /* Primary Colors */
    --im-primary-50: #eef2ff;
    --im-primary-100: #e0e7ff;
    --im-primary-200: #c7d2fe;
    --im-primary-300: #a5b4fc;
    --im-primary-400: #818cf8;
    --im-primary-500: #6366f1;
    --im-primary-600: #4f46e5;
    --im-primary-700: #4338ca;
    
    /* Text Colors */
    --im-text-primary: #1f2937;
    --im-text-secondary: #6b7280;
    --im-text-muted: #9ca3af;
    
    /* Background Colors */
    --im-bg-primary: #ffffff;
    --im-bg-secondary: #f9fafb;
    --im-bg-tertiary: #f3f4f6;
    
    /* Border */
    --im-border: #e5e7eb;
    --im-border-light: #f3f4f6;
    
    /* Shadows */
    --im-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --im-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --im-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --im-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Gradient */
    --im-gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

/* ===========================================
   II. BASE STYLES
   =========================================== */
.home-page-wrapper {
    overflow-x: hidden;
    background: var(--im-bg-primary);
}

/* ===========================================
   III. HERO SECTION
   =========================================== */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    padding-top: 80px;
    /* MÓDOSÍTVA: overflow: hidden helyett overflow: clip - iOS momentum scroll fix */
    overflow: clip;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #eef2ff 100%);
}

/* Hero Background Effects */
.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-hero-grid {
    position: absolute;
    inset: 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;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.home-hero-orb {
    position: absolute;
    border-radius: 50%;
    /* Blur disabled on mobile for iOS Safari performance */
    opacity: 0.25;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Enable blur only on desktop (non-touch devices) */
@media (hover: hover) and (pointer: fine) {
    .home-hero-orb {
        filter: blur(60px);
        opacity: 0.35;
    }
}

.home-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.home-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

/* ===========================================
   IV. HERO CONTAINER
   =========================================== */
.home-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
}

/* ===========================================
   V. HERO CONTENT (Bal oldal)
   =========================================== */
.home-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    will-change: transform, opacity;  /* GPU optimization for parallax */
    backface-visibility: hidden;
}

/* Eyebrow */
.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--im-primary-600);
    letter-spacing: 0.02em;
}

.home-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

/* Pulse effect using pseudo-element with opacity (GPU-friendly, no box-shadow animation) */
.home-hero-eyebrow-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    animation: eyebrowPulseOptimized 2s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes eyebrowPulseOptimized {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.8); }
}

/* Title */
.home-hero-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--im-text-primary);
    margin: 0;
}

.home-hero-title .gradient-text {
    background: var(--im-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.home-hero-description {
    font-size: 1.125rem;
    color: var(--im-text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

/* Hero Badges */
.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--im-bg-primary);
    border: 1px solid var(--im-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--im-text-primary);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-hero-badge-auchan {
    background: linear-gradient(135deg, #e30613 0%, #c00510 100%);
    border-color: #e30613;
    color: #ffffff;
}

.home-hero-badge-logo {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.home-hero-badge-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.home-hero-badge-linkedin {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.35);
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    /* REMOVED infinite box-shadow animation - was causing scroll stuttering */
}

/* Pulse effect using pseudo-element with opacity only (GPU-friendly) */
.home-hero-badge-linkedin::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: rgba(10, 102, 194, 0.25);
    z-index: -1;
    opacity: 0;
    transform: scale(1);
    animation: linkedinPulseOptimized 2.5s ease-in-out infinite;
    will-change: opacity, transform;
    pointer-events: none;
}

@keyframes linkedinPulseOptimized {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.2); }
}

.home-hero-badge-linkedin:hover {
    background: #004182;
    border-color: #004182;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.5);
}

.home-hero-badge-linkedin:hover::before {
    animation: none;
    opacity: 0;
}

.home-hero-badge-linkedin svg {
    fill: #ffffff;
}

/* Stats */
.home-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-hero-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--im-primary-600);
}

.home-hero-stat-label {
    font-size: 0.8125rem;
    color: var(--im-text-muted);
}

/* CTA Buttons */
.home-hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--im-gradient-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.home-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--im-text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: 1px solid var(--im-border);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home-btn-secondary:hover {
    background: var(--im-bg-secondary);
    border-color: var(--im-primary-300);
}

/* ===========================================
   VI. HERO IMAGE (Jobb oldal)
   =========================================== */
.home-hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    overflow: hidden;
}

.home-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-hero-image-wrapper img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: calc(100vh - 80px);
    max-height: calc(100svh - 80px);
    object-fit: contain;
    object-position: bottom center;
}

/* ===========================================
   VII. SCROLL INDICATOR
   =========================================== */
.home-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--im-text-muted);
    font-size: 0.8125rem;
    cursor: pointer;
    z-index: 2;
    animation: scrollBounce 2.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

.home-scroll-indicator-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--im-border);
    border-radius: 12px;
    position: relative;
}

.home-scroll-indicator-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--im-primary-500);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
    will-change: transform, opacity;
}

/* OPTIMIZED: Using transform instead of top (no layout trigger) */
@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.4; transform: translateX(-50%) translateY(6px); }
}

/* ===========================================
   VIII. SERVICES SECTION
   =========================================== */
.home-services-section {
    padding: 80px 0;
    background: var(--im-bg-secondary);
    overflow: hidden;
}

.home-services-section .home-section-header {
    padding: 0 40px;
}

.home-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--im-primary-100);
    color: var(--im-primary-700);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

.home-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--im-text-primary);
    line-height: 1.2;
    margin: 0 0 12px;
}

.home-section-description {
    font-size: 1rem;
    color: var(--im-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services Horizontal Slider */
.home-services-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.home-services-track {
    display: flex;
    gap: 24px;
    padding: 20px 40px;
    width: max-content;
    animation: servicesSlide 25s linear infinite;
    will-change: transform;  /* GPU optimization for infinite animation */
    backface-visibility: hidden;
    contain: layout style;  /* Isolate layout calculations */
}

.home-services-track:hover {
    animation-play-state: paused;
}

@keyframes servicesSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* New Service Card */
.home-service-card-new {
    flex-shrink: 0;
    width: 320px;
    padding: 32px 28px;
    background: var(--im-bg-primary);
    border: 1px solid var(--im-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.home-service-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--im-primary-600);
    box-shadow: 
        0 0 0 1px var(--im-primary-600),
        0 20px 40px -10px rgba(99, 102, 241, 0.25);
}

.home-service-card-featured {
    border-color: var(--im-primary-600);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.home-service-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 6px 14px;
    background: var(--im-gradient-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.home-service-card-icon-new {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    color: var(--im-primary-600);
}

.home-service-card-title-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--im-text-primary);
    margin: 0;
}

.home-service-card-desc-new {
    font-size: 0.875rem;
    color: var(--im-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.home-service-card-price-new {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 4px;
}

.home-service-card-price-new .price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--im-primary-600);
}

.home-service-card-price-new .price-suffix {
    font-size: 0.875rem;
    color: var(--im-text-muted);
}

.home-service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-service-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--im-text-secondary);
}

.home-service-card-features svg {
    color: #10b981;
    flex-shrink: 0;
}

.home-service-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    margin-top: auto;
    background: var(--im-gradient-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-service-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Section CTA */
.home-section-cta {
    text-align: center;
    margin-top: 48px;
    padding: 0 40px;
}

/* ===========================================
   VIII-B. PRICING SECTION
   =========================================== */
.home-pricing-section {
    padding: 80px 40px;
    background: var(--im-bg-primary);
}

.home-pricing-section .home-section-header {
    margin-bottom: 50px;
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-pricing-grid.home-pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    gap: 18px;
}

.home-pricing-grid-4 .home-pricing-card {
    padding: 28px 22px;
}

.home-pricing-grid-4 .home-pricing-amount {
    font-size: 2rem;
}

/* Pricing Card */
.home-pricing-card {
    position: relative;
    background: var(--im-bg-secondary);
    border: 1px solid var(--im-border-light);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.home-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--im-shadow-lg);
    border-color: var(--im-primary-200);
}

.home-pricing-card.featured {
    background: linear-gradient(180deg, var(--im-primary-50) 0%, var(--im-bg-secondary) 100%);
    border-color: var(--im-primary-300);
    box-shadow: 0 0 40px -15px rgba(99, 102, 241, 0.3);
}

.home-pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.home-pricing-tier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--im-primary-600);
    margin-bottom: 8px;
}

.home-pricing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--im-text-primary);
    margin: 0 0 12px;
}

.home-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.home-pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--im-text-primary);
    line-height: 1;
}

.home-pricing-card.featured .home-pricing-amount {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-pricing-currency {
    font-size: 0.9375rem;
    color: var(--im-text-muted);
}

.home-pricing-desc {
    font-size: 0.875rem;
    color: var(--im-text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--im-border-light);
}

/* Pricing Features List */
.home-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    min-height: 315px;
}

.home-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--im-text-secondary);
}

.home-pricing-features li svg {
    flex-shrink: 0;
    color: var(--im-primary-500);
}

.home-pricing-features li strong {
    color: var(--im-text-primary);
    font-weight: 600;
}

.home-pricing-features li.excluded {
    opacity: 0.5;
}

.home-pricing-features li.excluded svg {
    color: var(--im-text-muted);
}

/* Pricing Button */
.home-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid var(--im-primary-500);
    border-radius: 12px;
    color: var(--im-primary-600);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-pricing-btn:hover {
    background: var(--im-primary-500);
    color: #ffffff;
    transform: translateY(-2px);
}

.home-pricing-card.featured .home-pricing-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #ffffff;
}

.home-pricing-card.featured .home-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

/* Pricing CTA */
.home-pricing-cta {
    text-align: center;
    margin-top: 40px;
}

/* Dark mode adjustments */
[data-theme="dark"] .home-pricing-card {
    background: var(--im-card-bg);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-pricing-card:hover {
    border-color: var(--im-primary-500);
}

[data-theme="dark"] .home-pricing-card.featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, var(--im-card-bg) 100%);
    border-color: var(--im-primary-500);
}

[data-theme="dark"] .home-pricing-popular {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .home-pricing-desc {
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-pricing-btn {
    border-color: var(--im-primary-400);
    color: var(--im-primary-400);
}

[data-theme="dark"] .home-pricing-btn:hover {
    background: var(--im-primary-500);
    color: #ffffff;
}

/* ===========================================
   IX. ABOUT SECTION
   =========================================== */
.home-about-section {
    padding: 80px 40px;
    background: var(--im-bg-primary);
}

.home-about-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.home-about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    /* box-shadow: var(--im-shadow-lg); */
}

.home-about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.home-about-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--im-text-primary);
    margin: 0;
}

.home-about-text {
    font-size: 1rem;
    color: var(--im-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.home-about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.home-about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--im-text-primary);
}

.home-about-highlight svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* ===========================================
   X. REFERENCES SECTION
   =========================================== */
.home-references-section {
    padding: 80px 40px;
    background: var(--im-bg-secondary);
}

.home-references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-reference-card {
    background: var(--im-bg-primary);
    border: 1px solid var(--im-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-reference-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--im-shadow-lg);
}

.home-reference-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

/* .home-reference-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
} */

.home-reference-card:hover .home-reference-card-image img {
    transform: scale(1.05);
}

.home-reference-card-content {
    padding: 20px;
}

.home-reference-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--im-text-primary);
    margin: 0 0 6px;
}

.home-reference-card-desc {
    font-size: 0.875rem;
    color: var(--im-text-secondary);
    margin: 0;
}

/* ===========================================
   XI. TESTIMONIALS SECTION
   =========================================== */
.home-testimonials-section {
    padding: 80px 40px;
    background: var(--im-bg-primary);
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-testimonial-card {
    background: var(--im-bg-secondary);
    border: 1px solid var(--im-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* LinkedIn Badge */
.home-testimonial-card-linkedin {
    position: relative;
}

.home-testimonial-linkedin-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #0a66c2;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-testimonial-linkedin-badge:hover {
    background: #004182;
    transform: scale(1.05);
    color: #ffffff;
}

.home-testimonial-linkedin-badge svg {
    fill: #ffffff;
}

.home-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-testimonial-card-linkedin .home-testimonial-quote {
    margin-top: 0;
}

.home-testimonial-quote {
    font-size: 0.9375rem;
    color: var(--im-text-primary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--im-gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.home-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-testimonial-name {
    font-weight: 600;
    color: var(--im-text-primary);
    font-size: 0.9375rem;
}

.home-testimonial-role {
    font-size: 0.8125rem;
    color: var(--im-text-muted);
}

.home-testimonial-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.875rem;
}

/* ===========================================
   XI.5 FAQ SECTION
   =========================================== */
.home-faq-section {
    padding: 80px 0;
    background: var(--im-bg-primary);
}

.home-faq-section .home-section-header {
    padding: 0 40px;
    margin-bottom: 50px;
}

.home-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* FAQ Items - Same as szolgaltatasok.php */
.home-faq-section .faq-list {
    display: flex;
    flex-direction: column;
}

.home-faq-section .faq-item-modern {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-faq-section .faq-question-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.home-faq-section .faq-question-modern:hover {
    color: var(--im-accent);
}

.home-faq-section .faq-icon-modern {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-faq-section .faq-question-modern:hover .faq-icon-modern {
    color: var(--im-accent);
}

.home-faq-section .faq-item-modern.active .faq-icon-modern {
    background: var(--im-accent);
    color: white;
    transform: rotate(45deg);
}

.home-faq-section .faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.home-faq-section .faq-item-modern.active .faq-answer-modern {
    max-height: 300px;
}

.home-faq-section .faq-answer-modern p {
    padding: 0 0 24px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.home-faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-home-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home-ghost:hover {
    border-color: var(--im-accent);
    background: rgba(99, 102, 241, 0.1);
    color: var(--im-accent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 60px 0;
    }
    
    .home-faq-section .home-section-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }
    
    .home-faq-container {
        padding: 0 20px;
    }
    
    .home-faq-section .faq-question-modern {
        padding: 20px 0;
        font-size: 1rem;
        gap: 16px;
    }
    
    .home-faq-section .faq-answer-modern p {
        padding: 0 0 20px;
        font-size: 0.95rem;
    }
    
    .home-faq-section .faq-icon-modern {
        width: 28px;
        height: 28px;
    }
}

/* ===========================================
   XII. PARTNERS SECTION - Infinite Slider
   =========================================== */
.home-partners-section {
    padding: 60px 0;
    background: var(--im-bg-secondary);
    overflow: hidden;
}

.home-partners-section .home-section-header {
    padding: 0 40px;
    margin-bottom: 40px;
}

.home-partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.home-partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: partnersSlide 30s linear infinite;
    will-change: transform;  /* GPU optimization */
    backface-visibility: hidden;
    contain: layout style;
}

.home-partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnersSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.home-partner-logo img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===========================================
   XIII. CTA SECTION
   =========================================== */
.home-cta-section {
    padding: 80px 40px;
    background: var(--im-gradient-primary);
    text-align: center;
}

.home-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.home-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px;
}

.home-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 32px;
}

.home-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: var(--im-primary-600);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.home-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-cta-button svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   XIV. RESPONSIVE - TABLET
   =========================================== */
@media (max-width: 1024px) {
    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 24px;
        min-height: auto;
    }
    
    .home-hero-content {
        text-align: center;
        align-items: center;
        order: 1;
        padding: 40px 0 20px;
    }
    
    .home-hero-description {
        max-width: 100%;
    }
    
    .home-hero-badges {
        justify-content: center;
    }
    
    .home-hero-stats {
        justify-content: center;
    }
    
    .home-hero-cta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .home-hero-image {
        order: 2;
        min-height: 400px;
        height: 400px;
    }
    
    .home-hero-image-wrapper img {
        max-height: 400px;
    }
    
    .home-services-track {
        gap: 20px;
        padding: 20px 24px;
    }
    
    .home-service-card-new {
        width: 280px;
        padding: 28px 24px;
    }
    
    /* Pricing Section - Tablet */
    .home-pricing-section {
        padding: 60px 24px;
    }
    
    .home-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .home-pricing-grid.home-pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 18px;
    }
    
    .home-pricing-grid.home-pricing-grid-4 .home-pricing-card:last-child {
        grid-column: span 1;
    }
    
    .home-about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .home-about-image {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .home-about-content {
        order: 1;
        align-items: center;
    }
    
    .home-about-highlights {
        justify-content: center;
    }
    
    .home-references-grid,
    .home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   XV. RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    .home-hero {
        padding-top: 70px;
    }
    
    .home-hero-content {
        padding: 30px 0 16px;
        gap: 16px;
    }
    
    .home-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    
    .home-hero-description {
        font-size: 1rem;
    }
    
    .home-hero-badges {
        gap: 8px;
    }
    
    .home-hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .home-hero-stats {
        gap: 24px;
    }
    
    .home-hero-stat-value {
        font-size: 1.5rem;
    }
    
    .home-btn-primary,
    .home-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .home-hero-image {
        min-height: 320px;
        height: 320px;
    }
    
    .home-hero-image-wrapper img {
        max-height: 320px;
    }
    
    .home-scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .home-services-section,
    .home-about-section,
    .home-references-section,
    .home-testimonials-section,
    .home-cta-section {
        padding: 60px 20px;
    }
    
    .home-services-section .home-section-header,
    .home-section-cta {
        padding: 0 20px;
    }
    
    /* Pricing Section - Mobile */
    .home-pricing-section {
        padding: 60px 20px;
    }
    
    .home-pricing-grid,
    .home-pricing-grid.home-pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .home-pricing-card {
        padding: 28px 24px;
    }
    
    .home-pricing-amount,
    .home-pricing-grid-4 .home-pricing-amount {
        font-size: 2rem;
    }
    
    .home-partners-section {
        padding: 40px 0;
    }
    
    .home-partners-section .home-section-header {
        padding: 0 20px;
        margin-bottom: 24px;
    }
    
    .home-partners-track {
        gap: 40px;
    }
    
    .home-partner-logo {
        height: 40px;
    }
    
    .home-partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }
    
    .home-services-track {
        gap: 16px;
        padding: 16px 20px;
    }
    
    .home-service-card-new {
        width: 260px;
        padding: 24px 20px;
    }
    
    .home-references-grid,
    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .home-testimonial-card {
        padding: 24px;
    }
}

/* ===========================================
   XVI. SERVICES LIGHT THEME OVERRIDE
   =========================================== */
.services-horizontal-section-light {
    --services-bg: #f9fafb;
    --services-bg-alt: #ffffff;
    --services-card-bg: #ffffff;
    --services-border: #e5e7eb;
    --services-text: #1f2937;
    --services-text-muted: #6b7280;
    --services-text-subtle: #9ca3af;
    --services-accent: #4f46e5;
    --services-accent-glow: rgba(79, 70, 229, 0.3);
    --services-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --services-gradient-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --font-heading: 'Poppins', sans-serif;
    
    background: var(--services-bg);
    padding: 80px 0;
}

.services-horizontal-section-light .services-horizontal-header {
    padding: 0 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.services-horizontal-section-light .section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--services-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

.services-horizontal-section-light .section-title-large {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--services-text);
    margin-bottom: 16px;
}

.services-horizontal-section-light .section-description {
    font-size: 1rem;
    color: var(--services-text-muted);
    line-height: 1.6;
}

.services-horizontal-section-light .horizontal-scroll-container {
    position: relative;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-horizontal-section-light .horizontal-scroll-track {
    /* Fix elrendezés - NEM scrollozó */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 20px 0;
    animation: none !important;
}

/* Csak az első 3 kártya látszik */
.services-horizontal-section-light .service-card-horizontal {
    width: 100%;
}

.services-horizontal-section-light .service-card-horizontal:nth-child(n+4) {
    display: none;
}

.services-horizontal-section-light .service-card-horizontal {
    background: var(--services-card-bg);
    border: 1px solid var(--services-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.services-horizontal-section-light .service-card-horizontal:hover {
    border-color: var(--services-accent);
    box-shadow: 
        0 0 0 1px var(--services-accent),
        0 20px 40px -10px rgba(99, 102, 241, 0.2);
}

.services-horizontal-section-light .service-card-title {
    color: var(--services-text);
}

.services-horizontal-section-light .service-card-desc {
    color: var(--services-text-muted);
}

.services-horizontal-section-light .service-card-price-value {
    background: var(--services-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-horizontal-section-light .service-card-price-suffix {
    color: var(--services-text-muted);
}

.services-horizontal-section-light .service-card-features li {
    color: var(--services-text-muted);
    border-bottom-color: var(--services-border);
}

.services-horizontal-section-light .service-card-cta {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid var(--services-border);
    color: var(--services-text);
}

.services-horizontal-section-light .service-card-cta:hover {
    background: var(--services-gradient);
    border-color: transparent;
    color: #ffffff;
}

.services-horizontal-section-light .services-section-cta {
    text-align: center;
    margin-top: 48px;
    padding: 0 40px;
}

.services-horizontal-section-light .btn-services-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--services-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.services-horizontal-section-light .btn-services-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

/* ===========================================
   RESZPONZÍV SZOLGÁLTATÁS GRID
   Fix elrendezés, 3 kártya
   =========================================== */

/* Tablet: 2 oszlop + 1 alul középen */
@media (max-width: 1024px) {
    .services-horizontal-section-light .horizontal-scroll-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 24px;
    }
    
    /* Harmadik kártya középre */
    .services-horizontal-section-light .service-card-horizontal:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
    
    .services-horizontal-section-light .service-card-horizontal {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .services-horizontal-section-light .service-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .services-horizontal-section-light .service-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .services-horizontal-section-light .service-card-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .services-horizontal-section-light .service-card-desc {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .services-horizontal-section-light .service-card-price-value {
        font-size: 2rem;
    }
    
    .services-horizontal-section-light .service-card-features li {
        padding: 10px 0;
        font-size: 0.875rem;
    }
    
    .services-horizontal-section-light .services-horizontal-header {
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .services-horizontal-section-light .services-section-cta {
        padding: 0 24px;
        margin-top: 32px;
    }
}

/* Mobil: swipe carousel */
@media (max-width: 768px) {
    .services-horizontal-section-light .horizontal-scroll-container {
        overflow: visible;
    }
    
    .services-horizontal-section-light .horizontal-scroll-track {
        display: flex;
        gap: 16px;
        padding: 16px 20px;
        overflow-x: auto;
        overflow-y: hidden;
        /* iOS Safari scroll fix: scroll-snap-type módosítva proximity-ra
           mandatory erőlteti a snap pozíciót, ami momentum scroll-t blokkolhatja */
        scroll-snap-type: x proximity;
        /* -webkit-overflow-scrolling: touch ELTÁVOLÍTVA
           Ez a régi iOS 12 előtti tulajdonság már nem szükséges és
           konfliktusba kerülhet a modern scroll-snap-type-pal */
        scrollbar-width: none;
        cursor: grab;
        /* iOS overscroll kezelés */
        overscroll-behavior-x: contain;
    }
    
    .services-horizontal-section-light .horizontal-scroll-track:active {
        cursor: grabbing;
    }
    
    .services-horizontal-section-light .horizontal-scroll-track::-webkit-scrollbar {
        display: none;
    }
    
    .services-horizontal-section-light .service-card-horizontal {
        /* scroll-snap-align: center ELTÁVOLÍTVA ha proximity-t használunk,
           nem szükséges strict align - iOS Safari kompatibilitás */
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 85vw;
        max-width: 340px;
        padding: 28px 22px;
        border-radius: 20px;
    }
    
    .services-horizontal-section-light .service-card-horizontal:nth-child(3) {
        max-width: 340px;
    }
    
    .services-horizontal-section-light {
        padding: 60px 0;
    }
    
    .services-horizontal-section-light .service-card-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 16px;
    }
    
    .services-horizontal-section-light .service-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .services-horizontal-section-light .service-card-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .services-horizontal-section-light .service-card-desc {
        font-size: 0.875rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .services-horizontal-section-light .service-card-price-value {
        font-size: 1.75rem;
    }
    
    .services-horizontal-section-light .service-card-features li {
        padding: 8px 0;
        font-size: 0.8125rem;
        gap: 10px;
    }
    
    .services-horizontal-section-light .service-card-cta {
        padding: 14px 20px;
        font-size: 0.875rem;
        border-radius: 10px;
    }
    
    .services-horizontal-section-light .services-horizontal-header {
        padding: 0 20px;
        margin-bottom: 24px;
    }
    
    .services-horizontal-section-light .section-title-large {
        font-size: 1.5rem;
    }
    
    .services-horizontal-section-light .section-description {
        font-size: 0.9375rem;
    }
    
    .services-horizontal-section-light .services-section-cta {
        padding: 0 20px;
        margin-top: 28px;
    }
    
    .services-horizontal-section-light .btn-services-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* Scroll indikátor pontok - csak mobilon */
.services-scroll-dots {
    display: none;
}

@media (max-width: 768px) {
    .services-scroll-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .services-scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--services-border);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .services-scroll-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--services-accent);
    }
}

/* ===========================================
   XVII. REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================================
   XVIII. iOS SAFARI SCROLL PERFORMANCE FIX
   =========================================== */
/* 
 * iOS Safari-n a folyamatos CSS animációk és will-change tulajdonságok
 * compositor layer-eket hoznak létre, amelyek interferálhatnak a 
 * natív momentum scroll-lal.
 * 
 * Ez a szekció leállítja a nem-kritikus animációkat iOS-en.
 * Detektálás: @supports (-webkit-touch-callout: none) - csak iOS Safari
 */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari detected - optimize for scroll performance */
    
    /* Leállítjuk a nagy, folyamatos slider animációkat */
    .home-services-track {
        animation: none !important;
        will-change: auto !important;
    }
    
    .home-partners-track {
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Leállítjuk a kisebb dekoratív animációkat is */
    .home-hero-eyebrow::before {
        animation: none !important;
    }
    
    .home-hero-badge-linkedin::before {
        animation: none !important;
    }
    
    .home-scroll-indicator {
        animation: none !important;
        will-change: auto !important;
    }
    
    .home-scroll-indicator-icon::before {
        animation: none !important;
    }
    
    /* Orb animációk kikapcsolása */
    .home-hero-orb {
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Will-change eltávolítása minden elemről - túl sok layer problémát okoz */
    .home-hero-content,
    .home-hero-image-wrapper,
    .home-service-card,
    .home-reference-card,
    .home-testimonial-card {
        will-change: auto !important;
    }
    
    /* Horizontal scroll section - iOS specifikus fix */
    .services-horizontal-section-light .horizontal-scroll-track {
        scroll-snap-type: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Overflow clip helyett visible a fő wrapper-eken */
    .home-page-wrapper {
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .home-hero {
        overflow: visible !important;
    }
}
