/*
Theme Name: KZSCHIP Chiptuning Theme
Theme URI: https://kzschip.hu
Author: KZSCHIP
Author URI: https://kzschip.hu
Description: Professzionális chiptuning témája a KZSCHIP számára - Magicmotorsport hivatalos partner
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: kzschip
*/

/* ============================================
   CSS VÁLTOZÓK - NEON ZÖLD TÉMA
   ============================================ */
/* ============================================
   ELEGÁNS NEON-ZÖLD TÉMA – 2025 EDITION
   ============================================ */
:root {
    /* Finomított, kevésbé "csicsás" neon zöld */
    --primary-color: #39ff7d;      /* eredetileg #00ff88 → most visszafogottabb, de még mindig neon */
    --primary-dark: #00d46a;
    --primary-light: #7affb8;
    --accent-color: #00ffcc;       /* marad, mert szép */
    --accent-secondary: #00ff9d;

    /* Háttér – még sötétebb, elegánsabb */
    --dark-bg: #0a0d0b;
    --darker-bg: #050707;
    --card-bg: #0d1210;
    --card-bg-hover: #111915;

    /* Szöveg – kicsit melegebb tónus */
    --text-light: #e8f5e9;
    --text-muted: #94a89a;
    --text-bright: #d0ffdf;

    /* Gradiens – finomabb átmenet */
    --gradient-primary: linear-gradient(135deg, #39ff7d 0%, #00ffcc 50%, #00ff9d 100%);
    --gradient-dark: linear-gradient(180deg, #0a0d0b 0%, #0a1a12 100%);
    --gradient-card: linear-gradient(135deg, rgba(13,18,16,0.8) 0%, rgba(10,26,18,0.9) 100%);
    
    /* Glow – sokkal visszafogottabb, elegánsabb */
    --glow-primary: 0 0 15px rgba(57, 255, 125, 0.25);
    --glow-strong: 0 0 25px rgba(57, 255, 125, 0.35);
    --glow-accent: 0 0 15px rgba(0, 255, 204, 0.2);
    --text-glow: 0 0 12px rgba(57, 255, 125, 0.4);

    /* Pulsing border animáció is finomabb lett */
    --pulse-color: rgba(57, 255, 125, 0.3);
}

/* ============================================
   ALAP RESET ÉS BEÁLLÍTÁSOK
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   ANIMÁCIÓK
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--glow-primary);
    }
    50% {
        transform: scale(1.02);
        box-shadow: var(--glow-strong);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        border-color: var(--accent-color);
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.9), 0 0 60px rgba(0, 255, 204, 0.5);
    }
}

@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    93% {
        opacity: 0.8;
    }
    94% {
        opacity: 1;
    }
    96% {
        opacity: 0.9;
    }
    97% {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes scanLine {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* ============================================
   HEADER ÉS NAVIGÁCIÓ
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    animation: slideDown 0.8s ease-out;
    transition: var(--transition-medium);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--glow-primary);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.site-logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: var(--glow-strong);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: var(--text-glow);
    animation: neonFlicker 5s infinite;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    transition: var(--transition-fast);
}

.partner-badge:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.partner-badge img {
    height: 30px;
    width: auto;
    filter: brightness(1.2) hue-rotate(90deg);
}

.partner-badge span {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop navigáció */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-navigation a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 8px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    box-shadow: var(--glow-primary);
}

.main-navigation a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    text-shadow: var(--text-glow);
}

.main-navigation a:hover::after {
    width: 60%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Gombok */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0a0a0a;
    box-shadow: var(--glow-primary);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: var(--glow-primary);
    text-shadow: var(--text-glow);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* ============================================
   HERO SZEKCIÓ
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 204, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 0.5s; }
.particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 1.5s; }
.particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 2.5s; }

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--primary-color);
}

.hero-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--accent-color);
    animation-delay: -4s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: borderGlow 3s ease-in-out infinite;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.6;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0d1510 0%, #0a1a12 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

