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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8B5FBD, #A855F7);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 95, 189, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B5FBD;
    border: 2px solid #8B5FBD;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #8B5FBD;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.cookie-content h3 {
    color: #3B1E54;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.cube-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5FBD, #A855F7);
    border-radius: 8px;
    position: relative;
}

.cube-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #3B1E54;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B5FBD;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3B1E54, #8B5FBD);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text > p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-description {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-form input {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.hero-form input:focus {
    outline: none;
    border-color: #8B5FBD;
}

.hero-form input::placeholder {
    color: #9CA3AF;
}

.hero-form button {
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: white;
}

.solutions h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #3B1E54;
    margin-bottom: 60px;
}

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

.solution-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-icon.purple {
    background: linear-gradient(135deg, #8B5FBD, #A855F7);
}

.solution-icon.purple {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.icon-brain,
.icon-target,
.icon-education,
.icon-mobile {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3B1E54;
    margin-bottom: 15px;
}

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

/* Mission Section */
.mission {
    padding: 100px 0;
    background: #3B1E54;
    color: white;
}

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

.mission-image {
    position: relative;
}

.laptop-mockup {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1F2937, #374151);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.laptop-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 40px;
    background: linear-gradient(135deg, #8B5FBD, #A855F7);
    border-radius: 12px;
}

.mission-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.mission-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #F9FAFB;
    text-align: center;
}

.partners-text {
    max-width: 800px;
    margin: 0 auto 50px;
}

.partners-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
}

/* News Section */
.news {
    padding: 100px 0;
    background: #3B1E54;
    color: white;
}

.news h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.news-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-robot {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    position: relative;
}

.ai-robot.purple {
    background: linear-gradient(135deg, #8B5FBD, #A855F7);
}

.ai-robot.purple {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.ai-robot.green {
    background: linear-gradient(135deg, #10B981, #047857);
}

.ai-robot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 6px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1F1F2E;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5FBD;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.thank-content {
    text-align: center;
    max-width: 600px;
}

.thank-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #3B1E54;
    margin-bottom: 40px;
    line-height: 1.2;
}

.footer-minimal {
    background: #3B1E54;
    color: white;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-text {
        order: -1;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-form {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .solutions h2 {
        font-size: 28px;
    }
    
    .mission-text h2 {
        font-size: 26px;
    }
    
    .news h2 {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .thank-content h1 {
        font-size: 36px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-consent {
        bottom: 10px;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-form {
        padding: 25px;
    }
    
    .solutions {
        padding: 60px 0;
    }
    
    .mission {
        padding: 60px 0;
    }
    
    .news {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .news-card {
        padding: 30px 20px;
    }
    
    .thank-content h1 {
        font-size: 28px;
    }
}