.kontakt-hero {
    padding: 90px 0 40px;
    background: linear-gradient(135deg, #ffffff, #ececec);
}

.kontakt-hero-content {
    max-width: 760px;
}

.kontakt-hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #111;
}

.kontakt-hero p {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
}

.kontakt-main {
    padding: 40px 0 80px;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.kontakt-info,
.kontakt-form {
    height: 100%;
}

.kontakt-info h2,
.kontakt-form h2 {
    margin-bottom: 22px;
    font-size: 1.8rem;
}

.kontakt-item + .kontakt-item {
    margin-top: 20px;
}

.kontakt-item span {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.kontakt-item p {
    color: #444;
}

.kontakt-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font: inherit;
}

.form-row textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #111;
}

.kontakt-form .btn {
    border: none;
    cursor: pointer;
    width: fit-content;
}

@media (max-width: 900px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-hero h1 {
        font-size: 2.2rem;
    }
}