/* Scan line effekt */
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: scanLine 3s linear infinite;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    fill: #0a0a0a;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.floating-card {
    position: absolute;
    background: rgba(13, 21, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: -2s;
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #0a0a0a;
}

.floating-card-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.floating-card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   SZOLGÁLTATÁSOK SZEKCIÓ
   ============================================ */
.services-section {
    padding: 100px 2rem;
    position: relative;
    background: var(--darker-bg);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-medium);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
    box-shadow: var(--glow-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.15);
    background: var(--card-bg-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
    box-shadow: var(--glow-primary);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-strong);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: #0a0a0a;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-bright);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
    text-shadow: var(--text-glow);
}

.service-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition-fast);
}

/* ============================================
   ESZKÖZÖK/MAGICMOTORSPORT SZEKCIÓ
   ============================================ */
.tools-section {
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tools-visual {
    position: relative;
}

.tools-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tool-image-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-fast);
}

.tool-image-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
}

.tool-image-card:first-child {
    grid-column: span 2;
}

.tool-image-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.tool-image-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #0d1510 0%, #0a1a12 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.tool-image-placeholder.large {
    height: 180px;
}

.tool-image-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.tool-image-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tools-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.tools-info h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tools-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.tool-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tool-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.tool-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-bright);
}

.tool-feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.magicmotorsport-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.magicmotorsport-logo img {
    height: 50px;
    width: auto;
    filter: hue-rotate(90deg) brightness(1.2);
}

.magicmotorsport-logo-placeholder {
    width: 180px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
}

.magicmotorsport-logo span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ============================================
   FILE SERVICE SZEKCIÓ
   ============================================ */
.fileservice-section {
    padding: 100px 2rem;
    background: var(--darker-bg);
    position: relative;
}

.fileservice-container {
    max-width: 1000px;
    margin: 0 auto;
}

.fileservice-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.fileservice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: var(--glow-primary);
}

.fileservice-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.fileservice-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: var(--glow-strong);
}

.fileservice-icon svg {
    width: 50px;
    height: 50px;
    fill: #0a0a0a;
}

.fileservice-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.fileservice-card h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fileservice-card > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.fileservice-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fileservice-btn {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    animation: pulse 3s ease-in-out infinite;
}

/* ============================================
   ÁRAK SZEKCIÓ
   ============================================ */
.pricing-section {
    padding: 100px 2rem;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-medium);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    border-radius: 24px;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
    color: var(--text-muted);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   KAPCSOLAT SZEKCIÓ
   ============================================ */
.contact-section {
    padding: 100px 2rem;
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-bright);
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item-text a:hover {
    color: var(--primary-color);
    text-shadow: var(--text-glow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.social-link:hover svg {
    fill: #0a0a0a;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
    transition: var(--transition-fast);
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-bright);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1), 0 0 20px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #030503;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 80px 2rem 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .site-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text-bright);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: var(--glow-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-shadow: var(--text-glow);
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.newsletter-form button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    color: #0a0a0a;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   SCROLL TO TOP GOMB
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--glow-primary);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-strong);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #0a0a0a;
}

/* ============================================
   LOADING ANIMÁCIÓ
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 255, 136, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: rotateGlow 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* ============================================
   SCROLL ANIMÁCIÓK
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBIL MENÜ - ÚJ DIZÁJN
   ============================================ */
