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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    padding: 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

.feature .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.app-store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.app-store-icon {
    font-size: 2rem;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: normal;
}

.app-store-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.premium-cta {
    margin-top: 2rem;
}

.premium .app-store-button {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Showcase Section */
.showcase {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.before-after-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.before-after-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.before-after-item h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.comparison-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 250px;
}

.label {
    position: absolute;
    top: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.before-label {
    right: 15px;
    background: rgba(139, 92, 246, 0.9);
    color: white;
}

.after-label {
    left: 15px;
    background: rgba(251, 191, 36, 0.9);
    color: white;
}

.arrow {
    font-size: 2rem;
    color: #8B5CF6;
    font-weight: bold;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

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

/* Premium Section */
.premium {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: white;
    text-align: center;
}

.premium h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.premium > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.premium-features {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: right;
    font-size: 1.1rem;
}

.premium-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.premium-features li:last-child {
    border-bottom: none;
}

/* Content Pages */
.content-page {
    padding: 3rem 0;
    background: white;
    min-height: 70vh;
}

.content-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.content-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 4px solid #8B5CF6;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.3rem;
    color: #6366F1;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.content-section ul {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: #555;
}

.content-section strong {
    color: #333;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links span {
    color: #666;
}

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

    .hero {
        padding: 2rem 0;
    }

    .hero-image-wrapper {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

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

    .app-store-button {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .app-store-icon {
        font-size: 1.5rem;
    }

    .app-store-text {
        align-items: center;
    }

    .showcase h2 {
        font-size: 2rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 2.5rem;
    }

    .before-label {
        right: auto;
        left: 15px;
    }

    .after-label {
        left: auto;
        right: 15px;
    }

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

    .content-page h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}

