/* ====== HERO WRAPPER ====== */
.hero-lead-section {
    position: relative;
    background-color: #050818;
    color: #fff;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    isolation: isolate; /* לוודא שהגלוא לא בורח */
}

/* הגריד הראשי של שתי העמודות */
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 3rem;
}

/* ====== עמודת הטקסט ====== */
.hero-copy {
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 560px;
}

/* כותרת ראשית */
.hero-title,
.hero-title-tight {
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}
.hero-title-tight {
    font-size: clamp(2rem, 1rem + 1vw, 2.4rem);
    line-height: 1.3;
    max-width: 540px;
}

/* תיאור אחרי הכותרת */
.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    margin: 0;
}

/* בולטים */
.hero-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem 1rem;
    max-width: 540px;
}
.hero-bullet {
    display: flex;
    align-items: flex-start;
    font-size: .95rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}
.hero-bullet i {
    color: #6d7cff;
    font-size: 1rem;
    line-height: 1;
    margin-left: .5rem; /* RTL */
}

/* קופסת אמון / מותגים */
.hero-trust {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    max-width: 540px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.8),
        0 0 60px rgba(0,86,255,.25);
    text-align: center;
}
.hero-trust-head {
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .25rem;
    line-height: 1.4;
}
.hero-trust-sub {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    line-height: 1.4;
    font-weight: 400;
}

/* ====== עמודת הטופס ====== */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
}

.hero-form-card {
    width: 100%;
    max-width: 400px;
    background: radial-gradient(
        circle at 20% 0%,
        rgba(15,25,60,0.9) 0%,
        rgba(5,8,20,0.95) 70%
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.9),
        0 0 80px rgba(0,86,255,0.4);
    padding: 1.5rem 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* כותרת הטופס */
.hero-form-header {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    text-align: center;
    color: #fff;
}
.hero-form-eyebrow {
    font-size: .8rem;
    font-weight: 600;
    color: #1a73ff;
    line-height: 1.3;
}
.hero-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}
.hero-form-sub {
    font-size: .8rem;
    line-height: 1.4;
    color: rgba(255,255,255,.6);
}

/* שדות */
.hero-form .form-control,
.hero-form textarea.form-control {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 10px;
    font-size: .9rem;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
    text-align: center;
    padding: .9rem 1rem;
}
.hero-form .form-control::placeholder,
.hero-form textarea.form-control::placeholder {
    color: rgba(255,255,255,.4);
}
.hero-form .form-control:focus,
.hero-form textarea.form-control:focus {
    outline: none;
    border-color: #1a73ff;
    box-shadow: 0 0 0 3px rgba(0,86,255,.4);
    background: rgba(255,255,255,0.09);
    color: #fff;
}

/* כפתור שליחה */
.hero-submit-btn {
    background: #0056ff;
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: .9rem 1rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,86,255,0.45);
    transition: all .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.hero-submit-btn:hover {
    background: #1a66ff;
    box-shadow: 0 30px 60px rgba(0,86,255,0.6);
}

