* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b35;
    --dark-bg: #0a0e27;
    --darker-bg: #050810;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient-1: linear-gradient(135deg, #0066ff, #00d4ff);
    --gradient-2: linear-gradient(135deg, #ff6b35, #ff8e53);
    --gradient-3: linear-gradient(135deg, #667eea, #764ba2);
    --logo-size: 72px;
    --hero-vehicle-size: 700px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    
     font-size: 120%; /* <<< EZ A SOR TESZI NAGYOBBÁ A SZÖVEGET */
}

a{text-decoration:none;}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a:active {
   color: var(--secondary-color);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px 50px; /* Reduced top padding */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.15), transparent 50%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-top: -20px; /* Adjusted to keep content higher */
    margin-left: 5vw; /* Align content closer to the center */
    /* margin-right: 15%; Increased space on the right to shift it further */
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--gradient-1);
    color: var(--light-text);
    border: none;
    padding: 15px 35px; /* Reduced padding for a smaller button */
    font-size: 16px; /* Slightly smaller font size */
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px; /* Adjusted to keep the car icon higher */
}

.floating-capsule {
    font-size: 120px; /* Reduced size of the car icon */
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}


/* Section Styling */
        section {
            padding: 100px 20px;
        }

        section h2 {
            font-size: 42px;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 18px;
            color: var(--gray-text);
        }

        /* Concept Section */
        .concept {
            background: var(--darker-bg);
        }

        .concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .concept-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        .concept-card:hover {
            transform: translateY(-15px);
            border-color: var(--secondary-color);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2); /* Subtle shadow */
        }

        .concept-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .concept-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .concept-card p {
            color: var(--gray-text);
            font-size: 15px;
        }

        /* Solutions Section */
        .solutions {
            background: var(--darker-bg);
        }

        .solutions-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .solution-item {
            display: flex;
            gap: 30px;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .solution-item:hover {
            transform: translateX(10px);
            box-shadow: -5px 5px 30px rgba(0, 212, 255, 0.2);
        }

        .solution-number {
            min-width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .solution-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .problem-section h3,
        .solution-section h3 {
            font-size: 22px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .problem-box {
            background: rgba(255, 107, 53, 0.1);
            border-left: 4px solid #ff6b35;
            padding: 20px;
            border-radius: 10px;
        }

        .solution-box {
            background: rgba(0, 255, 136, 0.1);
            border-left: 4px solid #00ff88;
            padding: 20px;
            border-radius: 10px;
        }

        .problem-box p,
        .solution-box p {
            color: var(--gray-text);
            line-height: 1.8;
        }

        .problem-box strong {
            color: #ff6b35;
        }



/* How It Works Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--gradient-1);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--gray-text);
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Responsive Design for How It Works Section */
@media (max-width: 768px) {
    .process-timeline {
        padding: 0 20px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .process-step::before {
        display: none; /* Hide the line in mobile view */
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 16px;
    }

    .step-content li {
        font-size: 14px;
    }
}

/* Technology Section */
.technology {
    background: var(--darker-bg);
}

.tech-comparison {
    overflow-y: hidden; /* Remove horizontal scrollbar */
    overflow-x: hidden; 
}

.tech-table {
    table-layout: fixed; /* Ensure columns are evenly spaced */
    width: 100%; /* Ensure the table fits within the container */
    border-collapse: collapse;
    margin: 0 auto;
}

.tech-table th,
.tech-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-table th {
    background: var(--card-bg);
    font-weight: bold;
    color: var(--secondary-color);
}

.tech-table tr:hover {
    background: var(--card-bg);
}

.tech-table td:first-child {
    font-weight: bold;
    color: var(--light-text);
}

.tech-table td:nth-child(2) {
    color: var(--gray-text);
}

.tech-table td:nth-child(3) {
    color: var(--secondary-color);
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.impact-card:hover {
    transform: translateY(-15px);
    background: rgba(0, 102, 255, 0.1);
}

.impact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.impact-card p {
    color: var(--gray-text);
}

/* SWOT Section */
.swot {
    background: var(--darker-bg);
}

.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
    gap: 30px;
    max-width: 1000px; /* Adjusted width for better alignment */
    margin: 0 auto;
}

.swot-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid;
}

.swot-card.strengths {
    border-left-color: #00d4ff;
}

.swot-card.weaknesses {
    border-left-color: #ff6b35;
}

.swot-card.opportunities {
    border-left-color: #00ff88;
}

.swot-card.threats {
    border-left-color: #ff4757;
}

.swot-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.swot-card ul {
    list-style: none;
}

.swot-card li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--gray-text);
    font-size: 20px;
}

.swot-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 20px;
}

