/**
 * Code-Check Pro Public Styles
 */

/* Container */
.ccp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Landing Page */
.ccp-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Hero Section */
.ccp-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.ccp-headline {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.ccp-subheadline {
    font-size: 24px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ccp-hero-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.ccp-benefits {
    padding: 80px 20px;
    background: #f8f9fa;
}

.ccp-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d3748;
}

.ccp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ccp-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.ccp-benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.ccp-benefit-card h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #2d3748;
}

.ccp-benefit-card p {
    color: #718096;
    line-height: 1.6;
}

/* How It Works */
.ccp-how-it-works {
    padding: 80px 20px;
}

.ccp-how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d3748;
}

.ccp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ccp-step {
    text-align: center;
}

.ccp-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.ccp-step h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #2d3748;
}

.ccp-step p {
    color: #718096;
    line-height: 1.6;
}

/* Pricing Section */
.ccp-pricing-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.ccp-pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d3748;
}

.ccp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ccp-pricing-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.ccp-pricing-featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.ccp-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.ccp-pricing-card h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #2d3748;
}

.ccp-price {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 30px;
}

.ccp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ccp-features li {
    padding: 10px 0;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}

.ccp-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.ccp-cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.ccp-cta-final h2 {
    font-size: 42px;
    margin: 0 0 20px 0;
}

.ccp-cta-final p {
    font-size: 20px;
    margin: 0 0 40px 0;
}

.ccp-final-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Forms */
.ccp-lead-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.ccp-form-group {
    margin-bottom: 20px;
}

.ccp-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.ccp-input:focus {
    outline: none;
    border-color: #667eea;
}

.ccp-button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.ccp-button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.ccp-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ccp-button-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.ccp-button-secondary:hover {
    background: #667eea;
    color: white;
}

.ccp-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.ccp-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ccp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .ccp-headline {
        font-size: 32px;
    }
    
    .ccp-subheadline {
        font-size: 18px;
    }
    
    .ccp-benefits h2,
    .ccp-how-it-works h2,
    .ccp-pricing h2 {
        font-size: 28px;
    }
    
    .ccp-pricing-featured {
        transform: scale(1);
    }
}

