/* PAGE */
.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 56px 100px;
}

.page-header {
    margin-bottom: 72px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 22px;
}
.breadcrumb span {
    color: var(--accent);
}
.breadcrumb::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}
.page-header h1 {
    font-family: var(--ff-display);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 600px;
}
.page-header h1 em {
    font-style: italic;
    color: var(--accent);
}
.page-header p {
    font-size: 18px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.contact-grid > * {
    min-width: 0;
}

/* LEFT */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}
.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        box-shadow var(--t),
        transform var(--t);
    text-decoration: none;
}
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cc-body {
    flex: 1;
}
.cc-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 4px;
}
.cc-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}
.cc-value {
    font-size: 14px;
    color: var(--accent);
    font-weight: 300;
}
.cc-sub {
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 300;
}
.cc-arrow {
    color: var(--ink-faint);
    font-size: 18px;
    align-self: center;
}

.expect-block {
    background: var(--surface-warm);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
.expect-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.expect-label::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}
.expect-step {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
}
.expect-step:last-child {
    padding-bottom: 0;
}
.step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    flex-shrink: 0;
}
.step-connector {
    flex: 1;
    width: 1px;
    background: rgba(200, 64, 10, 0.2);
    margin: 4px 0;
    min-height: 12px;
}
.expect-step:last-child .step-connector {
    display: none;
}
.step-body {
    padding-top: 4px;
}
.step-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 3px;
}
.step-desc {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.5;
}

.social-row {
    display: flex;
    gap: 10px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-muted);
    border: 1px solid var(--border-strong);
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    background: white;
    transition:
        color var(--t),
        border-color var(--t),
        background var(--t);
}
.social-link:hover {
    color: var(--ink);
    border-color: var(--accent);
    background: var(--accent-light);
}
.social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* FORM */
.form-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
}
.form-title {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.form-subtitle {
    font-size: 15px;
    color: var(--ink-muted);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.6;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 7px;
}
.req {
    color: var(--accent);
    margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--ink);
    font-weight: 300;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition:
        border-color var(--t),
        box-shadow var(--t);
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--ink-faint);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 64, 10, 0.08);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    color: var(--ink-faint);
}
.form-select.filled {
    color: var(--ink);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    cursor: pointer;
    transition:
        border-color var(--t),
        background var(--t);
}
.cb-item:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}
.cb-item.checked {
    border-color: var(--accent);
    background: var(--accent-light);
}
.cb-item input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}
.cb-item span {
    font-size: 13px;
    color: var(--ink-muted);
    cursor: pointer;
}
.form-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0 24px;
}
.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background var(--t),
        transform var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
}
.form-note {
    font-size: 12px;
    color: var(--ink-faint);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}
.field-error {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(200, 64, 10, 0.1) !important;
}

/* SUCCESS */
.form-success {
    display: none;
    text-align: center;
    padding: 64px 24px;
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.success-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.success-title {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.success-desc {
    font-size: 15px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

/* PROOF */
.proof-strip {
    background: var(--ink);
    padding: 60px 56px;
}
.proof-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.proof-item {
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.proof-item:last-child {
    border-right: none;
}
.proof-num {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.proof-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

@media (max-width: 960px) {
    .page-wrapper {
        padding: 100px 24px 60px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    .form-panel {
        padding: 28px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
    }
    .btn-submit {
        font-size: 15px;
        padding: 14px 20px;
    }
    .proof-strip {
        padding: 40px 24px;
    }
    .proof-inner {
        grid-template-columns: 1fr 1fr;
    }
    .proof-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .page-header h1 {
        font-size: 36px;
    }
    .proof-num {
        font-size: 28px;
    }
}

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