/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #4CAF50;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.highlight {
    color: #4CAF50;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.hero-circle i {
    font-size: 8rem;
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #333;
}

/* Target Groups */
.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.target-group-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.target-group-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.target-group-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.target-group-card ul {
    list-style: none;
}

.target-group-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.target-group-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Special Features */
.special-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #4CAF50;
    min-width: 40px;
}

.feature-item span {
    font-weight: 500;
}

.sustainability-box {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.sustainability-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    min-width: 30px;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card, .promise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vision-card h3, .promise-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.promise-card ul {
    list-style: none;
}

.promise-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.promise-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Blockchain Section */
.blockchain-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blockchain-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blockchain-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.blockchain-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    min-width: 30px;
}

.vechain-info {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3rem;
    border-radius: 20px;
}

.vechain-info h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.vechain-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vechain-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.vechain-feature i {
    font-size: 1.5rem;
    color: #FFD700;
    min-width: 30px;
}

/* Locations Section */
.locations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.location-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-category h3 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-list {
    list-style: none;
}

.location-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #eee;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list i {
    color: #4CAF50;
    min-width: 20px;
}

.expansion-goal {
    text-align: center;
}

.goal-card {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
}

.goal-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.goal-card h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-header i {
    font-size: 2rem;
    color: #4CAF50;
}

.solution-header h3 {
    color: #4CAF50;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.benefits-section {
    text-align: center;
}

.benefits-section h3 {
    color: #4CAF50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #4CAF50;
}

.benefit-card span {
    text-align: center;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 0.2rem;
    min-width: 25px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Footer */
.footer {
    background-color: #333333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-circle {
        width: 200px;
        height: 200px;
    }
    
    .hero-circle i {
        font-size: 5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .target-groups-grid {
        grid-template-columns: 1fr;
    }
    
    .special-features {
        grid-template-columns: 1fr;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
}


/* Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* EU Goals Section */
.eu-goals-content {
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-comparison {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.eu-targets-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.smartcycle-contribution h3 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-3px);
}

.contribution-item i {
    font-size: 2rem;
    color: #4CAF50;
    min-width: 40px;
}

.contribution-item span {
    font-weight: 500;
    line-height: 1.4;
}

/* Blockchain Visual */
.blockchain-visual {
    text-align: center;
    margin-bottom: 2rem;
}

/* Ecosystem Section */
.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecosystem-visual {
    text-align: center;
}

.ecosystem-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ecosystem-benefits {
    display: grid;
    gap: 1.5rem;
}

.ecosystem-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.ecosystem-benefit i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 0.2rem;
    min-width: 30px;
}

.ecosystem-benefit h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ecosystem-benefit p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Austria Map */
.austria-map {
    text-align: center;
    margin-bottom: 3rem;
}

/* Market Potential */
.market-potential {
    margin: 3rem 0;
}

.potential-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.potential-stat {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.potential-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.potential-stat .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.potential-stat .stat-sublabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .contribution-grid {
        grid-template-columns: 1fr;
    }
    
    .potential-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .potential-stat .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .potential-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .contribution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ecosystem-benefit {
        flex-direction: column;
        text-align: center;
    }
}




/* ===== Smart-Cycle patch: navbar + mobile menu (right slide) + safe images ===== */
/* Keep original styles; only override where needed */

/* Menu typography like on Wieso-Pfand: Montserrat + semi-bold */
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Keep header thin even if inline height was set on the logo */
.nav-logo .logo-img {
  height: auto !important;
  max-height: 50px !important;
  width: auto;
}

/* Prevent horizontal scrolling on small screens */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
}

/* Mobile menu: open from the RIGHT, not full-screen */
@media (max-width: 768px) {
  .navbar .nav-menu {
    position: absolute;   /* override fixed */
    left: auto;           /* override left:-100% */
    right: 0;
    top: 70px;            /* align below navbar (matches original top:70px) */
    width: min(80vw, 320px);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* right-align items */
    text-align: right;
    gap: .25rem;
    padding: 1rem;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 27px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .navbar .nav-menu.active {
    transform: translateX(0);
  }
  .navbar .nav-menu li { margin: .35rem 0; }
  .navbar .nav-link { display: block; padding: .5rem 0; }
  .hamburger { display: flex; margin-left: auto; }
}

/* Responsive media: safe defaults (no desktop stretch) */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* Section visuals: only force full width on mobile to avoid breaking desktop layout */
@media (max-width: 768px) {
  .eu-targets-visual img,
  #contact img,
  .blockchain-visual img,
  .ecosystem-visual img,
  .austria-map img,
  .hero-image img {
    width: 100% !important;
    height: auto !important;
  }
}
