/* ===== נ.ג. עוגן — דף נחיתה ===== */

:root {
  --navy: #0b2f47;
  --navy-2: #10456a;
  --navy-3: #0d5f8c;
  --navy-deep: #071f2f;
  --sky: #00aeef;
  --sky-dark: #00a0dc;
  --sky-light: #4ecdff;
  --sky-tint: #e6f6fd;
  --bg-soft: #f4f9fc;
  --line: #e6eef4;
  --line-2: #e2edf4;
  --text: #0b2f47;
  --text-2: #4d6d84;
  --text-3: #5b7c92;
  --text-nav: #244a63;
  --white: #fff;
  --font: "Heebo", Arial, sans-serif;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow-sky: 0 14px 30px rgba(0, 174, 239, 0.35);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sky-dark); text-decoration: none; transition: color .2s, background-color .2s, transform .2s; }
a:hover { color: var(--navy); }

::selection { background: var(--sky); color: var(--white); }

h1, h2, h3 { margin: 0; font-weight: 900; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.muted { color: var(--text-2); font-weight: 300; font-size: 16px; }
.center { text-align: center; }
.accent { color: var(--sky-light); }

.container { max-width: var(--container); margin: 0 auto; padding-inline: 24px; }
.container-narrow { max-width: 860px; }

.section { padding-block: 88px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2, .lead-grid h2 { font-size: 42px; margin-bottom: 16px; }
.section-head p, .section-text { font-size: 19px; line-height: 1.6; font-weight: 300; color: var(--text-2); }
.section-text { margin-bottom: 30px; }

.eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: .14em;
  color: var(--sky-dark); margin-bottom: 14px;
}
.eyebrow-light { color: var(--sky-light); }

.icon { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 18px;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 17px 30px; }
.btn-pill { border-radius: 999px; font-size: 16px; padding: 12px 22px; }
.btn-primary {
  background: var(--sky); color: var(--white);
  box-shadow: 0 12px 26px rgba(0, 174, 239, 0.28);
}
.btn-primary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: var(--white); font-weight: 500; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-outline { background: var(--white); border-color: #b9d8e8; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding-block: 14px; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; gap: 26px; font-size: 16px; font-weight: 500; margin-inline-start: auto; }
.nav a { color: var(--text-nav); }
.nav a:hover { color: var(--sky-dark); }
.header-phone .icon { display: none; }

.nav-toggle {
  display: none; margin-inline-start: auto;
  width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--white); cursor: pointer; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
}
.hero-glow {
  position: absolute; inset-inline-start: -140px; top: -120px;
  width: 420px; height: 420px; border-radius: 999px;
  background: radial-gradient(circle, rgba(0,174,239,.45), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; gap: 56px; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  padding-block: 74px 84px;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  padding: 8px 16px; font-size: 15px; font-weight: 500; letter-spacing: .02em;
  margin-bottom: 26px;
}
.eyebrow-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--sky); }
.hero h1 { font-size: 58px; line-height: 1.05; margin-bottom: 22px; text-wrap: pretty; }
.hero .lead {
  font-size: 22px; line-height: 1.5; font-weight: 300; color: #d7ebf7;
  margin-bottom: 34px; max-width: 520px;
}
.hero .lead strong { font-weight: 700; color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 0; font-size: 16px; font-weight: 500; color: #bfdff0; }
.hero-trust li + li::before { content: "|"; color: rgba(255,255,255,.3); margin-inline: 15px; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-3);
  box-shadow: 0 30px 70px rgba(3,20,33,.45);
}
.hero-photo img { width: 100%; height: 480px; object-fit: cover; object-position: center 28%; }
.hero-card {
  position: absolute; inset-inline-start: -18px; bottom: -22px;
  background: var(--white); color: var(--navy); border-radius: 18px;
  padding: 18px 22px; max-width: 260px;
  box-shadow: 0 18px 40px rgba(3,20,33,.28);
}
.hero-card-label { font-size: 15px; font-weight: 500; color: var(--text-3); margin-bottom: 4px; }
.hero-card-title { font-size: 20px; font-weight: 900; line-height: 1.2; }

/* ---------- Roles strip ---------- */
.roles { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.roles-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding-block: 42px;
}
.roles-title { font-size: 19px; font-weight: 700; }
.roles-list { display: flex; flex-wrap: wrap; gap: 12px; }
.roles-list li {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 12px 9px 18px; font-size: 16px; font-weight: 700;
}
.swatch { width: 14px; height: 14px; border-radius: 4px; background: var(--c); }

/* ---------- Services ---------- */
.services { padding-bottom: 24px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.card {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line);
  background: var(--white); box-shadow: 0 10px 26px rgba(11,47,71,.06);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(11,47,71,.12); }
.card img { width: 100%; height: 210px; object-fit: cover; object-position: center 30%; }
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { font-size: 23px; }
.card p { font-size: 16.5px; line-height: 1.55; font-weight: 300; color: var(--text-2); }

