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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 32px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-button {
    background: #2563eb;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta i {
    margin-right: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

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

/* Client Overview */
.client-overview {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.client-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.client-title {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
}

.social-links i {
    font-size: 1.5rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: #2563eb;
}

/* Problem Section */
.problem-section {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.problem-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.section-icon i {
    font-size: 2rem;
    color: #ef4444;
}

.problem-section h2 {
    font-size: 2rem;
    color: #7f1d1d;
    margin-bottom: 32px;
}

.problem-main {
    font-size: 1.25rem;
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 32px;
}

.problem-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.problem-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #7f1d1d;
}

.problem-list i {
    margin-right: 16px;
    color: #ef4444;
    width: 20px;
}

/* Solution Section */
.solution-section {
    background: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.solution-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.card-icon .custom-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(87%);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.solution-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Role Section */
.role-section {
    background: #f1f5f9;
}

.role-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 48px;
}

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

.role-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.role-item:hover {
    transform: translateX(8px);
    border-color: #2563eb;
}

.role-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 16px;
    width: 24px;
}

.role-item span {
    font-weight: 500;
    color: #1e293b;
}

/* Process Section */
.process-section {
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Results Section */
.results-section {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #d1fae5;
    transition: all 0.3s ease;
}

.result-card.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.result-card:not(.highlight) .result-icon {
    background: #d1fae5;
}

.result-card.highlight .result-icon {
    background: rgba(255, 255, 255, 0.2);
}

.result-icon i {
    font-size: 1.5rem;
}

.result-card:not(.highlight) .result-icon i {
    color: #10b981;
}

.result-card.highlight .result-icon i {
    color: white;
}

.result-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.result-card:not(.highlight) h3 {
    color: #065f46;
}

.result-card p {
    line-height: 1.6;
}

.result-card:not(.highlight) p {
    color: #047857;
}

/* Tools Section */
.tools-section {
    background: #f8fafc;
}

.tools-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 48px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.tool-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary i, .btn-secondary i {
    margin-right: 8px;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.footer-logo i {
    margin-right: 8px;
    color: #60a5fa;
}

.footer-left p {
    color: #94a3b8;
    margin-top: 8px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.social-icons a.x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a.x-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(8%) saturate(1644%) hue-rotate(185deg) brightness(92%) contrast(89%);
    transition: filter 0.3s ease;
}

.social-icons a.x-icon:hover img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        max-width: 280px;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .solution-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .role-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}