.strengths li::before { color: #00d4ff; }
.weaknesses li::before { color: #ff6b35; }
.opportunities li::before { color: #00ff88; }
.threats li::before { color: #ff4757; }

/* Roadmap Section */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    min-width: 120px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-text);
}

/* Location Section */
.location {
    background: var(--darker-bg);
}

.location-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--gray-text);
}

.location-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.location-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 50px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    font-size: 14px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-family: inherit;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    background: var(--gradient-1);
    color: var(--light-text);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: var(--gray-text);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 14px;
}


 .logo-icon-img {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
}

.floating-capsule-img {
    width: var(--hero-vehicle-size);
    height: var(--hero-vehicle-size);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

 /* Responsive scaling for smaller screens */
        @media (max-width: 900px) {
            :root {
                --hero-vehicle-size: 300px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --logo-size: 56px;
                --hero-vehicle-size: 140px;
            }
        }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px; /* Reduced top padding */
        padding-bottom: 50px; /* Adjusted bottom padding */
    }

    .hero-content {
        margin-top: 0; /* Remove margin to bring text closer to the car icon */
    }

    .hero h1 {
        font-size: 32px; /* Slightly smaller font size for better fit */
        margin-bottom: 15px; /* Reduced margin below the title */
    }

    .hero-subtitle {
        font-size: 18px; /* Slightly smaller subtitle */
        margin-bottom: 30px; /* Reduced margin below the subtitle */
    }

    .hero-visual {
        margin-top: -20px; /* Bring the car icon closer to the text */
    }

    .floating-capsule {
        font-size: 90px; /* Reduced size of the car icon */
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-capsule {
        font-size: 100px;
        margin-top: 40px;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }


/* Alap Section beállítások */
    section {
        padding: 60px 15px; /* kisebb belső margó */
    }

    section h2 {
        font-size: 28px; /* kisebb címek */
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    /* Concept Section */
    .concept-grid {
        grid-template-columns: 1fr; /* egymás alá rakja a kártyákat */
        gap: 20px;
    }

    .concept-card {
        padding: 25px 20px;
    }

    .concept-icon {
        font-size: 48px;
    }

    .concept-card h3 {
        font-size: 20px;
    }

    .concept-card p {
        font-size: 14px;
    }

    /* Solutions Section */
    .solutions-grid {
        gap: 25px;
    }

    .solution-item {
        flex-direction: column; /* egymás alá rendezi a tartalmat */
        align-items: flex-start;
        padding: 25px 20px;
    }

    .solution-number {
        min-width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .solution-content {
        gap: 15px;
    }

    .problem-section h3,
    .solution-section h3 {
        font-size: 18px;
    }

    .problem-box,
    .solution-box {
        padding: 15px;
    }

    .problem-box p,
    .solution-box p {
        font-size: 15px;
        line-height: 1.6;
    }
    .process-step {
        flex-direction: column;
    }

    .process-step::before {
        left: 15px;
        top: 80px;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-marker {
        min-width: 100px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .tech-table {
        font-size: 14px;
        
    }

    .tech-table th,
    .tech-table td {
        padding: 15px 10px;
    }
 
    .swot-grid {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
    }
    
    
}