/* ═══════════════════════════════════════════════════════════
   LANDING PAGE (Ads) — Instalator24
   Conversion-focused, minimal nav, mobile-first
   ═══════════════════════════════════════════════════════════ */

/* Hide default theme chrome on LP body */
body.landing-page .urgency-banner,
body.landing-page .top-bar,
body.landing-page .header,
body.landing-page .mobile-nav,
body.landing-page .scroll-top,
body.landing-page .sticky-cta,
body.landing-page .lead-popup-overlay,
body.landing-page > .header,
body.landing-page .footer,
body.landing-page .brands { display: none !important; }

body.landing-page main { padding: 0 !important; }

/* ─── LP minimal header ─── */
.lp-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(8,23,70,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-logo img { height: 44px; width: auto; display: block; object-fit: contain; }
.lp-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lp-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.lp-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: pulse 2s infinite;
}
.lp-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
}
.lp-wa:hover { background: #1ebe57; }

/* ─── LP Hero ─── */
.lp-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 80%, rgba(222,152,47,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(222,152,47,0.06) 0%, transparent 60%);
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
}

.lp-hero-content { color: #fff; padding-top: 12px; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(222,152,47,0.15);
  border: 1px solid rgba(222,152,47,0.3);
  border-radius: 60px;
  padding: 6px 16px 6px 8px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.lp-badge-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px;
}

.lp-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -0.5px;
}
.lp-hero h1 span { color: var(--orange); }
.lp-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  max-width: 540px;
}

.lp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.lp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}
.lp-bullets i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.lp-hero-trust strong { color: var(--orange); font-size: 24px; font-family: 'Plus Jakarta Sans', sans-serif; display: block; }

/* Hero CTA mobile only (wizard is on side desktop) */
.lp-hero-cta-mobile {
  display: none;
  gap: 10px;
  margin-top: 24px;
}
.lp-hero-cta-mobile a {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-hero-cta-mobile .btn-orange { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(222,152,47,0.4); }
.lp-hero-cta-mobile .btn-wa { background: #25d366; color: #fff; }

/* ─── Trust strip ─── */
.lp-trust-strip {
  background: var(--off-white);
  padding: 24px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.lp-trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  justify-content: center;
  align-items: center;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-trust-item i { color: var(--orange); font-size: 18px; }

/* ─── How it works / Process ─── */
.lp-section {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.lp-section-desc {
  text-align: center;
  color: var(--gray-500);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.lp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-process-step {
  text-align: center;
  padding: 12px;
}
.lp-process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(222,152,47,0.3);
}
.lp-process-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--navy);
}
.lp-process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ─── FAQ ─── */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.2s;
}
.lp-faq-item:hover { border-color: var(--gray-200); }
.lp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  user-select: none;
}
.lp-faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--orange);
  transition: transform 0.3s ease;
  font-weight: 400;
}
.lp-faq-item[open] .lp-faq-q::after { transform: rotate(45deg); }
.lp-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}
.lp-faq-a p { margin: 0 0 10px; }
.lp-faq-a p:last-child { margin-bottom: 0; }

/* ─── Final CTA strip ─── */
.lp-final-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 50px 24px;
  text-align: center;
  color: #fff;
}
.lp-final-cta h2 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 12px;
}
.lp-final-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin: 0 0 28px; }
.lp-final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-final-cta a {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(222,152,47,0.4);
  transition: transform 0.2s;
}
.lp-final-cta a:hover { transform: translateY(-2px); }
.lp-final-cta a.outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: none;
}
.lp-final-cta a.outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ─── LP minimal footer ─── */
.lp-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 28px 24px 24px;
  font-size: 13px;
}
.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-footer a { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 8px; }
.lp-footer a:hover { color: var(--orange); }

