.contact-hero { padding: 80px 32px 64px; background: var(--white); position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px); background-size: 28px 28px; opacity: 0.45; pointer-events: none; }
.contact-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none; }
.contact-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; color: var(--dark); margin: 0 0 16px; letter-spacing: -0.03em; }
.contact-hero p { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; margin: 0; max-width: 520px; }

.contact-body { padding: 72px 32px 96px; }
.contact-body-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: start; }

.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 0 0 28px; letter-spacing: -0.02em; }
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.contact-body label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.contact-body input,
.contact-body select,
.contact-body textarea {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: var(--font-sans); font-size: 0.9375rem; color: var(--text);
    background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
    outline: none; appearance: none;
}
.contact-body input:focus,
.contact-body select:focus,
.contact-body textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,91,220,0.12); }
.contact-body textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.contact-body select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.btn-submit {
    background: var(--primary); color: #fff; border: none;
    border-radius: 8px; padding: 14px 36px;
    font-family: var(--font-sans); font-size: 1rem; font-weight: 700;
    cursor: pointer; width: 100%; transition: background 0.15s, transform 0.1s;
    margin-top: 28px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-note { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-privacy { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-privacy a { color: var(--primary); }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.aside-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.aside-icon { width: 40px; height: 40px; border-radius: 8px; background: #eff6ff; border: 1px solid #c7d7fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aside-title { font-size: 1rem; font-weight: 700; color: var(--dark); }
.aside-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 14px; }
.aside-link { font-size: 0.9375rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: color 0.15s; }
.aside-link:hover { color: var(--primary-dark); }
.aside-card.dark-card { background: var(--dark); border-color: transparent; }
.aside-card.dark-card .aside-title { color: #fff; }
.aside-card.dark-card .aside-desc { color: rgba(255,255,255,0.55); }
.aside-card.dark-card .aside-link { color: rgba(65,105,225,0.9); }
.aside-card.dark-card .aside-icon { background: rgba(65,105,225,0.15); border-color: rgba(65,105,225,0.25); }

.response-row { display: flex; gap: 12px; margin-top: 8px; }
.response-item { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; text-align: center; }
.response-val { font-size: 1.25rem; font-weight: 700; color: var(--dark); letter-spacing: -0.02em; }
.response-lbl { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 960px) {
    .contact-body-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-hero h1 { font-size: 2.5rem; }
}
@media (max-width: 640px) {
    .contact-hero { padding: 56px 20px 48px; }
    .contact-body { padding: 48px 20px 64px; }
    .form-row-2 { grid-template-columns: 1fr; }
}
