:root {
    --yellow: #f5c518;
    --yellow-dark: #d9a600;
    --bg: #ececec;
    --card: #ffffff;
    --text: #111;
    --muted: #666;
    --radius: 24px;
}

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

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.honeypot {
    display: none;
}

.container {
    width: min(900px, calc(100% - 40px));
    margin: auto;
}

.header {
    background: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #111;
}

.logo span {
    color: var(--yellow-dark);
}

.back-btn {
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

.offer-section {
    padding: 60px 0;
}

.offer-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.request-card {
    margin-top: 28px;
}

.offer-card h1 {
    margin-bottom: 10px;
}

.offer-card h2 {
    margin-bottom: 10px;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
}

textarea {
    height: 180px;
    resize: vertical;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: var(--yellow);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.success {
    color: green;
    font-weight: 700;
    margin-bottom: 15px;
}

.error {
    color: red;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer {
    background: #111;
    color: white;
    padding: 56px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, .9fr) minmax(220px, .9fr);
    gap: 28px;
    align-items: start;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 800;
}

.footer-logo span {
    color: var(--yellow);
}

.footer p {
    color: #bbb;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 10px;
}

.footer-contact h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-contact a,
.footer-contact span,
.footer-links a {
    color: #ddd;
    line-height: 1.5;
    text-decoration: none;
}

@media(max-width:768px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

}
