/* =============================================================
   PlantOS — אתר שיווקי (Marketing site)
   RTL, עברית, מראה B2B מודרני ותעשייתי.
   ============================================================= */
:root {
  --navy-900:#0c2138; --navy-800:#0f2942; --navy-700:#143453; --navy-600:#1b4269;
  --blue-600:#235284; --blue-500:#2f6aa8; --blue-400:#4a86c5; --blue-300:#7fb0dc;
  --accent:#f59e0b; --accent-600:#d97706; --accent-soft:#fef3e2;
  --green:#16a34a; --red:#dc2626;
  --bg:#f6f8fb; --bg-2:#eef2f7; --surface:#ffffff;
  --border:#e4e9f0; --border-2:#d3dce6;
  --text:#0f1e2e; --text-2:#41546a; --text-3:#7d8da3;
  --radius:16px; --radius-lg:24px; --radius-sm:11px;
  --shadow-sm:0 1px 2px rgba(12,33,56,.06);
  --shadow:0 6px 24px rgba(12,33,56,.08);
  --shadow-lg:0 20px 60px rgba(12,33,56,.16);
  --maxw:1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; direction: rtl; background: var(--bg); color: var(--text);
  font-family: "Assistant","Rubik","Heebo",system-ui,"Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing: antialiased; font-size: 17px; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
p { margin: 0; }
.ic { width: 24px; height: 24px; fill: currentColor; flex: 0 0 auto; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 13px 26px; border-radius: 12px; font-size: 16px; font-weight: 700;
  border: 1.5px solid transparent; transition: transform .15s, background .15s, box-shadow .15s; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn .ic { width: 20px; height: 20px; }
.btn-primary { background: var(--accent); color: #3a2600; box-shadow: 0 6px 20px rgba(245,158,11,.32); }
.btn-primary:hover { background: var(--accent-600); color: #fff; }
.btn-navy { background: var(--blue-600); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; border-color: var(--border-2); color: var(--text); }
.btn-ghost:hover { background: var(--surface); border-color: var(--blue-400); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 16px 32px; font-size: 17.5px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 14px; height: 72px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 21px;
  background: linear-gradient(135deg, var(--accent), var(--accent-600)); box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.logo small { display: block; font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: 0; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: 20px; }
.nav-links a {
  padding: 9px 14px; border-radius: 9px; font-size: 15.5px; font-weight: 600; color: var(--text-2); transition: .15s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--text); }
.nav-links a.active { color: var(--blue-600); background: #e9f1f9; }
.nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; transition: .2s; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); padding: 14px 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .25s; margin: 0; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; font-size: 17px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; margin-inline-start: auto; }
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(74,134,197,.18), transparent 60%),
    linear-gradient(165deg, rgba(12,33,56,.92) 0%, rgba(15,41,66,.72) 50%, rgba(12,33,56,.88) 100%),
    url('img/hero-plant.jpg') center 60% / cover no-repeat, var(--navy-900);
  color: #eaf2fb; overflow: hidden; padding: 56px 0 62px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14); padding: 7px 15px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: #cfe0f2; margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: 48px; line-height: 1.08; margin-bottom: 16px; color: #fff; }
.hero h1 .hl { color: var(--accent); }
.hero .lead { font-size: 19px; color: #a9c1db; max-width: 560px; margin-bottom: 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; color: #8ca6c4; font-size: 14.5px; }
.hero-trust b { color: #fff; font-size: 21px; font-weight: 800; display: block; letter-spacing: -.02em; }
@media (max-width: 620px) { .hero h1 { font-size: 38px; } .hero .lead { font-size: 18px; } }

/* hero mock (device) */
.hero-visual { position: relative; }
.mock {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 16px; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mock-body { background: #f6f8fb; border-radius: 12px; padding: 16px; color: var(--text); }
.mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 12px; }
.mock-kpi { background: #fff; border: 1px solid var(--border); border-radius: 11px; padding: 12px; }
.mock-kpi .v { font-size: 22px; font-weight: 800; }
.mock-kpi .k { font-size: 11.5px; color: var(--text-3); font-weight: 600; }
.mock-kpi.red .v { color: var(--red); } .mock-kpi.green .v { color: var(--green); } .mock-kpi.amber .v { color: var(--accent-600); }
.mock-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; font-size: 13px; }
.mock-row .tag { margin-inline-start: auto; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.tag-red { background: #fee2e2; color: #b91c1c; } .tag-blue { background: #dbeafe; color: #1d4ed8; } .tag-green { background: #dcfce7; color: #15803d; }
.mock-emoji { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: #eef2f7; font-size: 16px; }
.hero-badge {
  position: absolute; bottom: -18px; inset-inline-start: -10px; background: #fff; color: var(--text);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 14px;
}
.hero-badge .ic { color: var(--green); }
@media (max-width: 960px) { .hero-badge { display: none; } }

/* ---------- generic section ---------- */
.section { padding: 58px 0; }
.section.tight { padding: 38px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.section-head.start { text-align: start; margin-inline: 0; }
.kicker { color: var(--blue-500); font-weight: 800; font-size: 14.5px; letter-spacing: .02em; margin-bottom: 12px; display: inline-block; text-transform: uppercase; }
.section h2 { font-size: 38px; margin-bottom: 16px; }
.section .sub { font-size: 18.5px; color: var(--text-2); }
@media (max-width: 620px) { .section h2 { font-size: 30px; } .section { padding: 44px 0; } }

/* ---------- feature cards ---------- */
.grid { display: grid; gap: 16px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 940px) { .g-3,.g-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .g-2,.g-3,.g-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }
.card .c-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, #e9f1f9, #dbe8f5); color: var(--blue-600);
}
.card .c-ic.amber { background: linear-gradient(135deg, #fef3e2, #fde3bd); color: var(--accent-600); }
.card .c-ic.green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.card .c-ic .ic { width: 27px; height: 27px; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--text-2); font-size: 16px; }

/* ---------- industries ---------- */
.ind-card { position: relative; overflow: hidden; padding: 0; display: block; }
.ind-photo {
  height: 172px; background-size: cover; background-position: center; position: relative;
}
.ind-photo.tall { height: 235px; }
.ind-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,33,56,.04) 40%, rgba(12,33,56,.42));
}
.ind-photo .ind-ic {
  position: absolute; bottom: 14px; inset-inline-start: 16px; z-index: 2;
  width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.96);
  display: grid; place-items: center; color: var(--blue-600); font-size: 19px;
  box-shadow: 0 6px 18px rgba(12,33,56,.3);
}
.ind-body { padding: 20px 24px 24px; }
.ind-body h3 { font-size: 21px; margin-bottom: 4px; }
.ind-body .ind-sub { color: var(--text-3); font-size: 14.5px; }
.ind-body .chip-list { margin-top: 14px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 13px; font-size: 13.5px; font-weight: 600; color: var(--text-2);
}

/* list with checks */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--text-2); }
.check-list li .ic { color: var(--green); width: 22px; height: 22px; margin-top: 2px; }
.check-list.dark li { color: #b9cee2; }
.check-list.dark li .ic { color: var(--accent); }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.split.rev > :first-child { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } .split.rev > :first-child { order: 0; } }
.split h2 { font-size: 32px; margin-bottom: 16px; }
.split p { color: var(--text-2); font-size: 17.5px; margin-bottom: 20px; }
.visual-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 22px;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step .num {
  width: 48px; height: 48px; border-radius: 13px; background: var(--navy-800); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 20px; margin-bottom: 16px;
}
.step .num.amber { background: var(--accent); color: #3a2600; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15.5px; }

/* ---------- stat band ---------- */
.statband {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: #fff; border-radius: var(--radius-lg);
  padding: 34px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
@media (max-width: 780px) { .statband { grid-template-columns: repeat(2,1fr); padding: 34px; gap: 24px; } }
.stat .v { font-size: 44px; font-weight: 800; letter-spacing: -.03em; }
.stat .v .u { font-size: 24px; color: var(--accent); }
.stat .k { color: #9fb8d4; font-size: 15.5px; margin-top: 4px; }

/* ---------- module list (product) ---------- */
.mod { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: .18s; }
.mod:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.mod .m-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #e9f1f9; color: var(--blue-600); flex: 0 0 auto; }
.mod .m-ic .ic { width: 24px; height: 24px; }
.mod h3 { font-size: 18px; margin-bottom: 5px; }
.mod p { color: var(--text-2); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(245,158,11,.18), transparent 60%),
    linear-gradient(160deg, var(--blue-600), var(--navy-800));
  color: #fff; border-radius: var(--radius-lg); padding: 44px; text-align: center; overflow: hidden;
}
.cta h2 { font-size: 36px; margin-bottom: 14px; color: #fff; }
.cta p { font-size: 19px; color: #cfe0f2; max-width: 560px; margin: 0 auto 28px; }
.cta .hero-cta { justify-content: center; }
@media (max-width: 620px) { .cta { padding: 40px 26px; } .cta h2 { font-size: 28px; } }

/* ---------- pill row ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 15px; color: var(--text-2); display: inline-flex; gap: 8px; align-items: center;
}
.pill .emoji { font-size: 18px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff;
  padding: 48px 0 44px; text-align: center;
  background-size: cover; background-position: center;
}
.page-hero h1 { font-size: 44px; margin-bottom: 16px; color: #fff; }
.page-hero p { font-size: 19px; color: #a9c1db; max-width: 640px; margin: 0 auto; }
@media (max-width: 620px) { .page-hero h1 { font-size: 33px; } }

/* ---------- about ---------- */
.value { display: flex; gap: 14px; align-items: flex-start; }
.value .v-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; flex: 0 0 auto; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-2); border-radius: 12px;
  font: inherit; color: var(--text); background: var(--surface); outline: none; transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(47,106,168,.13); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: #fff; border-radius: var(--radius-lg); padding: 32px; }
.contact-info h3 { font-size: 22px; margin-bottom: 18px; }
.ci-row { display: flex; gap: 13px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci-row:last-child { border-bottom: none; }
.ci-row .ic { color: var(--accent); }
.ci-row a, .ci-row span { color: #d6e4f2; font-weight: 600; }
.form-success { display: none; background: #dcfce7; border: 1px solid #86efac; color: #15803d; border-radius: 12px; padding: 16px 18px; font-weight: 700; align-items: center; gap: 10px; }
.form-success.show { display: flex; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: start; padding: 20px 24px; font-size: 17.5px; font-weight: 700; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 12px; color: var(--text); }
.faq-q .ic { margin-inline-start: auto; transition: transform .2s; color: var(--text-3); }
.faq-item.open .faq-q .ic { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-2); font-size: 16px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #b9cee2; padding: 42px 0 22px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #8ca6c4; font-size: 15px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .03em; font-weight: 800; }
.footer-col a { display: block; color: #9fb8d4; font-size: 15px; padding: 5px 0; transition: .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #7d95b3; font-size: 14px; }

/* ---------- icons (Font Awesome helpers) ---------- */
.logo-mark i { color: #fff; font-size: 19px; }
.pill i { color: var(--accent-600); font-size: 15px; }
.mock-emoji { color: var(--blue-600); font-size: 14px; }
.tease-ic {
  width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.12);
  display: grid; place-items: center; font-size: 19px; color: var(--accent); flex: 0 0 auto;
}
.app-tease-title i { margin-inline-end: 7px; }

.c-ic i { font-size: 22px; }
.m-ic i { font-size: 19px; }

/* ---------- photo frame ---------- */
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
