
/* CVG Nexus Client-Focused CSS */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    line-height: 1.6;
    color: #333;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

.header { 
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%); 
    color: white; 
    padding: 1rem 0; 
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo { height: 45px; width: auto; }

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link { 
    color: white; 
    text-decoration: none; 
    font-weight: 500; 
    padding: 0.5rem 1rem; 
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover { 
    background: rgba(255,255,255,0.1); 
}

.btn { 
    display: inline-block; 
    padding: 1rem 2rem; 
    background: #f97316; 
    color: white; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover { 
    background: #ea580c; 
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary {
    background: #f97316;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-secondary:hover {
    background: #f97316;
    color: white;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.btn-contact, .btn-footer {
    background: #f97316;
}

.hero { 
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); 
    color: white; 
    padding: 6rem 0; 
    text-align: center; 
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.value-metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 3rem;
}

.client-benefits {
    background: white;
    padding: 5rem 0;
}

.client-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #f97316;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

.success-stories {
    background: #f8fafc;
    padding: 5rem 0;
}

.success-stories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.success-stories p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.story-outcome {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1rem;
}

.story-description {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer { 
    background: linear-gradient(135deg, #111827 0%, #000000 100%); 
    color: white; 
    padding: 3rem 0 1rem; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive design */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .header .container { flex-direction: column; text-align: center; }
    .main-nav { flex-direction: column; gap: 0.5rem; }
    .hero { padding: 4rem 0; }
    .hero-title { font-size: 2.5rem; }
    .value-metrics { flex-direction: column; gap: 1.5rem; }
    .benefits-grid, .stories-grid { grid-template-columns: 1fr; }
}
