/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #00bfff;
    position: sticky;
    top: 0;
    z-index: 50;
   
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: #00bfff;
    margin-right: 8px;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: #00bfff;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: 40px;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    border-bottom-color: #00bfff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #3b82f6;
    background: transparent;
    color: #3b82f6;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-primary {
    padding: 8px 16px;
    background: #00bfff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 16px 0;
    background: white;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.mobile-link:hover {
    color: #3b82f6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    padding: 20px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.text-primary {
    color: #00bfff;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.highlight {
    font-weight: 600;
    color: #059669;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero-primary {
    padding: 10px 10px;
    background: #00bfff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.btn-hero-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}

.btn-hero-outline {
    padding: 16px 32px;
    border: 2px solid #3b82f6;
    background: transparent;
    color: #3b82f6;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #3b82f6;
    color: white;
}

.hero-features {
    display: flex;
    gap: 24px;
    color: #6b7280;
    font-size: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #059669;
}

.hero-img-container {
    position: relative;
}

.hero-img-container img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.orders-card {
    bottom: -24px;
    left: -24px;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.card-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.app-card {
    top: -16px;
    right: -16px;
    background: #00bfff;
    color: white;
    animation-delay: 1s;
}

.app-card-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-card i {
    font-size: 24px;
}

.app-label {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.app-platforms {
    font-weight: 600;
    margin: 0;
}

/* Statistics Section */
.stats-section {
    padding: 20px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f0fdf4 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.mission-item {
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.mission-icon.customers {
    background: #dbeafe;
    color: #3b82f6;
}

.mission-icon.stores {
    background: #dcfce7;
    color: #059669;
}

.mission-icon.community {
    background: #fce7f3;
    color: #dc2626;
}

.mission-icon:hover {
    transform: translateY(-4px);
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.mission-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 20px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #00bfff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* App Showcase Section */
.app-showcase {
    padding: 20px 0;
    background: linear-gradient(135deg, #00bfff 0%, #00bfff 100%);
    color: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.showcase-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.showcase-description {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: #374151;
}

.app-store-btn.store-app {
    background: #059669;
}

.app-store-btn.store-app:hover {
    background: #047857;
}

.app-store-btn i {
    font-size: 20px;
}

.app-store-text {
    font-size: 12px;
    text-align: left;
}

.app-store-name {
    font-weight: 600;
    text-align: left;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.live-indicator {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-indicator span {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 16px;
}

.testimonial-avatar.customer {
    background: #3b82f6;
}

.testimonial-avatar.store {
    background: #059669;
}

.testimonial-avatar.professional {
    background: #2563eb;
}

.testimonial-name {
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.testimonial-role {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.testimonial-content {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-rating {
    color: #fbbf24;
}

/* CTA Section */
.cta-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #00bfff 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: #3b82f6;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: #3b82f6;
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bfdbfe;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 32px;
    color: #3b82f6;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .btn-outline span {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .showcase-title,
    .cta-title {
        font-size: 32px;
    }
}