/* MODERN LANDING PAGE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #FA31D6;
    --dark: #0A0A19;
    --dark-secondary: #14142B;
    --text-secondary: #A0A0C0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
button { font-family: inherit; border: none; cursor: pointer; transition: 0.3s; }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
}

.nav-menu a:hover { color: var(--primary); }

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 49, 214, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(250, 49, 214, 0.1);
}

.btn-large { padding: 16px 36px; font-size: 16px; border-radius: 14px; }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(250, 49, 214, 0.1);
}

.btn-white { background: white; color: var(--dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3); }

/* HERO */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0A0A19 0%, #1E1E3F 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(250, 49, 214, 0.15) 0%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    background: rgba(250, 49, 214, 0.1);
    border: 1px solid rgba(250, 49, 214, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.gradient-text {
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label { font-size: 14px; color: var(--text-secondary); }

.hero-visual {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 560px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.phone-mockup img { width: 100%; height: 100%; object-fit: cover; }

.floating-card {
    position: absolute;
    width: 180px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; left: 0; }
.card-2 { bottom: 10%; right: 0; animation-delay: 3s; }
.floating-card img { width: 100%; height: 100%; object-fit: cover; }

.floating-icon {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    animation: bounce 3s ease-in-out infinite;
    z-index: 3;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description { font-size: 18px; color: var(--text-secondary); }

/* FEATURES */
.features { padding: 100px 0; background: var(--dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--dark-secondary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(250, 49, 214, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); line-height: 1.6; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: var(--dark-secondary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card { text-align: center; }

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-content p { color: var(--text-secondary); line-height: 1.6; }

/* PRICING */
.pricing { padding: 100px 0; background: var(--dark); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(250, 49, 214, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-currency { font-size: 24px; font-weight: 600; }
.price-amount { font-size: 48px; font-weight: 800; margin: 0 4px; }
.price-period { font-size: 16px; color: var(--text-secondary); }

.pricing-features { list-style: none; margin-bottom: 32px; }

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.pricing-card button { width: 100%; }

/* GALLERY */
.gallery { padding: 100px 0; background: var(--dark-secondary); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 24px;
    transform: translateY(100%);
    transition: 0.3s;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p { color: var(--text-secondary); }

/* PARTNERS */
.partners { padding: 60px 0; background: var(--dark); text-align: center; }
.partners h3 { font-size: 24px; margin-bottom: 40px; color: var(--text-secondary); }

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.partners-logos img {
    height: 32px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partners-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* CONTACT */
.contact { padding: 100px 0; background: var(--dark-secondary); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(250, 49, 214, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { color: var(--text-secondary); margin-bottom: 16px; }

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

.contact-link:hover { text-decoration: underline; }

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FA31D6 0%, #8B5CF6 100%);
    text-align: center;
}

.cta-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 18px; margin-bottom: 32px; opacity: 0.9; }

/* FOOTER */
.footer { padding: 60px 0 24px; background: var(--dark); }

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

.footer-brand img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand p { color: var(--text-secondary); margin-top: 16px; }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: var(--text-secondary); }
.footer-column a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* IMAGE MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    * { box-sizing: border-box; }
    
    html, body { 
        overflow-x: hidden; 
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container { 
        padding: 0 20px; 
        margin: 0 auto;
        width: 100%;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav { 
        padding: 12px 0; 
        display: flex;
        justify-content: center;
    }
    .logo { margin: 0 auto; }
    .logo img { 
        height: 36px; 
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }
    .nav-menu { display: none; }
    
    .hero { padding: 100px 0 60px; }
    .hero .container { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .hero-content { 
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title { 
        font-size: 32px; 
        line-height: 1.2;
        text-align: center;
        width: 100%;
    }
    .hero-description { 
        font-size: 16px;
        text-align: center;
        width: 100%;
    }
    .hero-stats { 
        grid-template-columns: 1fr; 
        gap: 24px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-visual { 
        height: 400px; 
        order: -1;
    }
    .phone-mockup { width: 220px; height: 440px; }
    .floating-card { width: 140px; height: 250px; }
    .floating-icon { width: 60px; height: 60px; }
    
    .section-header { 
        text-align: center; 
        width: 100%;
        padding: 0 20px;
    }
    .section-title { 
        font-size: 28px;
        text-align: center;
    }
    .section-description { 
        font-size: 16px;
        text-align: center;
    }
    
    .features { padding: 60px 0; }
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        width: 100%;
    }
    .feature-card { 
        padding: 24px;
        width: 100%;
        margin: 0 auto;
    }
    
    .how-it-works { padding: 60px 0; }
    .steps-grid { 
        grid-template-columns: 1fr; 
        gap: 32px;
        width: 100%;
    }
    .step-card { 
        text-align: center;
        width: 100%;
    }
    
    .gallery { padding: 60px 0; }
    .gallery-grid { 
        grid-template-columns: 1fr; 
        gap: 16px;
        width: 100%;
    }
    .gallery-item { 
        width: 100%;
        margin: 0 auto;
    }
    
    .partners { 
        padding: 40px 0;
        text-align: center;
    }
    .partners-logos { 
        gap: 24px;
        justify-content: center;
        width: 100%;
    }
    .partners-logos img { height: 24px; }
    
    .contact { padding: 60px 0; }
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    .contact-card { 
        padding: 32px;
        width: 100%;
        margin: 0 auto;
    }
    
    .cta { 
        padding: 60px 0;
        text-align: center;
    }
    .cta-content { 
        width: 100%;
        text-align: center;
    }
    .cta-content h2 { 
        font-size: 28px;
        text-align: center;
    }
    .cta-content p { 
        font-size: 16px;
        text-align: center;
    }
    
    .footer { padding: 40px 0 20px; }
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 32px;
        text-align: center;
    }
    .footer-links { 
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-column { margin-bottom: 16px; }
    
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
}
