/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #2c3e50;
}

h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.4);
}

.btn-secondary {
    background: white;
    color: #17a2b8;
    border: 2px solid #17a2b8;
}

.btn-secondary:hover {
    background: #17a2b8;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h2 {
    color: #17a2b8;
    margin: 0;
    font-size: 1.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #17a2b8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.hero-text {
    animation: slideInRight 1s ease-out;
}

.system-badge {
    display: inline-block;
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50, #17a2b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 3px solid #1e88e5;
}

.highlight-item i {
    color: #1e88e5;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    animation: slideInLeft 1s ease-out;
}

.system-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    animation: floatY 8s ease-in-out infinite;
}

.system-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.system-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.screenshot-overlay h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.screenshot-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.screenshot-placeholder {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.screenshot-placeholder:hover {
    transform: translateY(-5px);
}

.placeholder-content i {
    font-size: 3rem;
    color: #17a2b8;
    margin-bottom: 1rem;
}

.placeholder-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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


/* Video Section styles removed */

/* Hero improvements */
.hero-subtitle {
    margin: 1rem 0;
}

.hero-subtitle h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* CTA Button improvements */
.cta-pulse {
    animation: cta-pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s;
}

.cta-pulse:hover::before {
    left: 100%;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(23,162,184,0.2); }
    50% { box-shadow: 0 6px 20px rgba(23,162,184,0.4); }
}

/* New animations */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-8px); }
}

.btn small {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Benefit-focused cards */
.benefit-focus {
    border-left: 4px solid #1e88e5 !important;
    background: linear-gradient(135deg, #f5faff, #ffffff) !important;
}

.benefit-focus .feature-icon {
    background: linear-gradient(135deg, #0ea5e9, #1e88e5) !important;
}

.benefit-highlight {
    background: linear-gradient(135deg, #0ea5e9, #1e88e5);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 10000;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-content {
    position: relative;
    margin: 0 auto;
    max-width: 95%;
    width: fit-content;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-image.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
}

/* Mobile lightbox improvements */
@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 10px;
    }
    
    .lightbox-content {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .lightbox-image {
        max-height: 85vh;
        width: 100%;
        object-fit: contain;
    }
    
    .lightbox-image.zoomed {
        transform: scale(2);
        cursor: move;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-info {
        bottom: 10px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

.screenshot-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

/* Pricing enhancements - New Horizontal Layout */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pricing-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.pricing-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.price-box {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e88e5 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.25);
}

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

.price-main .currency {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-main .amount {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.price-main .old-price {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: #17a2b8;
    font-size: 1.2rem;
}

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

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.urgency-text {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: 2px dashed #e74c3c;
    margin: 0;
}

.pricing-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e88e5;
}

.pricing-features h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(-5px);
}

.feature-item i {
    color: #1e88e5;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Accordion Styles */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
}

.faq-item.active {
    border-right-color: #1e88e5;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    padding-left: 1rem;
    flex: 1;
}

.faq-question i {
    color: #1e88e5;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 1.75rem;
    border-top: 2px solid #e3f2fd;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Enhanced Feature Cards with Modern Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #1e88e5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #0ea5e9, #1e88e5);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 136, 229, 0.4);
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* FAQ Mobile Optimization */
    .faq-question {
        padding: 1.2rem 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem 1rem;
    }
    
    /* Feature Cards Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Pricing Features Mobile Fix */
    .pricing-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-features h3 {
        font-size: 1.3rem;
    }
    
    .features-list {
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin: 0.5rem 0;
    }
    
    .hero-subtitle h2 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .features-highlight {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .highlight-item {
        padding: 0.5rem;
        font-size: 0.75rem;
        text-align: center;
    }
    
    .highlight-item i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn small {
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }
    
    .system-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .hero-image img {
        max-height: 150px;
        width: auto;
        border-radius: 10px;
    }
    
    /* Sections spacing */
    .features, .screenshots, .pricing {
        padding: 25px 0;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .benefit-highlight {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-top: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .screenshot-item {
        margin-bottom: 0.5rem;
    }
    
    .screenshot-overlay h4 {
        font-size: 0.9rem;
    }
    
    .screenshot-overlay p {
        font-size: 0.8rem;
    }
    
    .pricing {
        padding: 30px 0;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .pricing-info h2 {
        font-size: 1.4rem;
    }

    .pricing-description {
        font-size: 0.95rem;
    }

    .price-box {
        padding: 1.5rem;
    }

    .price-main .amount {
        font-size: 2.5rem;
    }

    .price-main .currency {
        font-size: 1rem;
    }

    .price-main .old-price {
        font-size: 1.2rem;
    }

    .discount-badge {
        font-size: 0.85rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .pricing-features h3 {
        font-size: 1.2rem;
    }

    .feature-item {
        padding: 0.6rem;
    }

    .feature-item span {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem !important;
        margin: 1rem 0 !important;
        border-radius: 15px !important;
    }
    
    .cta-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .cta-section p {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .trust-badges {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center;
    }
    
    .trust-badges span {
        font-size: 0.75rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p, .footer-section a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 30px 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle h2 {
        font-size: 1rem;
    }
    
    .hero-text p {
        font-size: 0.75rem;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .highlight-item {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn small {
        font-size: 0.65rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .section-header p {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 0.8rem;
    }
    
    .feature-card h3 {
        font-size: 0.9rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .benefit-highlight {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .pricing-wrapper {
        padding: 1rem;
        gap: 1.5rem;
    }

    .pricing-info h2 {
        font-size: 1.2rem;
    }

    .pricing-description {
        font-size: 0.85rem;
    }

    .price-box {
        padding: 1rem;
    }

    .price-main .amount {
        font-size: 2rem;
    }

    .price-main .currency {
        font-size: 0.9rem;
    }

    .price-main .old-price {
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .pricing-features {
        padding: 1.5rem;
    }

    .pricing-features h3 {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 0.5rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.5);
}

.video-content h3 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.video-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}


.video-iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0ea5e9, #1e88e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border-radius: 0 0 0 100px;
}

.pricing-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    position: relative;
}

.offer-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.currency {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.old-amount {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.8;
    color: #ffffff;
}

.discount {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.pricing-features {
    padding: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: #28a745;
    font-size: 1.2rem;
}

.feature span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.pricing-card .btn {
    width: 90%;
    margin: 0 auto 2rem;
    display: block;
    font-size: 1.2rem;
    padding: 1rem;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-video {
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.demo-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-text li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.demo-text li i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #17a2b8;
    width: 60px;
    text-align: center;
}

.contact-item h4 {
    margin: 0;
    color: white;
}

.contact-item p {
    margin: 0;
    color: #bdc3c7;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #bdc3c7;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #17a2b8;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: white;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: #17a2b8;
}

.contact-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .demo-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .system-preview {
        transform: none;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin: 0 1rem;
    }
    
    .pricing-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .price-main .amount {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0.75rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 0.75rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
