/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Progress Steps */
.progress-container {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.step.completed {
    opacity: 1;
}

.step.active {
    opacity: 1;
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step.completed .step-number {
    background: #4caf50;
    color: white;
    border-color: #45a049;
}

.step.active .step-number {
    background: #1a73e8;
    color: white;
    border-color: #1557b0;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.content-section {
    padding: 3rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Action Area */
.action-area {
    text-align: center;
}

.primary-button {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
    min-width: 250px;
    justify-content: center;
}

.primary-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(26, 115, 232, 0.4);
}

.primary-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button-icon {
    font-size: 1.3rem;
}

.button-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.button-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Loading Section */
.loading-content {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1a73e8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.loading-content p {
    color: #666;
    margin-bottom: 2rem;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.step-icon {
    font-size: 1.2rem;
}

/* Success Section */
.success-content {
    text-align: center;
}

.success-header {
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.success-header h2 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.success-header p {
    color: #666;
    font-size: 1.1rem;
}

.business-assets {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.business-assets h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.asset-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.asset-item label {
    display: block;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.asset-value {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    display: block;
    word-break: break-all;
}

.next-steps {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.next-steps ul {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin: 0.5rem 0;
    color: #1976d2;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: #666;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.secondary-button:hover {
    background: #555;
}

/* Error Section */
.error-content {
    text-align: center;
}

.error-header {
    margin-bottom: 2rem;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.error-header h2 {
    color: #f44336;
    margin-bottom: 1rem;
}

.error-header p {
    color: #666;
    font-size: 1.1rem;
}

.error-details {
    background: #ffebee;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.error-text {
    color: #c62828;
    font-weight: 500;
    margin: 0;
    white-space: pre-line;
}

.error-help {
    background: #fff3e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.error-help h3 {
    color: #ef6c00;
    margin-bottom: 1rem;
}

.error-help ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-help li {
    margin: 0.5rem 0;
    color: #ef6c00;
}

/* Status Section */
.status-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.status-content {
    padding: 1.5rem;
}

.status-message {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.status-message.success {
    color: #4caf50;
}

.status-message.error {
    color: #f44336;
}

/* Footer */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
    }
    
    .asset-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .button-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 

