/* GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ffff;
    --primary-glow: rgba(0, 255, 255, 0.5);
    --secondary: #ff00ff;
    --accent: #00ff88;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-1: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
    --gradient-2: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    --gradient-3: linear-gradient(135deg, #00ff88 0%, #00ffff 50%, #ff00ff 100%);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.2);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 40px rgba(255, 0, 255, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    animation: moveGradient 15s ease infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes moveGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes glowPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
    box-shadow: var(--glow-cyan);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: floatOrb 10s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.hero-left {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 255, 255, 0.08);
}

.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; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 10rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

#growth .service-card {
    background: rgba(255,255,255,0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 900px;
    margin: 0 auto;
}

#growth h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

#growth p {
    margin-bottom: 20px;
    line-height: 1.6;
}

#growth .styled-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

#growth .styled-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.hero-subtitle a {
    color: #F4D160;
    text-decoration: underline;
    transition: 0.2s ease;
}

.hero-subtitle a:hover {
    color: #ffe892; /* világosabb sárga hoverre */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(0,255,255,0.25);
    transform: translateY(-4px);
}

.pricing-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.pricing-card ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.pricing-card ul li {
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


.services a {
    color: #F4D160;
    text-decoration: underline;
    transition: 0.2s ease;
}

.services a:hover {
    color: #ffe892; /* világosabb sárga hoverre */
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.hero-right {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-photo-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    animation: photoFloat 4s ease-in-out infinite;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(0, 255, 255, 0.2),
            inset 0 0 40px rgba(0, 255, 255, 0.05);
}

@keyframes photoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(0) rotate(1deg); }  /* csak nagyon enyhe döntés */
}

.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(0, 255, 255, 0.1) 50%,
            transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    position: relative;
    z-index: 1;
}

.hero-photo:hover {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: var(--glow-cyan);
    z-index: 2;
}

.photo-badge-icon {
    font-size: 1.8rem;
}

.photo-badge-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(0, 255, 255, 0.03) 50%,
            transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(0, 255, 255, 0.2),
            inset 0 0 40px rgba(0, 255, 255, 0.03);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-left {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-left h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
}

.contact-left p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.4s;
    animation: fadeInLeft 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:nth-child(1) { animation-delay: 0.2s; }
.info-item:nth-child(2) { animation-delay: 0.3s; }
.info-item:nth-child(3) { animation-delay: 0.4s; }

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--glow-cyan);
    background: var(--bg-card-hover);
}

.info-icon {
    font-size: 2rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: var(--glow-cyan);
}

.info-text {
    flex: 1;
}

.info-label {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text a, .info-text div {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.15rem;
    transition: color 0.3s;
    font-weight: 400;
}

.info-text a:hover {
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(0, 255, 255, 0.1);
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1), var(--glow-cyan);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--glow-cyan);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), 0 0 80px rgba(0, 255, 255, 0.3);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #25D366;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 1100;
}

.whatsapp-float span {
    font-size: 1.3rem;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 15px);
        right: 1.5rem;
        left: 1.5rem;
        flex-direction: column;
        gap: 1.2rem;
        background: rgba(5, 8, 16, 0.95);
        border: 1px solid rgba(0, 255, 255, 0.2);
        border-radius: 20px;
        padding: 1.8rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.logo {
    display: inline-flex;
    flex-direction: column;
    background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-cyan); animation: glowPulse 3s ease-in-out infinite;
    font-size: 2.2rem; /* nagyobb név */
    font-weight: 900;  /* vastagabb bold */
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    background: var(--gradient-1); /* ugyanaz a szép neon szín */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    opacity: 0.85;
    margin-top: 2px;
}

strong {
    font-weight: 800 !important;
    color: #66ffe5;
}

.human-check {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.human-check-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.human-checkbox {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 16px;
    height: 16px;
    margin: 0;
}

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Popup box */
.popup-box {
    background: #111;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
    animation: fadeInScale 0.25s ease-out;
}

.popup-box h3 {
    margin: 0 0 10px;
    color: #00ffe0;
}

.popup-box p {
    color: #ccc;
    margin-bottom: 20px;
}

.close-btn {
    background: var(--gradient-1);
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
}

@keyframes fadeInScale {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* WhatsApp floating widget */
.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 9999;
    font-size: 14px;
}

/* Felső rész: ikon + szöveg buborék */
.whatsapp-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 12, 8, 0.96);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.8);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.7);
    backdrop-filter: blur(4px);
}

.whatsapp-label {
    color: #eafff4;
    font-weight: 500;
}

/* Animált ikon */
.whatsapp-icon-pulse {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #4bff9d, #25d366);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.9);
    animation: wa-pulse 1.7s ease-in-out infinite;
}

.whatsapp-emoji {
    font-size: 20px;
}


.whatsapp-actions {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.wa-btn {
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(37, 211, 102, 0.8);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}


.wa-btn-message {
    background: linear-gradient(135deg, #1ed760, #25d366);
    color: #02130a;
}


.wa-btn-call {
    background: rgba(2, 12, 8, 0.9);
    color: #b5ffda;
}


.wa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.9);
}


@keyframes wa-pulse {
    0% {
        transform: scale(0.96);
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 22px rgba(37, 211, 102, 1);
    }
    100% {
        transform: scale(0.96);
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
        font-size: 13px;
    }

    .whatsapp-icon-pulse {
        width: 36px;
        height: 36px;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.92);
    border-top: 1px solid rgba(0, 255, 200, 0.25);
    padding: 18px 20px;
    z-index: 999999;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(0,255,200,0.4);
    animation: slideUp 0.4s ease-out;
}

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.cookie-text {
    color: #e2fff7;
    font-size: 15px;
    line-height: 1.4;
}

.cookie-link {
    color: #00ffe0;
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, #00ffe0, #00c2a8);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 0 12px rgba(0,255,200,0.7);
    transition: 0.2s ease;
}

.cookie-btn:hover {
    box-shadow: 0 0 20px rgba(0,255,200,1);
    transform: translateY(-1px);
}

/* Banner slide animation */
@keyframes slideUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* Cookie policy modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.cookie-modal-box {
    background: #050810;
    border-radius: 14px;
    max-width: 520px;
    width: 90%;
    padding: 24px 26px 22px;
    box-shadow: 0 0 24px rgba(0, 255, 200, 0.45);
    border: 1px solid rgba(0, 255, 200, 0.35);
    color: #e6fff7;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    animation: cookieModalIn 0.25s ease-out;
}

.cookie-modal-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00ffe0;
}

.cookie-modal-box ul {
    padding-left: 18px;
    margin: 8px 0 12px;
}

.cookie-modal-box li {
    margin-bottom: 4px;
}

/* X gomb */
.cookie-modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    border: none;
    color: #9afbe3;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 6px;
}

.cookie-modal-close:hover {
    color: #ffffff;
}

/* Modal animation */
@keyframes cookieModalIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobil finomítás */
@media (max-width: 768px) {
    .cookie-modal-box {
        padding: 20px 18px 18px;
        font-size: 13px;
    }
}

.hero-left {
    padding-top: 60px;
}