@media (max-width: 992px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 26, 18, 0.98) 100%);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 998;
    }
    
    .main-navigation.mobile-open {
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        width: 85%;
        max-width: 400px;
    }
    
    .main-navigation li {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .main-navigation.mobile-open li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .main-navigation.mobile-open li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.mobile-open li:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.mobile-open li:nth-child(3) { transition-delay: 0.2s; }
    .main-navigation.mobile-open li:nth-child(4) { transition-delay: 0.25s; }
    .main-navigation.mobile-open li:nth-child(5) { transition-delay: 0.3s; }
    .main-navigation.mobile-open li:nth-child(6) { transition-delay: 0.35s; }
    
    /* Menüpontok - kártyaszerű megjelenés */
    .main-navigation a {
        display: block;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1.2rem 2rem;
        color: var(--text-light);
        background: rgba(0, 255, 136, 0.08);
        border: 1px solid rgba(0, 255, 136, 0.2);
        border-radius: 16px;
        margin: 0;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .main-navigation a:hover,
    .main-navigation a:active {
        background: rgba(0, 255, 136, 0.2);
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    /* Mobil menü toggle - animáció */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-cta {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* ============================================
   RESZPONZÍV STÍLUSOK
   ============================================ */

/* Extra nagy képernyők */
@media (min-width: 1401px) {
    .hero-content {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Nagy laptopok (1200px - 1400px) */
@media (max-width: 1400px) {
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .floating-card {
        padding: 0.8rem 1.2rem;
    }
    
    .floating-card-1 {
        left: -5%;
    }
    
    .floating-card-2 {
        right: 0;
    }
}

/* Tabletek (992px - 1200px) */
@media (max-width: 1200px) {
    .partner-badge span {
        display: none;
    }
    
    .main-navigation a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 120px 1.5rem 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .tools-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tools-visual {
        order: 2;
    }
    
    .tools-info {
        order: 1;
        text-align: center;
    }
    
    .tools-features {
        max-width: 500px;
        margin: 0 auto 2.5rem;
    }
    
    .tool-feature {
        text-align: left;
    }
    
    .magicmotorsport-logo {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
}

/* Tablet portrait (768px - 992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 80px 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        max-width: 400px;
        margin: 0 auto 2.5rem;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .fileservice-card {
        padding: 3rem 2rem;
    }
    
    .fileservice-steps {
        gap: 1.5rem;
    }
}

/* Telefonok (576px - 768px) */
@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .partner-badge {
        padding: 0.4rem 0.6rem;
    }
    
    .partner-badge img,
    .magicmotorsport-logo-placeholder {
        height: 22px !important;
        font-size: 0.65rem !important;
        width: auto !important;
    }
    
    .hero-section {
        padding: 100px 1rem 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-image-container {
        border-radius: 20px;
    }
    
    .services-section {
        padding: 60px 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.8rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .tools-section {
        padding: 60px 1rem;
    }
    
    .tools-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-image-card:first-child {
        grid-column: auto;
    }
    
    .tools-info h2 {
        font-size: 1.8rem;
    }
    
    .fileservice-section {
        padding: 60px 1rem;
    }
    
    .fileservice-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .fileservice-icon {
        width: 80px;
        height: 80px;
    }
    
    .fileservice-card h2 {
        font-size: 1.8rem;
    }
    
    .fileservice-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-section {
        padding: 60px 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 60px 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .site-footer {
        padding: 60px 1rem 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Kis telefonok (480px alatt) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .partner-badge {
        display: none;
    }
    
    .main-navigation ul {
        width: 90%;
    }
    
    .main-navigation a {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .hero-section {
        padding: 90px 0.8rem 40px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .services-section {
        padding: 50px 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
    }
    
    .fileservice-card {
        padding: 2rem 1.2rem;
    }
    
    .fileservice-card h2 {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1.2rem;
    }
}

/* Extra kis telefonok (360px alatt) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .main-navigation a {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Landscape mód telefonokon */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 2rem 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .main-navigation {
        padding: 80px 2rem;
        overflow-y: auto;
    }
    
    .main-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation a {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Érintőképernyő */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .pricing-card:hover,
    .tool-image-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .cursor-glow {
        display: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   WOOCOMMERCE INTEGRÁCIÓ
   ============================================ */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.woocommerce .product {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-fast);
}

.woocommerce .product:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
}

.woocommerce .product img {
    border-radius: 12px;
    margin-bottom: 1rem;
}

.woocommerce .product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.woocommerce .product .price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.woocommerce .button,
.woocommerce .add_to_cart_button {
    background: var(--gradient-primary) !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 700 !important;
    transition: var(--transition-fast) !important;
}

.woocommerce .button:hover,
.woocommerce .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   SZELEKCIÓ
   ============================================ */
::selection {
    background: var(--primary-color);
    color: #0a0a0a;
}

/* ============================================
   MOBIL MENÜ - JAVÍTOTT VERZIÓ
   ============================================ */
@media (max-width: 992px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.99) 0%, rgba(10, 26, 18, 0.99) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 20px 50px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-navigation.mobile-open {
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }
    
    .main-navigation li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .main-navigation.mobile-open li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .main-navigation.mobile-open li:nth-child(1) { transition-delay: 0.05s; }
    .main-navigation.mobile-open li:nth-child(2) { transition-delay: 0.1s; }
    .main-navigation.mobile-open li:nth-child(3) { transition-delay: 0.15s; }
    .main-navigation.mobile-open li:nth-child(4) { transition-delay: 0.2s; }
    .main-navigation.mobile-open li:nth-child(5) { transition-delay: 0.25s; }
    .main-navigation.mobile-open li:nth-child(6) { transition-delay: 0.3s; }
    .main-navigation.mobile-open li:nth-child(7) { transition-delay: 0.35s; }
    .main-navigation.mobile-open li:nth-child(8) { transition-delay: 0.4s; }
    
    .main-navigation a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 1.15rem;
        font-weight: 600;
        padding: 16px 24px;
        color: #ffffff;
        background: rgba(0, 255, 136, 0.08);
        border: 1px solid rgba(0, 255, 136, 0.25);
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }
    
    .main-navigation a:hover,
    .main-navigation a:focus,
    .main-navigation a:active {
        background: rgba(0, 255, 136, 0.2);
        border-color: #00ff88;
        color: #00ff88;
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
    }
    
    .main-navigation a::after {
        display: none !important;
    }
    
    /* Toggle gomb */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #00ff88;
        border-radius: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .header-cta {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* iPhone notch / safe area támogatás */
@supports (padding-top: env(safe-area-inset-top)) {
    @media (max-width: 992px) {
        .main-navigation {
            padding-top: calc(100px + env(safe-area-inset-top));
            padding-bottom: calc(50px + env(safe-area-inset-bottom));
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
        }
        
        .site-header {
            padding-top: env(safe-area-inset-top);
        }
    }
}

/* Kisebb telefonok */
@media (max-width: 380px) {
    .main-navigation {
        padding: 90px 15px 40px;
    }
    
    .main-navigation ul {
        gap: 10px;
        max-width: 280px;
    }
    
    .main-navigation a {
        font-size: 1.05rem;
        padding: 14px 20px;
    }
}

/* ============================================
   SZOLGÁLTATÁSOK OLDAL - WEBSHOP STÍLUS
   ============================================ */

/* Hero */
.services-page-hero {
    position: relative;
    padding: 160px 2rem 80px;
    text-align: center;
    overflow: hidden;
    background: var(--darker-bg);
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-hero-bg .hero-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.services-hero-bg .hero-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content .section-badge {
    margin-bottom: 1.5rem;
}

.services-hero-content .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.services-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero-content h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Szűrők */
.services-filter-section {
    padding: 0 2rem;
    background: var(--dark-bg);
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

.filter-tabs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.filter-tab svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.filter-tab:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--text-light);
}

.filter-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #0a0a0a;
    box-shadow: var(--glow-primary);
}

/* Szolgáltatások Grid */
.services-grid-section {
    padding: 60px 2rem;
    background: var(--dark-bg);
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Szolgáltatás Kártya */
.service-product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.1);
}

.service-product-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.service-product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.best {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.product-badge.pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-badge.eco {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.product-badge.fire {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    color: white;
}

/* Ikon */
.product-icon {
    width: 70px;
    height: 70px;
    margin: 25px auto 0;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-product-card:hover .product-icon {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-primary);
}

.product-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.service-product-card:hover .product-icon svg {
    fill: #0a0a0a;
}

.product-icon.eco {
    background: rgba(17, 153, 142, 0.15);
    border-color: rgba(56, 239, 125, 0.3);
}

.product-icon.eco svg {
    fill: #38ef7d;
}

.product-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

.product-icon.warning svg {
    fill: #ffc107;
}

.product-icon.fire {
    background: rgba(245, 175, 25, 0.1);
    border-color: rgba(241, 39, 17, 0.2);
}

.product-icon.fire svg {
    fill: #f5af19;
}

/* Tartalom */
.product-content {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-bright);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-features .check {
    width: 18px;
    height: 18px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-sm {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
}

/* CTA Szekció */
.services-cta-section {
    padding: 80px 2rem;
    background: var(--darker-bg);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animáció elrejtett kártyákhoz */
.service-product-card.hidden {
    display: none;
}

/* Reszponzív */
@media (max-width: 992px) {
    .services-page-hero {
        padding: 140px 1.5rem 60px;
    }
    
    .services-filter-section {
        top: 65px;
    }
    
    .filter-tabs {
        padding: 0.5rem 0;
    }
    
    .services-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-page-hero {
        padding: 120px 1rem 50px;
    }
    
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .services-filter-section {
        padding: 0 1rem;
    }
    
    .filter-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .filter-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .services-grid-section {
        padding: 40px 1rem;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .product-content {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .product-price {
        text-align: center;
    }
    
    .btn-sm {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-page-hero {
        padding: 110px 0.8rem 40px;
    }
    
    .filter-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
}
/* ============================================
   MOBIL GOMB JAVÍTÁS (Szolgáltatások oldal)
   ============================================ */
@media (max-width: 768px) {
    /* Visszaállítjuk a láblécet sorba rendezettre */
    .service-product-card .product-footer {
        flex-direction: row !important; /* Egymás mellett legyenek */
        justify-content: space-between !important;
        align-items: center !important;
        padding-top: 1rem;
    }

    /* A gomb méretének csökkentése */
    .service-product-card .btn-sm {
        width: auto !important; /* Ne legyen teljes szélességű */
        padding: 0.6rem 1rem !important; /* Kisebb belső térköz */
        font-size: 0.85rem !important; /* Kisebb betű */
        min-width: unset !important;
        flex-shrink: 0; /* Ne nyomódjon össze */
    }
    
    /* Az ár szövegének igazítása */
    .service-product-card .product-price {
        text-align: left !important;
    }
    
    .service-product-card .price-amount {
        font-size: 1.4rem !important; /* Kicsit kisebb ár betűméret */
    }
}
/* Diszkrét figyelemfelkeltő gomb stílus */
.btn-glow-border {
    position: relative;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.05); /* Nagyon halvány háttér */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1); /* Finom alap glow */
    animation: discreetPulse 3s infinite;
}

.btn-glow-border:hover {
    background: var(--primary-color);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

@keyframes discreetPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
        border-color: var(--primary-color);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
        border-color: var(--primary-light);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
        border-color: var(--primary-color);
    }
}

/* Ár nélküli kártyák – gomb teljes szélességű, de elegáns */
.service-product-card .product-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(57, 255, 125, 0.1);
}

.service-product-card .btn-block {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-weight: 600;
}

/* Mobilon kicsit kisebb, de még mindig jól látható */
@media (max-width: 768px) {
    .service-product-card .btn-block {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}

#secondary, 
#sidebar, 
.widget-area {
    display: none !important;
}

/* Ha véletlenül a Bolt oldalra téved valaki, nézzen ki normálisan */
.woocommerce-page {
    background-color: var(--dark-bg);
    color: var(--text-light);
}