* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: #6366f1;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #1a1a2e;
}

.btn-outline:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.btn-white {
    background: #fff;
    color: #1a1a2e;
}

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
}

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero-text > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatars {
    display: flex;
}

.client-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.client-avatars img:first-child {
    margin-left: 0;
}

.client-text {
    display: flex;
    flex-direction: column;
}

.client-count {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.client-label {
    font-size: 0.85rem;
    color: #64748b;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-box {
    width: 400px;
    height: 350px;
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.shape {
    position: absolute;
}

.shape-purple {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.8);
    border-radius: 20px;
    top: 50%;
    left: 30%;
    transform: translateY(-50%) rotate(-15deg);
}

.shape-green {
    width: 150px;
    height: 150px;
    background: #10b981;
    border-radius: 20px;
    bottom: 40px;
    right: 40px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.innovation-section {
    padding: 100px 0;
    background: #fff;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innovation-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.innovation-shape {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    transform: rotate(45deg);
}

.innovation-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.innovation-text > p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
}

.innovation-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

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

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e0e7ff;
    color: #6366f1;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.solutions-section {
    padding: 100px 0;
    background: #f8fafc;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #64748b;
}

.tab-btn.active, .tab-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.solution-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.solution-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.solution-icon.purple {
    background: #e9d5ff;
    color: #8b5cf6;
}

.solution-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.solution-icon.orange {
    background: #fed7aa;
    color: #f97316;
}

.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.solution-card p {
    font-size: 0.9rem;
    color: #64748b;
}

.layout-section {
    padding: 100px 0;
    background: #fff;
}

.layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.layout-card {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s;
}

.layout-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.layout-icon {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.layout-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.layout-card p {
    font-size: 0.9rem;
    color: #64748b;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.case-studies-section {
    padding: 100px 0;
    background: #fff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.case-image {
    height: 200px;
}

.case-image.blue-gradient {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.case-image.green-gradient {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.case-content {
    padding: 25px;
}

.case-category {
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0;
    color: #1a1a2e;
}

.case-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.case-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.case-link:hover {
    gap: 12px;
}

.sectors-section {
    padding: 100px 0;
    background: #f8fafc;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s;
}

.sector-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.sector-icon {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.sector-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.sector-card p {
    font-size: 0.85rem;
    color: #64748b;
}

.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-card > p {
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #64748b;
}

.careers-section {
    padding: 100px 0;
    background: #f8fafc;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.careers-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0;
    color: #1a1a2e;
}

.careers-text > p {
    color: #64748b;
    margin-bottom: 30px;
}

.careers-stats {
    display: flex;
    gap: 40px;
}

.career-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    display: block;
}

.career-stat .stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.job-card:hover {
    border-color: #6366f1;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
}

.job-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.job-location {
    font-size: 0.85rem;
    color: #64748b;
}

.job-location i {
    margin-right: 5px;
}

.job-type {
    background: #e0e7ff;
    color: #6366f1;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-listings .btn {
    margin-top: 10px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.cta-content {
    text-align: center;
    color: #fff;
}

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

.cta-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.cta-stat .stat-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: #1e1b4b;
    padding: 60px 0 0;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-brand > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #6366f1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-clients {
        justify-content: center;
    }

    .hero-graphic {
        order: -1;
    }

    .graphic-box {
        width: 300px;
        height: 250px;
    }

    .innovation-content {
        grid-template-columns: 1fr;
    }

    .solutions-grid,
    .layout-grid,
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sectors-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .innovation-stats,
    .careers-stats {
        flex-direction: column;
        gap: 20px;
    }
}