.lp-contact {
    padding: 80px 0;
    background: #f8f9fa;
}
.lp-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    margin-top: 48px;
}
.lp-contact-form {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lp-form-group {
    margin-bottom: 20px;
}
.lp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
    font-size: 0.95rem;
}
.lp-required {
    color: #ff3b30;
}
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    outline: none;
    border-color: #7c5cff;
    box-shadow: 0 0 0 3px rgba(124,92,255,0.1);
}
.lp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.lp-form-privacy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.lp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.lp-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.lp-form-privacy a {
    color: #7c5cff;
    font-size: 0.9rem;
}
.lp-form-submit {
    margin-top: 24px;
}
.lp-form-submit .lp-btn {
    transition: all 0.2s;
}
.lp-form-submit .lp-btn:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.lp-form-submit .lp-btn:disabled:hover {
    background: #ccc;
    transform: none;
}
.lp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lp-contact-note {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lp-contact-note h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}
.lp-contact-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-contact-note li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}
.lp-contact-note li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7c5cff;
}
.lp-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lp-contact-links a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.lp-contact-links a:hover {
    color: #7c5cff;
}
.lp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.lp-modal.open {
    display: flex;
}
.lp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}
.lp-modal-content {
    position: relative;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.4s ease;
}
.lp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}
.lp-modal-close:hover {
    color: #333;
}
.lp-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7c5cff 0%, #af8aff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #fff;
}
.lp-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}
.lp-modal-text {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}
.lp-modal-btn {
    min-width: 120px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .lp-contact {
        padding: 60px 0;
    }
    .lp-contact-wrapper {
        grid-template-columns: 1fr;
    }
    .lp-form-row {
        grid-template-columns: 1fr;
    }
}