@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Page Layout - Logic for Backgrounds */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    /* חובה עבור מיקום הרקע */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
}

.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-content,
.features-grid,
.included-grid,
.guidance-grid,
h2,
h3 {
    position: relative;
    z-index: 2;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero-section h1 {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.hero-section p {
    font-size: 1.8em;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hero-section .highlight {
    font-weight: 700;
    font-size: 2em;
    color: #ffffff;
    display: block;
    margin: 30px 0;
}

.hero-section .question {
    font-size: 2.2em;
    font-weight: 700;
    margin: 40px 0 30px 0;
}

/* About Section */
.about-section {
    background-color: #000000;
}

.about-section h2 {
    font-size: 4em;
    font-weight: 900;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section .subtitle {
    font-size: 1.8em;
    margin-top: 60px;
    margin-bottom: 20px;
}

/* Solution Intro */
.solution-intro {
    background-color: #000000;
}

.solution-intro h2 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 60px;
}

.solution-intro p {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-intro .bold {
    font-weight: 700;
    font-size: 2em;
    margin: 30px 0;
}

/* Features Section */
.features-section {
    background-color: #000000;
    padding: 80px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-box {
    text-align: right;
    padding: 40px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-box:hover {
    transform: translateY(-15px);
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.feature-number {
    font-size: 5em;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.feature-box p {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-box .bold-text {
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-size: 1.4em;
}

/* What's Included Section */
.included-section {
    background-color: #000000;
    padding: 80px 40px;
    position: relative;
}

.included-section h2 {
    font-size: 3.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.included-item {
    padding: 30px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background-color: rgba(26, 26, 26, 0.9);
    transform: scale(1.05);
}

.included-item h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.included-item p {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.7;
}

/* Guidance Section */
.guidance-section {
    background-color: #000000;
    padding: 80px 40px;
    position: relative;
}

.guidance-section h2 {
    font-size: 3.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guidance-item {
    padding: 30px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guidance-item:hover {
    background-color: rgba(26, 26, 26, 0.9);
    transform: translateX(-10px);
}

.guidance-item h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.guidance-item p {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    position: relative;
}

.cta-section h2 {
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cta-section .subtitle {
    font-size: 1.8em;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-box {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 80px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-box:hover {
    background-color: rgba(26, 26, 26, 0.9);
    transform: scale(1.05);
}

.contact-item {
    font-size: 2em;
    font-weight: 500;
    margin: 25px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #cccccc;
}
.hero-section{
    background-image: url('images/1.png');
}
.about-section{
    background-image: url('images/2.png');
}
.solution-intro{
    background-image: url('images/3.png');
}
.features-section{
    background-image: url('images/4.png');
}
.included-section{
    background-image: url('images/5.png');
}
.guidance-section{
    background-image: url('images/6.png');
}
.cta-section{
    background-image: url('images/7.png');
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .hero-section .highlight {
        font-size: 1.4em;
    }

    .about-section h2 {
        font-size: 2.5em;
    }

    .about-section p {
        font-size: 1.2em;
    }

    .feature-number {
        font-size: 3em;
    }

    .feature-box h3 {
        font-size: 1.5em;
    }

    .feature-box p {
        font-size: 1.1em;
    }

    .included-section h2,
    .guidance-section h2,
    .cta-section h2 {
        font-size: 2em;
    }

    .contact-box {
        padding: 30px 40px;
    }

    .contact-item {
        font-size: 1.4em;
    }

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