/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 253, 249, 0.9) 100%);
    /*linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(79, 70, 229, 0.9) 100%);*/
    color: #121454;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transform-style: preserve-3d;
    will-change: transform;
}

.landscape-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

.landscape-back {
    background-image: url('../img/background.webp');
    opacity: 1;
    transform: translateZ(-20px) scale(2);
}

.landscape-middle {
    background-image: url('../img/background_mid.webp');
    opacity: 0.7;
    transform: translateZ(-10px) scale(1.5);
}

.landscape-front {
    background-image: url('../img/cyber_pattern.png');
    opacity: 0.1;
    transform: translateZ(0) scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
   
}

.hero-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 1.5rem;
}
.hero-title img{
    width: 100%;
    min-width: 100px;
    max-width: 160px;
    height: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.8;
}

.app-preview {
    flex: 1;
    /*background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
    text-align: right;
}

.app-preview img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 10px;
}

.download-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 2rem;
}

.qr-code {    
    
    
    min-width: 180px;
    max-width: 260px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 260px; /* 200px; */
    
}

.store-badge {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.store-badge:hover {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.about-content {
    max-width: 1200px; /* 860pxpx for 2 items per row */
    margin: 0 auto;
}

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

.about h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.about-description {
    max-width: 860px; 
    margin: 0 auto;
    text-align: center;
    color: #64748b;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); 2 items per row*/ 
     grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    max-width: 240px;
   
    /*height: 80px;*/  
    margin-bottom: 1.5rem;  
    border-radius: 0.5rem;
    object-fit: cover;
}


.feature-card::before {
   /* content: "#" attr(data-number);*/
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4f46e5;
    opacity: 0.5;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.feature-card p, .feature-card ul {
    color: #64748b;
}

/* Footer Section */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    /*height: 40px;*/
    width: 100%;
    max-width: 320px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.language-icon-wrapper {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-icon-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-icon {
    width: 32px;
    height: 32px;
    opacity: 1;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.language-switcher:hover .language-dropdown,
.language-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-option:hover {
    background-color: #f3f4f6;
    color: #4f46e5;
}
.hidden_in_m{
    display:inline;
}
.show_in_m{
    display:none;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .app-preview, .download-section {
        width: 100%;
        max-width: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hidden_in_m{
        display:none;
    }
    .show_in_m{
        display:inline;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .qr-code {    
        max-width: 300px;
    }
    .app-preview {
       
        text-align: center;
    }
    .download-buttons {
        max-width: 300px;
        gap: 0.5rem;
    }
    .download-section {
      
        align-items: center;
    }
} 

ul{
    margin-left: 2em;
}