.consult { padding: 16px 0 0; }

.consult-head { margin-bottom: 36px; }
.consult-head h1 {
    font-size: clamp(28px, 4.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 10px 0 10px;
}
.consult-head p { font-size: 16px; color: var(--text2); max-width: 620px; line-height: 1.7; }

.consult-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: start;
}

/* Left column */
.info-block { margin-bottom: 30px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-list li {
    font-size: 14px; color: var(--text2); line-height: 1.55;
    position: relative; padding-left: 20px;
}
.info-list li::before {
    content: '→'; color: var(--accent);
    font-family: var(--mono); font-size: 12px;
    position: absolute; left: 0; top: 2px;
}
.info-list strong { color: var(--text); font-weight: 600; }

.steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 14px; }
.steps li {
    counter-increment: step;
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px; color: var(--text2); line-height: 1.55;
}
.steps li::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--mono); font-size: 11px; color: var(--accent);
    border: 1px solid var(--border); border-radius: 6px;
    padding: 2px 6px; flex-shrink: 0; margin-top: 2px;
    background: var(--bg2);
}
.steps strong { color: var(--text); font-weight: 600; }

.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* Form */
.form-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: var(--shadow);
}
.form-card-title {
    font-family: var(--mono); font-size: 12px; color: var(--text2);
    margin-bottom: 20px;
}
.form-card-title::before { content: '$ '; color: var(--accent); }

.field { margin-bottom: 16px; }
.field label {
    display: block; font-size: 13px; font-weight: 600;
    margin-bottom: 6px; color: var(--text);
}
.field label .opt { font-weight: 400; color: var(--text2); font-size: 12px; }
.field input, .field select, .field textarea {
    width: 100%;
    font-family: var(--sans); font-size: 14px;
    color: var(--text); background: var(--bg);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 12px;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none; -webkit-appearance: none;
}
.field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--text2) 50%), linear-gradient(135deg, var(--text2) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px; background-repeat: no-repeat;
    padding-right: 34px;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--accent); }
.field-error { font-size: 12px; color: var(--accent); margin-top: 5px; }
.field-hint  { font-size: 12px; color: var(--text2); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--text2); }

/* Thanks */
.thanks {
    padding: 40px 0 0;
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    max-width: 560px;
}
.thanks .check {
    width: 52px; height: 52px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(42, 122, 75, 0.12); color: var(--green);
}
.thanks .check svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thanks h1 { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.thanks p { font-size: 15px; color: var(--text2); line-height: 1.7; }
.thanks .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

@media (max-width: 760px) {
    .consult-grid { grid-template-columns: 1fr; gap: 28px; }
    .field-row { grid-template-columns: 1fr; }
    .form-card { padding: 20px 16px; }
}
