.ct-hero {
    background: linear-gradient(135deg, var(--c-dark1), var(--c-dark2));
    color: #fff; padding: 7vh 0 6vh 0; border-bottom: 3px solid var(--c-accent);
}
.ct-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 22px; }
.ct-hero .eyebrow {
    display: block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--c-accent); margin-bottom: 10px;
}
.ct-hero h1 {
    font-family: var(--font-head); font-size: clamp(28px, 4.4vw, 46px); font-weight: 800;
    line-height: 1.08; margin: 0 0 14px 0;
}
.ct-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.6; margin: 0; }

.ct-body { padding: 6vh 0 8vh 0; }
.ct-grid {
    width: min(1040px, 92vw); margin: 0 auto;
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start;
}
@media (max-width: 800px) { .ct-grid { grid-template-columns: 1fr; gap: 28px; } }

.ct-info h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--c-text-dark); margin: 0 0 16px 0; }
.ct-line {
    display: flex; align-items: center; gap: 11px; padding: 9px 0;
    font-size: 1.02rem; font-weight: 500; color: var(--c-text-dark); text-decoration: none;
    transition: color 180ms var(--ease);
}
.ct-line:hover { color: var(--c-accent); }
.ct-line svg { width: 18px; height: 18px; flex: none; color: var(--c-accent); }
.ct-note { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--c-light2); }
.ct-note h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--c-text-dark); margin: 0 0 6px 0; }
.ct-note p { color: var(--c-text-muted); font-size: 0.98rem; line-height: 1.55; margin: 0; }
.ct-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.ct-badges span {
    font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4px;
    text-transform: uppercase; color: var(--c-text-muted); background: var(--c-light2);
    border-radius: 999px; padding: 6px 12px;
}

.ct-form {
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md);
    box-shadow: var(--std-shadow); padding: 30px clamp(20px, 3vw, 36px);
}
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .ct-row { grid-template-columns: 1fr; gap: 0; } }
.ct-field { margin-bottom: 18px; }
.ct-field label {
    display: block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 7px;
}
.ct-field label .opt { text-transform: none; font-weight: 400; letter-spacing: 0; color: var(--c-border); }
.ct-field input, .ct-field textarea {
    box-sizing: border-box; width: 100%; padding: 12px 14px; font-size: 1rem;
    font-family: var(--font-body); color: var(--c-text-dark);
    background: #fbfcfd; border: 1px solid var(--c-border); border-radius: var(--radius-sm); outline: none;
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.ct-field input:focus, .ct-field textarea:focus {
    border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 3px rgba(200,134,43,0.18);
}
.ct-field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.ct-form button { width: 100%; margin-top: 6px; }
.ct-status { min-height: 1.2em; margin: 14px 0 0 0; text-align: center; font-size: 0.95rem; letter-spacing: 0.2px; }
.ct-status.--pending { color: var(--c-text-muted); }
.ct-status.--ok { color: #1f8a4c; font-weight: 600; }
.ct-status.--err { color: #c0392b; font-weight: 600; }
