:root {
    --primary: #6B4EB2;
    --primary-dark: #5a4099;
    --secondary: #8F63D4;
    --accent: #FFD700;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9f9f9;
    --glass: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.hidden {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.btn-nav {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfbfd 0%, #f4f0fa 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 160px;
    transition: 0.3s;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}

.btn-text strong {
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(107, 78, 178, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-bg-circle {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

/* Features */
.features {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(107, 78, 178, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* Business Section */
.business-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.business-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.business-image {
    flex: 1;
}

.dashboard-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 50px rgba(107, 78, 178, 0.2);
    /* Highlighting effect */
    filter: brightness(1.05);
}

.business-content {
    flex: 1;
}

.business-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.business-list {
    list-style: none;
    margin-bottom: 30px;
}

.business-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-list i {
    color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.download-section h2 {
    margin-bottom: 15px;
}

.download-section .store-btn {
    background: #fff;
    color: #000;
}

.download-section .app-buttons {
    justify-content: center;
    margin-top: 30px;
}

/* Footer */
footer {
    padding: 30px 0;
    background: #111;
    color: #888;
}

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

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    font-size: 1.2rem;
    color: #888;
    transition: 0.3s;
}

.socials a:hover {
    color: #fff;
}

/* Deep Link Specifics */
.btn-primary-lg {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container,
    .business-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image,
    .business-image {
        order: -1;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }
}