:root {
    --primary-gradient: linear-gradient(95.61deg, #0072F8 0%, #837FFF 100%);
    --bg-color: #ffffff;
    --bg-light: #F8F9FE;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

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

.text-center {
    text-align: center;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-gradient {
    background: linear-gradient(135deg,
            lab(49.0567% 14.5137 -76.1815),
            lab(59.8249% 33.7088 -77.0198));
}

body {
    background: radial-gradient(at 20% 10%, lab(49.0567% 14.5137 -76.1815/.1) 0, transparent 50%), radial-gradient(at 80% 30%, lab(61.7522% 60.0549 -50.8056/.08) 0, transparent 50%), radial-gradient(at 40% 90%, lab(69.4066% -58.9907 -17.4539/.08) 0, transparent 50%);
}

/* Typography */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    /* padding: 20px 0; */
    /* border-bottom: 1px solid var(--border-color); */
    /* background: white; */
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text {
    color: #111;
}

.logo-highlight {
    color: #64748B;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(0, 114, 248, 0.25);
}

.btn-dark {
    background: #0F172A;
    color: white;
}

.btn-app {
    background: #000000;
    color: white;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    border: 1px solid #333;
}

.btn-app:hover {
    opacity: 0.8;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.button-group {
    /* display: flex;
    gap: 16px;
    flex-wrap: wrap; */
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    /* overflow: hidden; */
}

.hero-img-gradient {
    background: linear-gradient(135deg, lab(49.0567% 14.5137 -76.1815), lab(59.8249% 33.7088 -77.0198));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(131, 127, 255, 0.25) 0%, rgba(0, 114, 248, 0.15) 35%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    /* font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px; */
}

.hero-subtitle {
    /* font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px; */
}

.bg-btn-gradient {
    background: linear-gradient(135deg, lab(49.0567% 14.5137 -76.1815), lab(59.8249% 33.7088 -77.0198));
    color: white;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, lab(49.0567% 14.5137 -76.1815), lab(59.8249% 33.7088 -77.0198));
    color: white;
}

.bg-gradient-white {
    background: linear-gradient(177deg, #ffffff00 42%, #ffffffd4 71%);
}

.bg-gradient-cta {
    background: radial-gradient(at 20% 10%, lab(49.0567% 14.5137 -76.1815/.1) 0, transparent 50%),
        radial-gradient(at 80% 30%, lab(61.7522% 60.0549 -50.8056/.08) 0, transparent 50%),
        radial-gradient(at 40% 90%, lab(69.4066% -58.9907 -17.4539/.08) 0, transparent 50%);
}

.animate-float {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(4px);
    }
}

.animate-float-two {
    animation: floatingtwo 4s ease-in-out infinite;
}

@keyframes floatingtwo {

    0%,
    100% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Features Grid */
.feature-section {
    /* padding: 100px 0; */
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.grid-2-col.reversed .feature-content {
    order: 2;
}

.grid-2-col.reversed .feature-image {
    order: 1;
}

.placeholder-box {
    /* width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 20px;
    border: 1px dashed #CBD5E1; */
}

.feature-list-detailed {
    /* display: flex;
    flex-direction: column;
    gap: 24px; */
}

.feature-item {
    /* display: flex;
    gap: 16px; */
}

.feature-icon {
    /* width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid var(--border-color); */
}

.feature-item h4 {
    /* font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px; */
}

.feature-item p {
    /* font-size: 15px;
    color: var(--text-muted); */
}

/* Stats Section */
.stats-section {
    /* padding: 100px 0; */
}

.stats-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; */
}

.stat-card {
    /* background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color); */
}

.stat-card h3 {
    /* font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.stat-card p {
    /* font-size: 16px;
    color: var(--text-muted);
    font-weight: 500; */
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-main);
}

@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-2-col.reversed .feature-content,
    .grid-2-col.reversed .feature-image {
        order: unset;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .hide-mobile {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-section .hero-title {
        font-size: 36px !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}