@import url("https://fonts.googleapis.com/css2?family=Spline+Sans:wght@400;600&family=Unbounded:wght@600&display=swap");

:root {
    --bg: #f7f3ea;
    --bg-deep: #efe4d5;
    --ink: #1b1b1b;
    --muted: #5a5a5a;
    --accent: #0f7c7f;
    --accent-dark: #0a5a5c;
    --card: #ffffff;
    --stroke: rgba(15, 124, 127, 0.15);
    --shadow: 0 24px 60px rgba(10, 20, 30, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Spline Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, var(--bg), var(--bg-deep));
    min-height: 100vh;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.hero {
    margin-bottom: 32px;
}

.eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 10px;
}

h1 {
    font-family: "Unbounded", "Spline Sans", sans-serif;
    font-size: clamp(32px, 5vw, 46px);
    margin: 0 0 12px;
}

.subline {
    margin: 0;
    color: var(--muted);
    max-width: 620px;
}

.wanted-section {
    margin: 20px 0 32px;
}

.wanted-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wanted-card {
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wanted-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(10, 20, 30, 0.12);
}

.wanted-card:focus-visible {
    outline: 3px solid rgba(15, 124, 127, 0.35);
    outline-offset: 2px;
}

.wanted-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.wanted-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.category-section {
    margin-bottom: 32px;
}

.section-title {
    margin: 0 0 16px;
    font-size: 24px;
}

.grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 28px;
}

.card {
    background: var(--card);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--stroke);
}

.form-card {
    padding: 28px 28px 24px;
}

.category-card {
    padding: 28px;
}

.info-card {
    padding: 28px;
    background: linear-gradient(160deg, #fff, #f4f7f7);
}

.info-card h2 {
    margin-top: 0;
    font-size: 22px;
}

.info-card ol {
    padding-left: 20px;
    color: var(--muted);
    margin: 16px 0 20px;
}

.trust {
    border-top: 1px dashed var(--stroke);
    padding-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

.trust strong {
    color: var(--ink);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.category-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.category-item {
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 12px;
    background: #f5faf9;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-item:hover {
    transform: translateY(-1px);
}

.category-item.is-active {
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(15, 124, 127, 0.18);
    background: #e4f6f5;
}

.hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.category-fields {
    display: none;
}

.category-fields.is-active {
    display: block;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    font-size: 14px;
    font-weight: 600;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: 15px;
}

input,
select,
textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    background: #fbfbfb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 124, 127, 0.18);
}

textarea {
    resize: vertical;
}

.price-box {
    padding: 16px;
    border-radius: 16px;
    background: #f4f9f9;
    border: 1px solid rgba(15, 124, 127, 0.12);
    margin: 8px 0 18px;
}

#pricePreview {
    font-weight: 600;
    margin: 0 0 6px;
}

.price-range {
    margin: 0;
    color: var(--muted);
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #16a1a4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(15, 124, 127, 0.25);
}

.privacy {
    font-size: 12px;
    color: #666;
    margin-top: 14px;
}

.hidden {
    display: none;
}

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

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

    .category-menu {
        grid-template-columns: 1fr;
    }

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