:root {
    --primary-color: #2563EB;
    --secondary-color: #1E293B;
    --text-color: #334155;
    --bg-light: #F8FAFC;
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-10px);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, transparent 40%);
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 500px;
}

.store-badge {
    height: 50px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.store-badge:hover {
    transform: scale(1.05);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    top: 0;
}

.feature-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--card-shadow);
    border-color: transparent;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        margin: 0 auto 2.5rem;
    }
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}

.swiper.screenshot-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper.testimonial-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.app-screen {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
    /* For equal height cards */
}

.swiper-slide .testimonial-card {
    width: 100%;
    /* Fill slide */
}

/* Swiper Pagination Override */
:root {
    --swiper-theme-color: #2563EB;
}

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.app-screen:hover {
    transform: translateY(-10px);
}

/* How It Works (Timeline) Section */
.how-it-works-section {
    padding: 80px 0;
    background: #ffffff;
}

.step-card {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.step-card:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -60px;
    width: 2px;
    border-left: 2px dashed #cbd5e1;
    z-index: 1;
}

.step-card:last-child::before {
    display: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background: #f8fafc;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer-text {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: #f1f5f9;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
    word-wrap: break-word;
    /* Ensure long numbers wrap if needed */
}

.stat-label {
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 1.8rem;
        /* Smaller font on mobile */
    }

    .stat-item {
        padding: 10px;
        /* Reduce padding on mobile */
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-container:hover .video-thumb {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* How It Works (Zig Zag Upgrade) */
.how-it-works-section .row {
    margin-bottom: 60px;
}

.how-it-works-section .row:last-child {
    margin-bottom: 0;
}

.step-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-num-large {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    height: 100%;
}

.pricing-card.recommended {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-box {
    margin: 2rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.duration {
    color: #64748b;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: #64748b;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Download CTA Banner */
.download-cta-section {
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
    margin-bottom: -100px;
    /* Floating effect over footer */
}

.cta-box {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    border-radius: 30px;
    padding: 4rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
}

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

.btn-light-store {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-light-store:hover {
    transform: translateY(-3px);
    background: #fff;
    color: var(--primary-color);
}