* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #667eea;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-login {
    color: #667eea;
    background: transparent;
    border: 2px solid #667eea;
}

.btn-login:hover {
    background: #667eea;
    color: white;
}

.btn-register {
    background: #667eea;
    color: white;
    border: 2px solid #667eea;
}

.btn-register:hover {
    background: #764ba2;
    border-color: #764ba2;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s;
}

/* RTL Support for Header */
[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .main-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-buttons {
    flex-direction: row-reverse;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-nav {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1.1s ease;
}

.trust-indicators span {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.feature-card p {
    color: #666;
}

/* Problem-Solution Section */
.problem-solution {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.problems-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problems-col, .solutions-col {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problems-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}

.solutions-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #28a745 0%, #218838 100%);
}

.problems-col:hover, .solutions-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.problems-col h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #dc3545;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solutions-col h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #28a745;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-list li::before {
    content: '❌';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.solution-list li::before {
    content: '✅';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.problem-list li:hover::before,
.solution-list li:hover::before {
    left: 1rem;
    opacity: 1;
}

.problem-list li:hover,
.solution-list li:hover {
    padding-left: 3rem;
    transform: translateX(5px);
}

.problem-list li {
    border-left: 4px solid #dc3545;
    color: #555;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.problem-list li:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.solution-list li {
    border-left: 4px solid #28a745;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
}

.solution-list li:hover {
    background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

/* Customer View Section */
.customer-view {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.customer-view::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.mobile-preview {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.mobile-preview:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(102, 126, 234, 0.25);
}

.mobile-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    opacity: 0.2;
}

.mobile-preview img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.social-proof::before {
    content: '💬';
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.03;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: none;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: #667eea;
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.testimonial-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: #ffc107;
    display: flex;
    gap: 0.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card strong {
    color: #667eea;
    font-weight: 600;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card strong::before {
    content: '👤';
    font-size: 1.2rem;
}

/* How Long Section */
.how-long {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-long::before {
    content: '⏱';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 10rem;
    opacity: 0.02;
}

.steps-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 4rem auto 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    position: relative;
}

.step-simple {
    text-align: center;
    flex: 0 0 auto;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-width: 140px;
    position: relative;
}

.step-simple:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.step-simple:hover .step-number-simple {
    transform: scale(1.15) rotate(360deg);
}

.step-simple p {
    margin-top: 1.25rem;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.step-number-simple {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-simple::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.2);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.arrow {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: bold;
    opacity: 0.3;
    animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.how-long-cta {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-top: 3rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.how-long-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b6b 100%);
    background-size: 200% 100%;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
    animation: urgency-pulse 2s ease-in-out infinite, urgency-shine 3s linear infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: urgency-shimmer 3s linear infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 50px rgba(255, 107, 107, 0.6);
    }
}

@keyframes urgency-shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes urgency-shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.urgency-banner p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.urgency-banner strong {
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Additions */
.plan-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card.featured .plan-desc {
    color: rgba(255, 255, 255, 0.9);
}

.guarantee {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
}

.pricing-card.featured .guarantee {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
}

/* Footer Enhancements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .testimonial-card {
    text-align: right;
}

[dir="rtl"] .problem-list li,
[dir="rtl"] .solution-list li {
    border-left: none;
    border-right: 4px solid #dc3545;
}

[dir="rtl"] .solution-list li {
    border-right-color: #28a745;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: white;
}

/* Duration Toggle */
.duration-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    max-width: 600px;
}

.duration-btn {
    position: relative;
    padding: 12px 30px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.duration-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.duration-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.save-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: #ffc107;
    color: #333;
    border-radius: 10px;
    font-weight: 700;
}

.save-badge.popular {
    background: #28a745;
    color: white;
}

.duration-btn.active .save-badge {
    background: white;
    color: #667eea;
}

.duration-btn.active .save-badge.popular {
    background: white;
    color: #28a745;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.pricing-card.featured {
    border-color: #667eea;
    border-width: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.total-price {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: none;
}

.pricing-card.featured .total-price {
    color: rgba(255, 255, 255, 0.9);
}

.savings-badge {
    display: none;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.5rem auto 1rem;
    max-width: fit-content;
}

.pricing-card.featured .savings-badge {
    background: white;
    color: #28a745;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-card li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li::before {
    content: '✓ ';
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card.featured li::before {
    color: #ffc107;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer a {
    color: #667eea;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    .trust-indicators span {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-simple {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-banner {
        font-size: 0.85rem;
        padding: 1rem 1.5rem;
        margin: 1.5rem auto;
    }
    
    .urgency-banner p {
        font-size: 1rem;
    }
    
    .urgency-banner strong {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    [dir="rtl"] .footer-content {
        text-align: center;
    }
    
    .duration-toggle {
        gap: 0.5rem;
    }
    
    .duration-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .save-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .screenshot-item {
        flex-direction: column !important;
    }
    
    .screenshot-content {
        max-width: 100%;
        text-align: center;
    }
    
    .screenshot-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .how-long-cta {
        font-size: 1rem;
    }
    
    .duration-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Screenshots Section */
.screenshots {
    padding: 80px 20px;
    background: #f8f9fa;
}

.screenshot-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.screenshot-item.reverse {
    flex-direction: row-reverse;
}

.screenshot-content {
    flex: 1;
    max-width: 40%;
}

.screenshot-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.screenshot-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.screenshot-image {
    flex: 1;
    max-width: 60%;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* RTL Support for Screenshots */
[dir="rtl"] .screenshot-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .screenshot-item.reverse {
    flex-direction: row;
}

[dir="rtl"] .screenshot-content {
    text-align: right;
}
