:root {
    --primary-color: #7B68EE;
    --primary-dark: #5b4bc4;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9fa;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Nav Transition */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .nav-link {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-link {
    margin-right: 20px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(123, 104, 238, 0.1) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.store-buttons {
    display: flex;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    transition: var(--transition);
    min-width: 180px;
}

.store-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.store-btn i {
    font-size: 28px;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn .btn-text small {
    font-size: 10px;
    text-transform: uppercase;
}

.store-btn .btn-text span {
    font-size: 16px;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    /* box-shadow: 0 20px 80px rgba(123, 104, 238, 0.2); */
    /* Assuming transparent png or clean cutout, adding simple shadow */
    filter: drop-shadow(0 20px 40px rgba(123, 104, 238, 0.25));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Places System Section */
.places-system {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.places-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.places-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.places-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.places-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    animation: float 5s ease-in-out infinite;
}

.user-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.4);
}

.p1 {
    top: 20px;
    left: 20%;
    animation-delay: 0s;
}

.p2 {
    top: 150px;
    right: 10%;
    animation-delay: 1s;
}

.p3 {
    bottom: 30px;
    left: 30%;
    animation-delay: 2s;
}

/* Responsive for Places */
@media (max-width: 968px) {
    .places-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .places-visual {
        margin-top: 40px;
        height: 300px;
    }
}

/* Features */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: 24px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(123, 104, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .places-system,
    .features {
        padding: 60px 0;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .store-buttons {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .places-visual {
        height: 250px;
    }

    .place-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .user-circle {
        width: 90px;
        height: 90px;
        font-size: 32px;
    }

    .p1 {
        left: 10%;
        top: 10px;
    }

    .p2 {
        right: 5%;
        top: 80px;
    }

    .p3 {
        left: 20%;
        bottom: 10px;
    }
}