﻿/* ============================================================
   iFactorPOS — דף נחיתה (נבנה מחדש 2026)
   שפת המותג של ifg.co.il/v4 · Mobile-first · Heebo
   ============================================================ */

:root {
    --bg-dark: #0a0f1e;
    --bg-dark-2: #0e1630;
    --bg-light: #f6f8fc;
    --card-border: #e5eaf3;
    --text-dark: #0f172a;
    --text-muted: #5b6779;
    --text-light: #eef2f9;
    --text-light-muted: #9aa7bd;
    --accent: #2f7df6;
    --accent-2: #17c3e8;
    --accent-grad: linear-gradient(120deg, #2f7df6, #17c3e8);
    --wa-green: #25d366;
    --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Heebo', 'Segoe UI', Tahoma, Arial, sans-serif;
    direction: rtl;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--accent); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- כפתורים ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 17px;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--accent-grad); color: #fff; box-shadow: 0 10px 26px rgba(47, 125, 246, .40); }
.btn-primary:hover { transform: translateY(-2px); color: #fff; }

.btn-ghost { background: rgba(255, 255, 255, .08); color: var(--text-light); border: 1px solid rgba(255, 255, 255, .28); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; transform: translateY(-2px); }

.btn-call { background: var(--wa-green); color: #fff; font-size: 21px; letter-spacing: .5px; box-shadow: 0 10px 26px rgba(37, 211, 102, .35); }
.btn-call:hover { transform: translateY(-2px); color: #fff; }

/* ---------- פס עליון ---------- */
.lp-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 30, .90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.lp-logo { height: 34px; width: auto; }
.top-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--accent-grad);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(47, 125, 246, .35);
}
.top-call:hover { color: #fff; }

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(900px 480px at 85% -10%, rgba(47, 125, 246, .32), transparent 60%),
                radial-gradient(700px 420px at 8% 110%, rgba(23, 195, 232, .20), transparent 60%),
                linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-light);
    padding: 56px 0 60px;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 40%, transparent 100%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-img { order: -1; max-width: 420px; margin: 0 auto; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(23, 195, 232, .12);
    border: 1px solid rgba(23, 195, 232, .35);
    color: #7fe3f7;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.lp-hero h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.lp-hero h1 .grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero .lead { font-size: clamp(16px, 1.9vw, 19px); color: var(--text-light-muted); margin-bottom: 26px; max-width: 540px; }
@media (max-width: 860px) { .lp-hero .lead { margin-inline: auto; } }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-img img {
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

/* ---------- הטבת BIZנס (literal1) ---------- */
.deal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    flex-wrap: wrap;
    text-align: center;
    margin: -26px auto 0;
    position: relative;
    z-index: 5;
    padding: 18px 26px;
    background: linear-gradient(120deg, #f59e0b, #f43f5e);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 16px 38px rgba(244, 63, 94, .35);
}
.deal-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    font-weight: 700;
    font-size: 14.5px;
}
.deal-text { font-size: 20px; font-weight: 800; }

/* תאימות למבנה הישן של ההטבה (title1) אם הקוד הישן עדיין רץ */
.deal title1 { display: block; font-size: 17px; font-weight: 800; }

/* ---------- יתרונות ---------- */
.lp-features { padding: 64px 0 56px; }
.lp-features h2 {
    text-align: center;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    margin-bottom: 34px;
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.feat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
    transition: transform .18s ease, box-shadow .18s ease;
}
.feat b { display: block; font-size: 16px; font-weight: 700; line-height: 1.4; }
.feat span { display: block; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }
.feat:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(15, 23, 42, .10); }
.feat i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 125, 246, .12), rgba(23, 195, 232, .12));
    color: var(--accent);
    font-size: 18px;
}

/* ---------- סקשן הטופס ---------- */
.lp-form-sec {
    background: radial-gradient(800px 400px at 80% -20%, rgba(47, 125, 246, .30), transparent 60%),
                linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-light);
    padding: 64px 0;
    scroll-margin-top: 70px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }

.form-side h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; margin-bottom: 10px; }
.form-side p { color: var(--text-light-muted); margin-bottom: 20px; font-size: 17px; }
.side-points { list-style: none; margin-top: 26px; }
.side-points li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 16px; }
.side-points i { color: var(--accent-2); }

/* כרטיס הטופס */
.lead-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    color: var(--text-dark);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
}
.lead-title { font-weight: 800; font-size: 18px; margin-bottom: 16px; color: var(--text-dark); }

.fld {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 13px 14px;
    font-size: 16.5px;
    font-family: inherit;
    color: var(--text-dark);
    background: #f6f8fc;
    border: 1.5px solid #dde5f0;
    border-radius: 12px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.fld:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(47, 125, 246, .14);
    background: #fff;
}
.fld::placeholder { color: #8a96a8; }

.cap-q { font-size: 15px; color: var(--text-muted); margin: 6px 0 10px; }
.cap-chip {
    display: inline-block;
    min-width: 26px;
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 8px;
    background: rgba(47, 125, 246, .10);
    color: var(--accent);
    font-weight: 800;
    text-align: center;
}
.cap-answer { max-width: 140px; }

.btn-submit {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 15px;
    border: 0;
    border-radius: 999px;
    background: var(--accent-grad);
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(47, 125, 246, .40);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(47, 125, 246, .50); }
.btn-submit:active { transform: scale(.98); }

.form-note { text-align: center; font-size: 12.5px; color: #8a96a8; margin-top: 10px; }

/* הודעת תודה (Label1) */
.thanks-msg {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    color: #128c4b;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
}
.thanks-msg.thanks-err { color: #c02626; font-size: 17px; }
.thanks-msg.thanks-err a { color: #c02626; text-decoration: underline; }

/* ---------- הסמכות ---------- */
.lp-trust { background: #fff; border-top: 1px solid var(--card-border); padding: 26px 0; }
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .trust-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-items { grid-template-columns: 1fr; } }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.trust-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 125, 246, .10), rgba(23, 195, 232, .10));
    color: var(--accent);
    font-size: 16px;
}

/* ---------- פוטר משפטי ---------- */
.btm {
    background: var(--bg-dark);
    color: var(--text-light-muted);
    text-align: center;
    font-size: 12px;
    line-height: 1.9;
    padding: 26px 20px;
}
.btm a { color: var(--text-light-muted); }

/* ---------- WhatsApp צף ---------- */
.wa-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--wa-green);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- מובייל ---------- */
@media (max-width: 520px) {
    .lp-hero { padding: 40px 0 48px; }
    .hero-cta .btn { width: 100%; }
    .deal { margin-top: -20px; flex-direction: column; gap: 6px; }
    .lp-features { padding: 48px 0 40px; }
    .lp-form-sec { padding: 48px 0; }
    .top-call { font-size: 15px; padding: 8px 16px; }
}
