/* ═══════════════════════════════════════════════════════════════
   טיב מיזוג — teev-mizug.co.il
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue-900: #08315F;
  --blue-800: #0A3B73;
  --blue-700: #0E4C92;
  --blue-500: #1560BD;
  --blue-200: #A9D6FA;
  --blue-100: #DCEBF7;
  --blue-50: #EAF4FB;
  --bg: #F4FAFE;
  --ink: #1C2B3A;
  --ink-strong: #12253A;
  --ink-mid: #45596D;
  --ink-soft: #5B7186;
  --orange: #F58A2B;
  --orange-dark: #E07A1C;
  --wa: #25D366;
  --wa-dark: #1FB858;
  --font-body: 'Heebo', 'Segoe UI', Tahoma, Arial, sans-serif;
  --font-head: 'Rubik', 'Heebo', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px; /* room for the sticky CTA bar (mobile) */
}

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-500); }

h1, h2, h3 { margin: 0; }

.skip-link {
  position: absolute;
  top: -48px;
  inset-inline-start: 12px;
  z-index: 100;
  background: var(--blue-700);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  transition: top .15s;
}
.skip-link:focus { top: 0; color: #FFFFFF; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ══════════ Buttons ══════════ */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: #FFFFFF;
  border-radius: 13px;
  min-height: 56px;
  padding: 10px 20px;
  transition: background .15s, transform .15s;
}

.btn--call {
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(245, 138, 43, .35);
}
.btn--call:hover { background: var(--orange-dark); color: #FFFFFF; }

.btn--wa {
  background: var(--wa);
  box-shadow: 0 2px 8px rgba(37, 211, 102, .28);
}
.btn--wa:hover { background: var(--wa-dark); color: #FFFFFF; }

.btn--lg {
  font-size: 19px;
  padding: 15px 28px;
  border-radius: 14px;
  flex: 1 1 220px;
  box-shadow: 0 6px 20px rgba(245, 138, 43, .4);
}
.btn--wa.btn--lg { box-shadow: 0 6px 20px rgba(37, 211, 102, .3); }
.btn--lg:hover { transform: translateY(-1px); }

.btn--header {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  min-height: 44px;
}

.wa-icon { flex-shrink: 0; }

/* ══════════ Header ══════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blue-100);
}

.site-header__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--blue-500), var(--blue-700));
  display: grid;
  place-items: center;
  color: var(--blue-50);
  font-size: 20px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--blue-700);
  line-height: 1.1;
}

.brand__tag { font-size: 12px; color: var(--ink-soft); line-height: 1.2; }

/* ══════════ Hero ══════════ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--blue-800) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  color: #FFFFFF;
}

.hero__air {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}
.hero__blob--1 {
  top: -60px;
  inset-inline-start: -40px;
  width: 380px;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(169, 214, 250, .5), rgba(169, 214, 250, 0) 70%);
  animation: airDrift 9s ease-in-out infinite;
}
.hero__blob--2 {
  top: 30%;
  inset-inline-end: -80px;
  width: 460px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(234, 244, 251, .28), rgba(234, 244, 251, 0) 70%);
  animation: airDrift2 12s ease-in-out infinite;
}
.hero__blob--3 {
  bottom: -80px;
  inset-inline-start: 30%;
  width: 420px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(111, 197, 255, .22), rgba(111, 197, 255, 0) 70%);
  animation: airDrift 14s ease-in-out infinite;
}

@keyframes airDrift {
  0%   { transform: translateX(0) translateY(0); opacity: .55; }
  50%  { transform: translateX(-60px) translateY(-24px); opacity: .9; }
  100% { transform: translateX(0) translateY(0); opacity: .55; }
}
@keyframes airDrift2 {
  0%   { transform: translateX(0) translateY(0) scale(1); opacity: .35; }
  50%  { transform: translateX(80px) translateY(18px) scale(1.08); opacity: .6; }
  100% { transform: translateX(0) translateY(0) scale(1); opacity: .35; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 44px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.hero__copy { flex: 1 1 420px; min-width: 0; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 244, 251, .14);
  border: 1px solid rgba(234, 244, 251, .3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #DCEEFC;
  margin: 0 0 18px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FE39A;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.hero__title-hl { color: var(--blue-200); }

.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: #D7E9F9;
  margin: 0 0 26px;
  max-width: 56ch;
}

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

.hero__trust {
  margin: 16px 0 0;
  font-size: 14px;
  color: #BBD9F3;
  font-weight: 500;
}

.hero__media { flex: 0 1 300px; min-width: 240px; margin: 0 auto; }

.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(234, 244, 251, .25);
  box-shadow: 0 20px 50px rgba(4, 25, 50, .4);
}

/* ══════════ Service area strip ══════════ */

.area-strip {
  background: var(--blue-900);
  color: #C9E2F8;
  padding: 12px 20px;
  margin: 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 500;
}
.area-strip strong { color: #FFFFFF; }

/* ══════════ Sections ══════════ */

.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 20px 8px;
}

.section--faq { max-width: 760px; padding-bottom: 12px; }

.section__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--blue-700);
  margin: 0 0 22px;
}

