@charset "UTF-8";
/* CSS Document */

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

body{
    font-family:Arial, sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.6;
}

.language-selector{ position:absolute; right:20px; top:15px; } 
.language-selector a{ padding:8px 12px; border-radius:20px; text-decoration:none; color:#0f172a; font-weight:bold; } 
.language-selector a.active{ background:#38bdf8; color:white; }

nav{
    background:white;
    padding:15px;
    text-align:center;
    position:sticky;
    top:0;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
	
	position: relative;
}

nav a{
    text-decoration:none;
    margin:0 15px;
    color:#0f172a;
    font-weight:bold;
}

.logo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:30px;
    display:block;
    margin:0 auto 25px;
    background:white;
    padding:10px;
}

header{
    background:linear-gradient(135deg,#0f172a,#0284c7);
    color:white;
    text-align:center;
    padding:80px 20px;
}

header h1{
    font-size:50px;
    margin-bottom:20px;
}

header p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#38bdf8;
    color:#082f49;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

section{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

.video-container{
    max-width:350px;
    margin:40px auto 0;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.video-container iframe{
    width:100%;
    height:620px;
    border:none;
}

h2{
    text-align:center;
    margin-bottom:30px;
}

.intro{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;
    margin-top:40px;
}

.card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card h3{
    margin-bottom:10px;
    color:#0284c7;
}

.steps{
    background:#e0f2fe;
    padding:30px;
    border-radius:15px;
}

.steps ol{
    margin-left:25px;
}

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

.price-card{
    background:#0f172a;
    color:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.price-card strong{
    display:block;
    margin:15px 0;
    font-size:35px;
    color:#38bdf8;
}

.installation-title{
    text-align:center;
    margin-top:50px;
    margin-bottom:30px;
    font-size:28px;
}

.stores{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.stores a{
    transition:0.3s;
}

.stores a:hover{
    transform:scale(1.05);
}

.stores img{
    width:220px;
    height:auto;
}

activation-form{
    max-width:700px;
    margin:40px auto;
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:16px;
}

.form-group input:focus{
    outline:none;
    border-color:#38bdf8;
}

.form-group select{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:16px;
    background:white;
}

.form-group select:focus{
    outline:none;
    border-color:#38bdf8;
}

.contact{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

    header h1{
        font-size:35px;
    }

	
	nav{
        display:flex;
        flex-direction:column;
        align-items:center;
        padding-top:15px;
    }

    .language-selector{
        position:static;
        margin-bottom:15px;
        order:-1;
    }

    .language-selector a{
        display:inline-block;
        margin:0 5px;
    }

    nav a{
        margin:6px;
    }
	

}