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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0d2e 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.logo-icon img {
    width: 50px;       /* Adjust size as needed */
    height: 50px;
    border-radius: 12px; /* Optional: makes it smooth-edged */
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.logo-icon img:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    
}


.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a855f7;
}

.header-buttons {
    display: flex;
    gap: 16px;
}

.btn-login {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #059669;
}

.btn-start {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

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

.hero-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
}

.url-input-section {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.url-input {
    display: flex;
    align-items: center;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 25px;
    padding: 16px 24px;
    flex: 1;
    min-width: 300px;
}

.url-prefix {
    color: #9ca3af;
    font-size: 18px;
}

.store-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    outline: none;
    margin-left: 4px;
    flex: 1;
}

.store-input::placeholder {
    color: #6b7280;
}

.btn-claim {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.phone-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.orange-text {
    color: #fb923c;
}

.pink-text {
    color: #ec4899;
}

.blue-text {
    color: #3b82f6;
}

.section-subtitle {
    font-size: 16px;
    color: #9ca3af;
    letter-spacing: 2px;
}

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

.store-card {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.store-card:hover {
    transform: translateY(-10px);
}

.store-preview {
    padding: 20px;
    height: 350px;
    background: white;
    color: #333;
    overflow: hidden;
}

.purple-theme {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.pink-theme {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
}

.orange-theme {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
}

.blue-theme {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
}
.store-label {
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    color: white;
    background-color: #d40606;
    border-radius: 5px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
}

/* Product container */
.product-item {
    width: 100%;
    max-width: 2000px;
    height: 300px;          /* fixed visible height */
    margin: 0 auto;
    position: relative;
    overflow-y: scroll;     /* enables vertical scrollbar */
    overflow-x: hidden;     /* disables horizontal scrollbar */
    border: 2px solid #d40606;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Image styling */
.product-item img {
    width: 100%;
    height: auto;           /* keeps full image height */
    object-fit: contain;    /* prevents cropping */
    display: block;
    border-radius: 5px;
}





.product-name {
    font-size: 12px;
    color: #666;
}


.purple-label {
    background: #8b5cf6;
}

.pink-label {
    background: #ec4899;
}

.orange-label {
    background: #f97316;
}

.blue-label {
    background: #3b82f6;
}



/* Theming Section */
.theming {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.theming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.theming-description {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-top: 30px;
}

.device-mockups {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-mockup {
    position: relative;
    width: 400px;
    height: 250px;
    background: #374151;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.mobile-mockup {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 150px;
    height: 300px;
    background: #374151;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat i {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .theming-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .url-input-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .url-input {
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .store-examples {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-start {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .whatsapp-chat span {
        display: none;
    }
}


/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-top: 1rem;
}

.pricing-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary-large {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary-large {
    padding: 1rem 2rem;
    background: transparent;
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #8b5cf6;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: #a1a1aa;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #8b5cf6;
}

.period {
    font-size: 1rem;
    color: #a1a1aa;
}

.plan-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.5rem 0;
    color: #e5e5e5;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #8b5cf6;
}

.plan-button.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    color: white;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
.blog-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #d40606;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.blog-item {
    background-color: #fff;
    border: 2px solid #d40606;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.blog-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 15px 5px;
    color: #d40606;
}

.blog-excerpt {
    font-size: 0.95rem;
    margin: 0 15px 15px;
    color: #333;
}

/* WhatsApp Floating Button */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.whatsapp-float i {
    line-height: 1;
}

.blog-title a {
    text-decoration: none;
    color: #d40606; /* matches your theme */
}

.blog-title a:hover {
    text-decoration: underline;
    color: #b40404;
}

* Contact Section */
.footer {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: hsl(263, 100%, 70%, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 20rem;
    height: 20rem;
    background: hsl(284, 100%, 80%, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.footer-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.footer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: var(--gradient-card);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(240, 6%, 20%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-card p {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-card .highlight {
    color: var(--primary);
    font-weight: 600;
}

.cta-section {
    text-align: center;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid hsl(240, 6%, 20%, 0.5);
    backdrop-filter: blur(8px);
    max-width: 32rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.footer-bottom .logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    color: var(--muted-foreground);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-image img {
        height: 12rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .menu-card {
        padding: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .cta-section {
        padding: 1.5rem;
    }
}
