body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111418;
    color: #fff;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* Globální vnitřní šířka */
.inner {
    width: 94%;
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.header {
    padding: 25px 0;
}

.logo img {
    display: block;
    width:330px !important;
    margin:0 auto;
}

/* HERO */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

}

.hero-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-left p {
    max-width: 520px;
    line-height: 1.6;
    color: #c8c8c8;
}

.hero-right img {
    width: 420px;
    border-radius: 16px;
    display: block;
}

/* SERVICES */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.service-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: #1a1f24;
    border-radius: 16px;
    padding: 20px;
    width: 355px;
    text-align: left;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin: 0 0 10px;
}

.service-card p {
    color: #c8c8c8;
    font-size: 15px;
    line-height: 1.5;
}

/* FULL-WIDTH BUTTON */
.btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #d94b4b;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    margin-top: 18px;
    text-decoration: none;
    font-weight: bold;
}

/* WHY SECTION */
.why {
    background-color: #13171b;
    padding: 60px 0;
}

.why h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.why-card {
    background-color: #1a1f24;
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.why-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    display: block;
}

.why-card h4 {
    margin: 0 0 10px;
}

.why-card p {
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.4;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px 0 30px;
    color: #666;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left p {
        margin: 0 auto;
    }

    .hero-right img {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 600px) {
    .service-card,
    .why-card {
        width: 100%;
        max-width: 360px;
    }
}