/* ─── Mobile sticky bottom CTA ─── */
.lp-sticky-bottom {
  display: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-process { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-cta-mobile { display: flex; }
  .inst24-wizard { padding: 28px 22px; }
}

@media (max-width: 640px) {
  /* ─── LP HEADER ─── */
  .lp-header-inner { padding: 10px 14px; gap: 10px; }
  .lp-logo img { height: 34px; max-width: 60vw; }
  .lp-phone { display: none; }
  .lp-wa { padding: 9px 14px; font-size: 12px; gap: 6px; }
  .lp-wa span { display: none; } /* tylko ikona */
  .lp-wa i { font-size: 16px; }

  /* ─── HERO ─── */
  .lp-hero { padding: 28px 0 36px; }
  .lp-hero-inner { padding: 0 16px; gap: 24px; }
  .lp-badge { padding: 5px 12px 5px 5px; font-size: 11px; margin-bottom: 14px; }
  .lp-badge-dot { width: 20px; height: 20px; font-size: 9px; }
  .lp-hero h1 { font-size: 26px; line-height: 1.18; margin-bottom: 14px; }
  .lp-hero-sub { font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
  .lp-bullets { gap: 10px; margin-bottom: 22px; }
  .lp-bullets li { font-size: 14px; gap: 10px; }
  .lp-bullets i { width: 22px; height: 22px; font-size: 10px; }
  .lp-hero-trust { gap: 12px 18px; font-size: 12px; padding-top: 14px; }
  .lp-hero-trust strong { font-size: 20px; }

  /* Mobile-only buttons in hero (call + WA) */
  .lp-hero-cta-mobile { gap: 8px; margin-top: 18px; }
  .lp-hero-cta-mobile a { padding: 14px 16px; font-size: 14px; }

  /* ─── TRUST STRIP ─── */
  .lp-trust-strip { padding: 18px 14px; }
  .lp-trust-strip-inner { gap: 14px 22px; }
  .lp-trust-item { font-size: 12.5px; gap: 8px; }
  .lp-trust-item i { font-size: 16px; }

  /* ─── SECTIONS ─── */
  .lp-section { padding: 40px 16px; }
  .lp-section h2 { font-size: 23px; margin-bottom: 10px; }
  .lp-section-desc { font-size: 14px; margin-bottom: 28px; }

  /* ─── PROCESS ─── */
  .lp-process { grid-template-columns: 1fr 1fr; gap: 18px; }
  .lp-process-num { width: 48px; height: 48px; font-size: 18px; margin-bottom: 10px; }
  .lp-process-step h4 { font-size: 14.5px; }
  .lp-process-step p { font-size: 13px; }

  /* ─── FAQ ─── */
  .lp-faq-q { padding: 16px 18px; font-size: 14px; }
  .lp-faq-a { padding: 0 18px 16px; font-size: 13.5px; }

  /* ─── FINAL CTA ─── */
  .lp-final-cta { padding: 40px 16px; }
  .lp-final-cta h2 { font-size: 22px; }
  .lp-final-cta p { font-size: 14px; }
  .lp-final-cta-buttons { gap: 10px; }
  .lp-final-cta a { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; min-height: 50px; }

  /* ─── FOOTER ─── */
  .lp-footer { padding: 22px 16px 20px; font-size: 12px; }
  .lp-footer-inner { flex-direction: column; text-align: center; gap: 10px; }
  .lp-footer a { margin: 0 4px; }

  /* ─── STICKY BOTTOM — duże, prominent, czytelne ─── */
  .lp-sticky-bottom {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.14);
    z-index: 50;
    padding: 8px;
    gap: 6px;
    border-top: 1px solid var(--gray-100);
  }
  .lp-sticky-bottom a {
    flex: 1;
    padding: 14px 8px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .lp-sticky-bottom a i { font-size: 18px; }
  .lp-sticky-bottom .sb-phone { background: var(--orange); }
  .lp-sticky-bottom .sb-wa { background: #25d366; }
  body.landing-page { padding-bottom: 76px; }
}

/* iPhone SE / 380px */
@media (max-width: 380px) {
  .lp-header-inner { padding: 8px 12px; }
  .lp-logo img { height: 30px; max-width: 55vw; }
  .lp-hero { padding: 22px 0 30px; }
  .lp-hero h1 { font-size: 23px; }
  .lp-hero-sub { font-size: 14px; }
  .lp-section { padding: 32px 14px; }
  .lp-section h2 { font-size: 21px; }
  .lp-process { grid-template-columns: 1fr; }
  .lp-sticky-bottom a { font-size: 13px; padding: 12px 6px; }
}
