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

:root {
    --primary-color: #3A86FF;
    --primary-dark: #2563EB;
    --secondary-color: #FFE066;
    --accent-color: #38B000;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #EAF6FF;
    --white: #ffffff;
    --soft-blue: #BDE0FE;
    --mint-green: #D8F3DC;
    --mint-green-dark: #95D5B2;
    --soft-yellow: #FFF3B0;
    --light-gray: #F5F5F5;
    --gradient: linear-gradient(135deg, #BDE0FE 0%, #D8F3DC 100%);
    --problem-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --solution-gradient: linear-gradient(135deg, #D8F3DC 0%, #95D5B2 100%);
    
    /* Font Size System */
    --font-xs: 0.875rem;
    --font-sm: 1rem;
    --font-base: 1.125rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 1.75rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3rem;
    --font-6xl: 3.5rem;
    --font-7xl: 4rem;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: #EAF6FF;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

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


/* Hero Section - Problem */
.hero {
    background: #EAF6FF;
    padding: 120px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 176, 0, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

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

.hero-text {
    color: var(--text-dark);
}

.hero-title {
    font-size: var(--font-7xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    color: #3A86FF;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--font-3xl);
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #38B000;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: var(--font-2xl);
    margin-bottom: 50px;
    opacity: 0.85;
    line-height: 2;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(58, 134, 255, 0.2);
    animation: floatImage 6s ease-in-out infinite;
}

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

/* Questions Section */
.questions {
    padding: 80px 0;
    background: #EAF6FF;
}

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

.question-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.question-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.question-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.question-text {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--text-dark);
}

.payment-answer {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 25px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 30px;
}

/* Product Section */
.product {
    padding: 100px 0;
    background: #EAF6FF;
}

.product.solution-section {
    background: #EAF6FF;
}

.product.solution-section .section-title,
.product.solution-section .section-subtitle,
.product.solution-section h3,
.product.solution-section p {
    color: var(--text-dark);
}

.product.solution-section .product-features li {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    border: 2px solid rgba(56, 176, 0, 0.2);
}

.product.solution-section .product-features li:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #38B000;
}

.section-title {
    text-align: center;
    font-size: var(--font-7xl);
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 20px;
}

.section-title.problem-title {
    color: #DC2626;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-2xl);
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-content {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.product-features li {
    padding: 30px 25px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--font-xl);
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid transparent;
}

.product-features li:hover {
    transform: translateX(-15px) scale(1.01);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #EAF6FF;
    text-align: center;
    color: var(--text-dark);
}

.cta-title {
    font-size: var(--font-7xl);
    font-weight: 900;
    margin-bottom: 30px;
    color: #38B000;
}

.cta-subtitle {
    font-size: var(--font-3xl);
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-button {
    width: 100%;
    padding: 30px 45px;
    font-size: var(--font-xl);
    font-weight: 700;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-button-primary {
    background: #38B000;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(56, 176, 0, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 176, 0, 0.4);
}

.cta-button-secondary {
    background: #3A86FF;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.cta-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(58, 134, 255, 0.4);
}

/* Payment Section */
.payment {
    padding: 80px 0;
    background: #EAF6FF;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.payment-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.payment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.payment-card h3 {
    font-size: var(--font-4xl);
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.payment-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: var(--font-xl);
}

.payment-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: var(--font-xl);
    transition: all 0.3s ease;
}

.payment-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #EAF6FF;
    color: var(--text-dark);
    padding: 60px 0;
    text-align: center;
}

.footer-title {
    font-size: var(--font-6xl);
    font-weight: 800;
    margin-bottom: 20px;
    color: #38B000;
}

.footer-description {
    font-size: var(--font-2xl);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.footer-credits {
    font-size: var(--font-xl);
    margin-bottom: 0;
    opacity: 0.8;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Digital Features Grid */
.digital-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.digital-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.digital-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

.digital-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.digital-card h3 {
    font-size: var(--font-2xl);
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.digital-card p {
    font-size: var(--font-lg);
    color: var(--text-light);
}

/* Responsive */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 968px) {
    .hero-content,
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: var(--font-7xl);
    }

    .hero-subtitle {
        font-size: var(--font-3xl);
    }

    .hero-description {
        font-size: var(--font-2xl);
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .product-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .product-features li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .product-features li::before {
        margin-bottom: 10px;
    }

    .section-title {
        font-size: var(--font-6xl);
    }

    .section-subtitle {
        font-size: var(--font-2xl);
    }

    .cta-title {
        font-size: var(--font-6xl);
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .questions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .digital-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: var(--font-6xl);
    }

    .hero-subtitle {
        font-size: var(--font-2xl);
    }

    .hero-description {
        font-size: var(--font-xl);
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .product-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .section-title {
        font-size: var(--font-5xl);
    }

    .section-subtitle {
        font-size: var(--font-xl);
    }

    .product,
    .questions,
    .payment,
    .cta {
        padding: 60px 0;
    }

    .product-features li {
        font-size: var(--font-lg);
        padding: 20px 15px;
    }

    .digital-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .payment-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .payment-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: var(--font-5xl);
    }

    .hero-subtitle {
        font-size: var(--font-2xl);
    }

    .hero-description {
        font-size: var(--font-xl);
    }

    .hero-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .product-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .section-title {
        font-size: var(--font-4xl);
    }

    .section-subtitle {
        font-size: var(--font-xl);
    }

    .cta-title {
        font-size: var(--font-4xl);
    }

    .cta-subtitle {
        font-size: var(--font-xl);
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .question-card {
        padding: 30px 20px;
    }

    .question-icon {
        font-size: 2.5rem;
    }

    .question-text {
        font-size: var(--font-xl);
    }

    .product-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-features li:first-child {
        grid-column: span 2;
    }

    .product-features li {
        font-size: var(--font-base);
        padding: 15px 10px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }

    .product-features li::before {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .digital-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .digital-card {
        padding: 30px 20px;
    }

    .digital-icon {
        font-size: 2.5rem;
    }

    .digital-card h3 {
        font-size: 1.2rem;
    }

    .digital-card p {
        font-size: 1rem;
    }

    .payment-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    footer {
        padding: 40px 0;
    }

    .footer-title {
        font-size: var(--font-4xl);
    }

    .footer-description {
        font-size: var(--font-xl);
    }

    .footer-credits {
        font-size: var(--font-lg);
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: var(--font-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-xl);
    }

    .hero-description {
        font-size: var(--font-lg);
    }

    .section-title {
        font-size: var(--font-3xl);
    }

    .cta-title {
        font-size: var(--font-3xl);
    }

    .question-text {
        font-size: var(--font-lg);
    }

    .product-features li {
        font-size: var(--font-base);
    }
}

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inline CTA Section */
.inline-cta {
    padding: 40px 0;
    background: #EAF6FF;
    text-align: center;
    margin: 0;
}

.inline-cta h3 {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.inline-cta p {
    font-size: var(--font-lg);
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inline-cta .cta-button {
    max-width: 400px;
    margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb:active {
    background: var(--secondary-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}
