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

:root {
    --primary-blue: #0058E4;
    --secondary-blue: #02A8FE;
    --dark-bg: #000000;
    --dark-purple: #1a0033;
    --dark-blue: #001a33;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    line-height: 1.6;
}

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

/* Floating Navigation */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 300px);
    max-width: 1280px;
}

.nav-container {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-box {
    width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 24px;
    height: 24px;
}

.logo-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

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

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: white;
}

.nav-cta {
    background: white;
    color: black;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 15px;
}

.nav-cta:hover {
    background: #f3f4f6;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 128px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-bg) 50%, var(--dark-blue) 100%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.2;
}

.glow-1 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: var(--primary-blue);
}

.glow-2 {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: var(--secondary-blue);
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 64px;
    margin-top: 100px;
}

.hero-title {
    font-size: 90px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.hero-gradient {
    display: block;
    font-size: 40px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right {
    padding-top: 32px;
}

.hero-description {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Dashboard Preview */
.dashboard-preview {
    margin-top: 80px;
}
.dashboard-preview .img1 img{
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}
.dashboard-preview .img2 img{
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}
.dashboard-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dashboard-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 88, 228, 0.1), rgba(2, 168, 254, 0.1));
}

.dashboard-content {
    position: relative;
    padding: 32px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.dashboard-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 8px;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: background 0.3s ease;
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 8px;
    margin-bottom: 16px;
}

.mini-card-icon.icon-alt {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.mini-card-title {
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 75%;
    margin-bottom: 8px;
}

.mini-card-text {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 100%;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.section-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 384px;
    height: 384px;
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.1;
}

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

.section-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #9ca3af;
    max-width: 768px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: white;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--dark-bg), #0a0a0a);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(0, 88, 228, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--dark-bg);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 24px;
    padding: 64px;
    overflow: hidden;
    max-width: 1024px;
    margin: 0 auto;
}

.cta-decoration {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-decoration-1 {
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    transform: translate(128px, -128px);
}

.cta-decoration-2 {
    bottom: 0;
    left: 0;
    width: 192px;
    height: 192px;
    transform: translate(-96px, 96px);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 768px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
}
.footer a{
    color: #6b7280;
    text-decoration: none;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #6b7280;
}

.footer-contact svg {
    color: var(--secondary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar{
        width: calc(100% - 100px);
    }
    .hero-title {
        font-size: 72px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .cta-title {
        font-size: 48px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 16px;
        width: calc(100% - 32px);
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-right {
        padding-top: 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.dashboard-preview,
.service-card,
.feature-item {
    animation: fadeInUp 0.8s ease-out;
}



.campaignity {
    margin-top: 200px;
    padding: 100px 0;
    /* background: linear-gradient(to bottom, #000000, #050b1a); */
}

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

.campaignity-description {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.campaignity-list {
    list-style: none;
    margin-bottom: 32px;
}

.campaignity-list li {
    margin-bottom: 12px;
    color: #9ca3af;
}

.campaignity-card {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,88,228,0.25), rgba(2,168,254,0.25));
    border: 1px solid rgba(255,255,255,0.1);
}
.campaignity-card img{
    height: 100%;
    width: 100%;
    border-radius: 16px;
}
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    font-size: 13px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .campaignity-grid {
        grid-template-columns: 100%;
        margin-bottom: 30px;
    }
}