:root {
    --primary-color: #4f46e5;
    --secondary-color: #7c3aed;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-primary: #111827;
    --text-secondary: #4b5563;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background: #f8fafc;
    overflow-x: hidden;
}

.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #4f46e5;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-landing {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-landing {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.btn-primary-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
}

.btn-secondary-landing {
    background: white;
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-secondary-landing:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.features {
    padding: 80px 20px;
    background: transparent;
    position: relative;
}

.container-landing {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 80px;
    text-align: center;
}

.stat-item h4 {
    font-size: 3rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-landing {
    background: #0f172a;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .cta-group {
        flex-direction: column;
    }
}

/* New Modern Footer Styles */
.footer-main {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-company-info .footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-company-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.btn-get-in-touch {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-get-in-touch:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link-item {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.footer-nav-col h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    background: #f8fafc;
    padding: 40px 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}