﻿:root {
    --primary: #9333EA;
    --primary-light: #E879F9;
    --dark: #1E293B;
    --gray: #64748B;
    --light-gray: #F1F5F9;
    --white: #FFFFFF;
}



.container {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 80px 0;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    color: var(--gray);
}

.hero-btn {
    margin-top: 20px;
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

.highlight {
    color: var(--primary-light);
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Features Section */
.features {
    background-color: var(--light-gray);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Platforms Section */
.platforms {
    text-align: center;
}

.platform-icons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Products Section */
.products {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-image {
    flex: 1;
}

    .product-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.product-content {
    flex: 1;
}

    .product-content h2 {
        text-align: left;
    }

/* Analytics Section */
.analytics {
    background-color: var(--light-gray);
}

.analytics-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.analytics-content {
    flex: 1;
}

.analytics-image {
    flex: 1;
}

    .analytics-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero, .features-grid, .products, .analytics-container {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .platform-icons {
        gap: 15px;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
    }
}



.hero-title-color {
    margin-top: 14px;
    font-family: "Craftwor", sans-serif;
    font-size: 98px;
    font-style: normal;
    font-weight: 900;
    line-height: 108px;
    letter-spacing: -3.1px;
    background: var(--gradient, linear-gradient(84deg, #CA55F3 -2.71%, #FF53A5 31.8%, #FF763C 81.33%, #FFF859 104.15%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    color: #1F2A4B;
    font-family: "Craftwor", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.hero-subtitle {
    margin-top: 24px;
    color: #000;
    font-family: "Fixel", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.4px;
}
