/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.brand-font {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.text-pink {
    color: #e91e63;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.btn-hero {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 20px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background: white;
    color: #e91e63;
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 20px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #333;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.mobile-download {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 25%, #ede9fe 50%, #ddd6fe 75%, #c4b5fd 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    opacity: 0.2;
    top: -200px;
    right: -200px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    opacity: 0.2;
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f472b6, #fb923c);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: none;
}

.floating-card:hover {
    transform: translateY(-8px);
}

.floating-card img {
    width: 120px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.floating-card-1 {
    top: -24px;
    left: -24px;
    transform: rotate(-5deg);
}

.floating-card-2 {
    bottom: -24px;
    right: -24px;
    transform: rotate(5deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #fef7ff, #f3e8ff);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.delivery-highlight {
    text-align: center;
}

.delivery-content {
    background: linear-gradient(135deg, #e91e63, #9c27b0, #3b82f6);
    color: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.2);
}

.delivery-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.delivery-content > * {
    position: relative;
    z-index: 10;
}

.delivery-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.delivery-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.delivery-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* App Showcase */
.app-showcase {
    padding: 100px 0;
    background: #f8fafc;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.showcase-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.showcase-image img:hover {
    transform: scale(1.05);
}

.showcase-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #333;
}

.showcase-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.showcase-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.showcase-nav button {
    width: 48px;
    height: 48px;
    border: 2px solid #e91e63;
    background: white;
    color: #e91e63;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.showcase-nav button:hover {
    background: #e91e63;
    color: white;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #e91e63;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fef7ff, #f3e8ff);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.stars {
    font-size: 16px;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 500;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.reviewer-location {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-about p {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #9ca3af;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e91e63;
}

.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-item span {
    color: #e91e63;
    margin-top: 4px;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-item a:hover {
    color: #e91e63;
}

.contact-item div {
    line-height: 1.6;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .floating-card {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-text {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 18px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .delivery-content {
        padding: 32px 24px;
    }
    
    .delivery-content h3 {
        font-size: 24px;
    }
    
    .delivery-content p {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}