/* BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f9f9fb;
    color: #111;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.lang-switch button {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.lang-switch button:hover {
    background: #444;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* MAIN GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* CARDS */
.card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card h2 {
    font-size: 26px;
    margin: 20px 0 15px;
}

.card p {
    font-size: 16px;
    color: #555;
}

/* ICONS */
.icon {
    font-size: 48px;
    color: #0070f3;
}

/* SERVICE LIST */
.services {
    list-style: none;
    margin-top: 15px;
}

.services li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.services li i {
    margin-right: 10px;
    color: #0070f3;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

/* LANGUAGE DEFAULT */
.ru {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 28px;
    }

    .card {
        padding: 30px 20px;
    }
}


/* CARD BUTTONS */
.card-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.btn.whatsapp:hover {
    background-color: #1ebe57;
}

.btn.call {
    background-color: #0070f3;
    color: white;
}

.btn.call:hover {
    background-color: #005ac1;
}

/* COMPANY INFO */
.company-info {
    list-style: none;
    margin-top: 15px;
    line-height: 1.8;
}

.company-info li {
    font-size: 16px;
}

.company-info strong {
    color: #111;
}

/* MAP CONTAINER */
.map-container {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 250px;
    border-radius: 16px;
}