.section__sub {
  color: var(--ink-soft);
  font-size: 16px;
  margin: -16px 0 26px;
}

/* ══════════ Services ══════════ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.service {
  background: #FFFFFF;
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  padding: 22px 20px;
}

.service__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-50);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--blue-700);
  margin: 0 0 6px;
}

.service p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.55;
}

.service--featured {
  grid-column: 1 / -1;
  background: linear-gradient(155deg, var(--blue-700), var(--blue-500));
  border: none;
  color: #FFFFFF;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(14, 76, 146, .25);
}

.service--featured__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(234, 244, 251, .15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service--featured__body { flex: 1 1 260px; }

.service--featured__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service--featured h3 {
  font-size: 21px;
  color: #FFFFFF;
  margin: 0;
}

.service--featured p {
  margin: 6px 0 0;
  color: #D7E9F9;
  font-size: 15.5px;
}

.service__badge {
  background: var(--orange);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 12px;
}

.service--featured .btn--call {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 12px;
  min-height: 48px;
}

/* ══════════ Why us ══════════ */

.whys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.why {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--blue-50);
  border-radius: 16px;
  padding: 18px 16px;
}

.why__check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-700);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.why__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-strong);
}

.why__text {
  color: var(--ink-mid);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 3px 0 0;
}

/* ══════════ How it works ══════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  background: #FFFFFF;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.step__num--accent { background: var(--orange); color: #FFFFFF; }

.step__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-strong);
}

.step__text { color: var(--ink-soft); font-size: 14.5px; margin: 4px 0 0; }

/* ══════════ CTA band ══════════ */

.cta-band {
  margin: 52px 0 0;
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}

.cta-band__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 30px);
  color: var(--blue-700);
  margin: 0 0 8px;
}

.cta-band__sub { color: var(--ink-mid); font-size: 16px; margin: 0 0 22px; }

.cta-band__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-band__ctas .btn--lg {
  font-size: 18px;
  padding: 14px 26px;
  min-height: 54px;
  max-width: 300px;
  box-shadow: 0 6px 18px rgba(245, 138, 43, .35);
}
.cta-band__ctas .btn--wa.btn--lg { box-shadow: 0 6px 18px rgba(37, 211, 102, .28); }

/* ══════════ FAQ ══════════ */

.faqs { display: flex; flex-direction: column; gap: 10px; }

.faq {
  background: #FFFFFF;
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  padding: 0 18px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-strong);
  padding: 16px 0;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }

.faq__chev {
  color: var(--blue-500);
  font-size: 13px;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq[open] .faq__chev { transform: rotate(180deg); }

.faq p {
  margin: 0;
  padding: 0 0 16px;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.65;
}

/* ══════════ Footer ══════════ */

.site-footer {
  margin-top: 48px;
  background: var(--blue-900);
  color: #C9E2F8;
}

.site-footer__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 36px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.site-footer__col { flex: 1 1 220px; }

.brand--footer { margin-bottom: 10px; }

.brand__icon--footer {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(234, 244, 251, .12);
  font-size: 18px;
}

.brand__name--footer { color: #FFFFFF; }

.site-footer__heading {
  font-family: var(--font-body);
  font-weight: 700;
  color: #FFFFFF;
  font-size: 15px;
  margin: 0 0 10px;
}

.site-footer__text { font-size: 14.5px; line-height: 1.8; margin: 0; }

.site-footer__link {
  color: var(--blue-200);
  font-weight: 600;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-footer__link:hover { color: #FFFFFF; }

.site-footer__legal {
  border-top: 1px solid rgba(201, 226, 248, .15);
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  color: #7FA6CC;
}

/* ══════════ Sticky mobile CTA bar ══════════ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--blue-100);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(8, 49, 95, .12);
}

.sticky-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sticky-cta .btn { box-shadow: none; }

/* Desktop: the header CTA is enough — hide the sticky bar */
@media (min-width: 820px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
}

/* ══════════ Reduced motion ══════════ */

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