/* Get Started Page Styles */

.get-started-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    padding-top: 80px;
}

/* Hero Section */
.get-started-hero {
    text-align: center;
    padding: 60px 20px 40px;
    color: white;
}

.get-started-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    color: #67e8f9;
}

.get-started-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff 0%, #67e8f9 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    background: #f7fafc;
    padding: 80px 20px;
    min-height: 600px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Benefits List */
.form-benefits h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefits-list li svg {
    flex-shrink: 0;
    color: #06b6d4;
    margin-top: 2px;
}

.benefits-list li strong {
    display: block;
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefits-list li p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Form Wrapper */
.form-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 48px;
    position: relative;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.form-intro {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.required {
    color: #e53e3e;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #cbd5e0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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 1.5L6 6.5L11 1.5' stroke='%232d3748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* Error Messages */
.error-message {
    display: block;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 6px;
    min-height: 20px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #e53e3e;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Form Actions */
.form-actions {
    margin-top: 32px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3), 0 6px 24px rgba(6, 182, 212, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-privacy {
    text-align: center;
    color: #718096;
    font-size: 0.875rem;
    margin-top: 24px;
    line-height: 1.5;
}

.form-privacy .privacy-link {
    color: #06b6d4;
    text-decoration: none;
}

.form-privacy .privacy-link:hover {
    text-decoration: underline;
}

.form-privacy .privacy-link:visited {
    color: #06b6d4;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-message svg {
    color: #48bb78;
    margin-bottom: 24px;
}

.success-message h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.success-message p {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-return {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-return:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

.btn-return:visited,
.btn-return:active,
.btn-return:focus {
    color: white;
    text-decoration: none;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 48px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.trust-stat {
    padding: 32px 20px;
}

.trust-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-stat .stat-label {
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-benefits {
        order: 2;
    }

    .form-wrapper {
        order: 1;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .get-started-hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-section {
        padding: 60px 20px;
    }

    .form-benefits h2 {
        font-size: 1.75rem;
    }

    .contact-form h2 {
        font-size: 1.75rem;
    }

    .trust-section h2 {
        font-size: 2rem;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .trust-stat .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .get-started-hero {
        padding: 40px 20px 30px;
    }

    .get-started-hero h1 {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-wrapper {
        padding: 24px 20px;
    }

    .benefits-list li {
        padding: 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Loading State */
.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
