* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    font-family: Georgia, serif;
}

.menu-icon {
    cursor: pointer;
    color: #ffffff;
}

.menu-icon svg {
    stroke: #ffffff;
}

/* Main Content */
.main-content {
    padding-top: 60px;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
}

.main-title {
    font-size: 72px;
    font-weight: 400;
    color: #ffffff;
    font-family: Georgia, serif;
    margin-bottom: 40px;
    line-height: 1.2;
}

.mission-text {
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-prompt {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }

    .mission-text {
        font-size: 18px;
    }

    .contact-prompt {
        font-size: 14px;
    }

    .header {
        padding: 0 20px;
    }

    .content-wrapper {
        padding: 40px 20px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 14px 35px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 32px;
    }

    .mission-text {
        font-size: 14px;
    }
    
    .contact-prompt {
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .header {
        padding: 0 15px;
        height: 55px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    opacity: 0.7;
}

.form-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    font-family: Georgia, serif;
    margin-bottom: 30px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.hidden {
    display: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.required-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    color: #000;
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10L6 9z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

.privacy-link {
    color: #0066cc;
    text-decoration: underline;
}

.privacy-link:hover {
    text-decoration: none;
}

.submit-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Form */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
        max-height: 95vh;
    }

    .form-title {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        font-size: 16px; /* Предотвращает автозум на iOS */
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal-content {
        padding: 20px 15px;
        max-width: 95%;
        max-height: 95vh;
    }

    .close-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        padding: 10px;
        font-size: 16px;
    }
    
    .submit-btn {
        font-size: 15px;
        padding: 13px 30px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}

/* Success Modal Styles */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.success-modal-overlay.active {
    display: flex;
}

.success-modal-content {
    background-color: #ffffff;
    border-radius: 0;
    padding: 40px 50px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.success-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #999;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.success-close-btn:hover {
    background-color: #777;
}

.success-modal-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-forbes-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    font-family: Georgia, serif;
    margin: 0;
}

.success-connect-title {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.success-modal-body {
    margin-bottom: 30px;
}

.success-main-text {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.success-email-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 8px;
}

.success-email-address {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    word-break: break-all;
}


/* Responsive Success Modal */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 30px 25px;
        max-width: 90%;
    }

    .success-main-text {
        font-size: 24px;
    }

    .success-forbes-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .success-modal-content {
        padding: 25px 20px;
        max-width: 95%;
    }

    .success-main-text {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .success-forbes-title {
        font-size: 20px;
    }

    .success-connect-title {
        font-size: 12px;
    }

    .success-email-text,
    .success-email-address {
        font-size: 14px;
    }
    
    .success-modal-header {
        margin-bottom: 20px;
    }
    
    .success-close-btn {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
    }
}
