/* Global Styles */
:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a2e;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #8f94fb, #4e54c8);
    background-attachment: fixed;
    direction: rtl;
    overflow-x: hidden;
}

.glass-container {
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 2rem;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn.primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
}

.btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 84, 200, 0.6);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--light-text);
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-text);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
}

.hero-image .glass-card {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-element i {
    font-size: 2rem;
    color: var(--light-text);
}

.store-icon {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cart-icon {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.mobile-icon {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.graph-icon {
    width: 65px;
    height: 65px;
    bottom: 25%;
    right: 25%;
    animation-delay: 3s;
}

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

.animated-text {
    background: linear-gradient(90deg, #ffffff, #8f94fb, #4e54c8, #ffffff);
    background-size: 300% 100%;
    animation: gradient 8s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.about h2 {
    text-align: center;
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.about-image .glass-card {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Features Section */
.features {
    text-align: center;
}

.features h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.pricing {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pricing h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    background: rgba(78, 84, 200, 0.2);
    border: 1px solid rgba(78, 84, 200, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card.premium {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 0 15px 0 15px;
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--light-text);
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-features {
    margin-bottom: 2rem;
    text-align: right;
}

.price-features li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features i {
    color: var(--accent-color);
}

.advertising-packages {
    margin-top: 4rem;
}

.advertising-packages h3 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.ad-package {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: var(--transition);
}

.ad-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.ad-package.gold {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ad-package h4 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ad-package p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.ad-prices {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ad-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
}

.ad-price-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.ad-price-item strong {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* Example Section */
.example {
    text-align: center;
}

.example h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.example-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.example-text {
    flex: 1;
    text-align: right;
}

.example-text h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.example-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.example-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.example-steps p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.example-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.example-image .glass-card {
    width: 100%;
    height: 100%;
    position: relative;
}

/* App Section */
.app-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
}

.app-section h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.app-text {
    flex: 1;
    text-align: right;
}

.app-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.app-text ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-text li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-text i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 10px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    opacity: 0.7;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    text-align: right;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Heebo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--light-text);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content,
    .example-content,
    .app-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .pricing-cards,
    .ad-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
} 