/* ---------- Why ---------- */
.why-panel {
  position: relative; overflow: hidden; background: var(--navy); color: var(--white);
  border-radius: 32px; padding: 56px 48px;
}
.why-glow {
  position: absolute; inset-inline-end: -80px; bottom: -120px;
  width: 340px; height: 340px; border-radius: 999px;
  background: radial-gradient(circle, rgba(0,174,239,.35), transparent 68%);
  pointer-events: none;
}
.why-grid {
  position: relative; display: grid; gap: 48px; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.why-grid h2 { font-size: 38px; line-height: 1.14; margin-bottom: 16px; }
.why-grid > div > p { font-size: 18px; line-height: 1.6; font-weight: 300; color: #cfe6f4; }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.benefits li {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 22px;
}
.benefit-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--sky);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.benefit-icon svg { width: 22px; height: 22px; fill: var(--white); }
.benefit-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.benefit-text { font-size: 16px; line-height: 1.5; font-weight: 300; color: #c8e2f2; }

/* ---------- How ---------- */
.how { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 82px; }
.how h2, .faq h2 { font-size: 38px; margin-bottom: 44px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: step; }
.steps li { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px; }
.step-num { font-size: 15px; font-weight: 900; color: var(--sky-dark); margin-bottom: 12px; direction: ltr; text-align: right; }
.step-title { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 16.5px; line-height: 1.55; font-weight: 300; color: var(--text-2); }

/* ---------- Contact ---------- */
.lead-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 52px; align-items: center; }
.contact-list { display: flex; flex-direction: column; gap: 14px; font-size: 18px; font-weight: 500; }
.contact-list a, .contact-static { display: flex; gap: 12px; align-items: center; color: var(--navy); }
.contact-list a:hover { color: var(--sky-dark); }
.contact-static { color: var(--text-2); font-weight: 300; }
.contact-icon {
  width: 34px; height: 34px; border-radius: 10px; background: var(--sky-tint);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--sky-dark); }
.contact-icon-soft { background: #f0f6fa; }
.contact-icon-soft svg { fill: var(--text-2); }
.contact-box {
  background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 26px;
  padding: 38px; display: flex; flex-direction: column; gap: 18px;
}
.contact-box-title { font-size: 26px; font-weight: 900; line-height: 1.2; }
.contact-box-text { font-size: 17.5px; line-height: 1.6; font-weight: 300; color: var(--text-2); }
.contact-box-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: 82px; }
.faq h2 { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; font-family: var(--font);
  font-size: 20px; font-weight: 700; color: var(--navy); text-align: start; padding: 22px 24px;
}
.faq-q:hover { color: var(--sky-dark); }
.faq-sign { position: relative; width: 18px; height: 18px; flex: none; }
.faq-sign::before, .faq-sign::after {
  content: ""; position: absolute; background: var(--sky); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .25s;
}
.faq-sign::before { width: 18px; height: 2px; }
.faq-sign::after { width: 2px; height: 18px; }
.faq-item.is-open .faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 24px 24px; font-size: 17px; line-height: 1.6; font-weight: 300; color: var(--text-2); }
.faq-a[hidden] { display: none; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), #0d6a9c); color: var(--white); }
.cta-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-block: 64px; }
.cta-line { font-size: 34px; font-weight: 900; line-height: 1.15; }
.cta-line + .cta-line { margin-top: 8px; }
.btn-cta { font-size: 19px; padding: 18px 34px; box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn-cta:hover { background: var(--white); color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #9dbdd1; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between;
  padding-block: 46px; font-size: 16px; font-weight: 300;
}
.footer-inner img { height: 58px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer-links a { color: #9dbdd1; }
.footer-links a:hover { color: var(--white); }
.footer-note { font-size: 14px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; inset-inline-start: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sky); color: var(--white); font-weight: 700; font-size: 16px;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,174,239,.4);
}
.wa-float:hover { background: var(--navy); color: var(--white); }
.wa-float .icon { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .section-head h2, .lead-grid h2 { font-size: 36px; }
}

@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(11,47,71,.1);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 24px; border-top: 1px solid var(--line); font-size: 18px; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 14px; }
  .header-phone { padding: 12px 16px; }
  .header-phone .icon { display: block; }
  .hero-grid { gap: 44px; padding-block: 48px 64px; }
  .hero-card { inset-inline-start: 12px; bottom: -18px; max-width: 220px; padding: 14px 18px; }
  .why-panel { padding: 40px 28px; border-radius: 24px; }
  .section { padding-block: 64px; }
  .roles-inner { justify-content: center; text-align: center; }
  .roles-list { justify-content: center; }
}

@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .brand img { height: 44px; }
  .header-phone span.ltr { display: none; }
  .header-phone { padding: 12px; border-radius: 12px; }
  .hero h1 { font-size: 36px; }
  .hero .lead { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-photo img { height: 340px; }
  .section-head h2, .lead-grid h2, .why-grid h2, .how h2, .faq h2 { font-size: 30px; }
  .cta-line { font-size: 26px; }
  .cta-inner { justify-content: center; text-align: center; }
  .contact-box { padding: 26px 22px; }
  .contact-box-actions .btn { width: 100%; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .hero-trust li + li::before { content: none; }
  .hero-trust li::before { content: "✓"; color: var(--sky-light); margin-inline-end: 8px; font-weight: 700; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .faq-q { font-size: 18px; padding: 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