/* טקסט פרטיות */
.hero-privacy-note {
    font-size: .75rem;
    line-height: 1.4;
    color: rgba(255,255,255,.4);
    margin-top: .5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   מובייל / טאבלט (עד 991px)
   =========================== */
@media (max-width: 991px) {

    .hero-lead-section {
        padding-top: 100px;   /* היה 70px - כדי לא לתת לכותרת להיות "מתחת" ל-header */
        padding-bottom: 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-grid {
        flex-direction: column;
        align-items: center;
        row-gap: 1.75rem;
    }

    .hero-copy {
        order: 1;
        align-items: center;
        text-align: center;
        max-width: 420px;
        margin: 0 auto;
        gap: .9rem;
    }

    .hero-title,
    .hero-title-tight {
        font-size: 1.55rem;
        line-height: 1.3;
        font-weight: 600;
        max-width: 100%;
        margin: 0;
    }

    .hero-desc {
        font-size: .9rem;
        line-height: 1.55;
        color: rgba(255,255,255,.8);
        max-width: 420px;
        margin: 0 auto .5rem auto;
    }

    .hero-bullets {
        max-width: 420px;
        margin: 0 auto .5rem auto;
        display: grid;
        gap: .6rem;
    }

    .hero-bullet {
        font-size: .85rem;
        line-height: 1.4;
        font-weight: 500;
        color: rgba(255,255,255,.9);
        justify-content: center;
        text-align: center;
    }

    .hero-bullet i {
        font-size: .9rem;
        margin-left: .45rem;
        color: #6d7cff;
    }

    .hero-trust {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        padding: .75rem 1rem;
        max-width: 420px;
        margin: .5rem auto 1rem auto;
        box-shadow:
            0 20px 40px rgba(0,0,0,.6),
            0 0 30px rgba(0,86,255,.2);
        text-align: center;
    }

    .hero-trust-head {
        font-size: .8rem;
        line-height: 1.4;
        font-weight: 600;
        margin-bottom: .25rem;
    }

    .hero-trust-sub {
        font-size: .75rem;
        line-height: 1.4;
        color: rgba(255,255,255,.6);
    }

    .hero-form-wrapper {
        order: 2;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .hero-form-card {
        width: 100%;
        max-width: 420px;
        padding: 1rem .9rem .9rem;
        border-radius: 14px;
        gap: .75rem;
        box-shadow:
            0 24px 60px rgba(0,0,0,.85),
            0 0 60px rgba(0,86,255,.35);
    }

    .hero-form-header {
        text-align: center;
        gap: .4rem;
        margin-bottom: .5rem;
    }

    .hero-form-eyebrow {
        font-size: .75rem;
        line-height: 1.3;
        color: #1a73ff;
        font-weight: 600;
    }

    .hero-form-title {
        font-size: .9rem;
        line-height: 1.4;
        font-weight: 600;
        color: #fff;
    }

    .hero-form-sub {
        font-size: .75rem;
        line-height: 1.4;
        color: rgba(255,255,255,.6);
    }

    .hero-form .form-control,
    .hero-form textarea.form-control {
        font-size: .85rem;
        line-height: 1.4;
        text-align: center;
        padding: .8rem .9rem;
    }

    .hero-submit-btn {
        font-size: .95rem;
        padding: .8rem .9rem;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,86,255,0.45);
    }

    .hero-privacy-note {
        font-size: .7rem;
        line-height: 1.4;
        max-width: 90%;
        margin: .5rem auto 0;
        color: rgba(255,255,255,.45);
    }
}

/* ===========================
   דסקטופ (992px ומעלה)
   =========================== */
@media (min-width: 992px) {

    .hero-lead-section {
        text-align: right;
        padding-top: 140px;      /* יותר מרווח אנכי */
        padding-bottom: 140px;
        min-height: 90vh;
    }

    .hero-grid {
        align-items: flex-start;
        column-gap: 2rem;        /* רווח בין העמודות */
    }

    .hero-copy {
        order: 1;
        align-items: flex-start;
        text-align: right;
        max-width: 560px;
        gap: 1rem;               /* טיפה מהודק אבל עדיין נושם */
    }

    .hero-title,
    .hero-title-tight {
        font-size: 2.1rem;       /* קטן יותר מהגרסה הקודמת */
        line-height: 1.25;
        font-weight: 600;
        margin: 0 0 .5rem 0;
        max-width: 540px;
    }

    .hero-desc {
        font-size: .95rem;
        line-height: 1.6;
        color: rgba(255,255,255,.8);
        max-width: 520px;
        margin-bottom: .5rem;
    }

    .hero-bullets {
        max-width: 520px;
        gap: .5rem;
        margin-bottom: 1rem;
    }

    .hero-bullet {
        font-size: .9rem;
        line-height: 1.4;
    }
    .hero-bullet i {
        font-size: .9rem;
        margin-left: .4rem;
    }

    .hero-trust {
        max-width: 360px;        /* שלא יראה ענק */
        margin-top: .75rem;
        border-radius: 10px;
        padding: .75rem 1rem;
        box-shadow:
            0 24px 60px rgba(0,0,0,.8),
            0 0 40px rgba(0,86,255,.25);
    }
    .hero-trust-head {
        font-size: .8rem;
        margin-bottom: .25rem;
        line-height: 1.4;
    }
    .hero-trust-sub {
        font-size: .75rem;
        line-height: 1.4;
    }

    /* טופס בדסקטופ */
    .hero-form-wrapper {
        order: 2;
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        transform: translateX(-1.5rem); /* דוחף את הכרטיס שמאלה = פחות באמצע */
    }

    .hero-form-card {
        max-width: 360px;        /* היה 400 */
        padding: 1.25rem 1.25rem 1rem;
        border-radius: 14px;
        gap: .75rem;
        box-shadow:
            0 30px 80px rgba(0,0,0,0.9),
            0 0 60px rgba(0,86,255,0.35);
    }

    .hero-form-header {
        gap: .4rem;
    }
    .hero-form-eyebrow {
        font-size: .75rem;
        line-height: 1.3;
    }
    .hero-form-title {
        font-size: .95rem;
        line-height: 1.4;
    }
    .hero-form-sub {
        font-size: .75rem;
        line-height: 1.4;
    }

    .hero-form .form-control,
    .hero-form textarea.form-control {
        font-size: .85rem;
        line-height: 1.4;
        padding: .8rem .9rem;
        text-align: center;
    }

    .hero-submit-btn {
        font-size: .9rem;
        padding: .8rem .9rem;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,86,255,0.4);
    }

    .hero-privacy-note {
        font-size: .7rem;
        line-height: 1.4;
        color: rgba(255,255,255,.45);
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}



.price-highlight {
  color: #1a73ff; /* כחול חי ובולט */
  font-weight: 700;
  font-size: 1.2em;
  background: linear-gradient(90deg, #1a73ff, #6d7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowPulse 2s ease-in-out infinite;
}

/* אנימציה קלה של הבהוב */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(26,115,255,0.6), 0 0 16px rgba(26,115,255,0.4);
  }
  50% {
    text-shadow: 0 0 12px rgba(109,124,255,0.8), 0 0 24px rgba(26,115,255,0.5);
  }
}
