:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --dark: #0f172a;
    --slate: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.powered-by {
    font-size: 0.9rem;
    color: var(--slate);
    padding-left: 2rem;
    border-left: 1px solid #e2e8f0;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--slate);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.hero-image-container {
    position: relative;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transform: scale(1.05);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow);
    font-weight: 600;
    z-index: 10;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: 10%;
    right: -5%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid #eef2f7;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
}

.icon-orange {
    background: rgba(245, 158, 11, 0.1);
}

.icon-red {
    background: rgba(239, 68, 68, 0.1);
}

.icon-teal {
    background: rgba(20, 184, 166, 0.1);
}

/* Solutions CTA */
.solutions-cta {
    padding: 100px 0;
}

.cta-card {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 3rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pos-one-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--slate);
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: var(--slate);
}

.contact-item a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.contact-badges {
    display: grid;
    gap: 1.5rem;
}

.badge-box {
    padding: 2rem;
    border-radius: 20px;
}

.badge-box.highlight {
    background: var(--gradient);
    color: var(--white);
}

.badge-box.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}