/* ════════════════════════════════
   BASE MOBILE RESETS
════════════════════════════════ */
body { font-size: 15px; }

/* ════════════════════════════════
   NAV MOBILE
════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease-out), border-color 0.3s;
}
nav.scrolled { padding: 11px 20px; border-bottom-color: var(--line); }
.nav-logo {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  background: var(--accent);
  color: white; text-decoration: none; border-radius: var(--radius-pill);
}

/* ════════════════════════════════
   HERO MOBILE
════════════════════════════════ */
.hero {
  padding: 44px 20px 0;
  background: radial-gradient(ellipse 500px 300px at 50% -10%, var(--accent-pale) 0%, transparent 60%), var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12px; color: var(--ink-muted); font-weight: 500;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.7); }
}

.hero-title {
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 46px;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 16px; color: var(--ink-muted); font-weight: 400;
  line-height: 1.55; margin-bottom: 28px;
  max-width: 420px;
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; width: 100%; max-width: 340px; }
.hero-actions .btn-primary,
.hero-actions .btn-ghost { justify-content: center; }

/* ── mockup aplikacji (ten sam komponent co desktop) ── */
.hero-visual { width: 100%; max-width: 400px; padding-bottom: 40px; }

.app-mockup {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}
.app-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.app-mockup-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.app-mockup-title {
  position: absolute; left: 0; right: 0; text-align: center;
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
}
.app-mockup-body { padding: 4px 18px; }
.app-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.app-row:last-child { border-bottom: none; }
.app-row-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-row-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-row-text { flex: 1; min-width: 0; }
.app-row-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.app-row-value { font-size: 11.5px; color: var(--ink-muted); margin-top: 2px; }

.app-toggle {
  width: 36px; height: 22px; border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
}
.app-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease-out);
}
.app-toggle.on { background: var(--accent); border-color: var(--accent); }
.app-toggle.on .app-toggle-thumb { transform: translateX(14px); }

.app-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-muted);
  font-size: 11px; font-weight: 500;
  flex-shrink: 0;
}
.app-status.ok { background: var(--accent-pale); color: var(--accent-deep); }
.app-status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* pigułki pod mockupem */
.pills-row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  padding: 16px 0 0;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 12px; font-weight: 500; color: var(--ink);
}
.pill-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
}
.pill-icon svg { width: 11px; height: 11px; fill: none; stroke: var(--accent-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════
   SERVICES STRIP MOBILE
════════════════════════════════ */
.services-strip {
  background: var(--dark);
  padding: 0;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-strip::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px;
  border-right: 1px solid var(--dark-line);
  flex-shrink: 0;
  white-space: nowrap;
}
.strip-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg { width: 15px; height: 15px; fill: none; stroke: var(--on-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.strip-label { font-size: 12px; font-weight: 400; color: var(--on-dark-muted); }

/* ════════════════════════════════
   WHY MOBILE
════════════════════════════════ */
.why {
  padding: 72px 20px;
  background: var(--white);
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.section-heading {
  font-weight: 600; letter-spacing: -0.02em;
  font-size: 32px; line-height: 1.12; color: var(--ink);
  margin-bottom: 36px;
}
.section-heading em { font-style: normal; color: var(--ink-muted); font-weight: 600; }

/* why visual on mobile: horizontal scroll cards */
.why-cards-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px 40px; padding: 4px 20px 16px;
}
.why-cards-scroll::-webkit-scrollbar { display: none; }
.why-card-visual {
  background: white; border-radius: var(--radius-md); padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 170px; flex-shrink: 0;
  border: 1px solid var(--line);
}
.why-card-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.why-card-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.why-card-text h4 { font-size: 13px; font-weight: 600; color: var(--ink); }
.why-card-text p  { font-size: 12px; color: var(--ink-muted); margin-top: 3px; }

.why-points { display: flex; flex-direction: column; gap: 4px; }
.why-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.why-point:last-child { border-bottom: 1px solid var(--line); }
.why-point-num {
  font-weight: 600;
  font-size: 13px; color: var(--ink-faint); line-height: 1.6; flex-shrink: 0; width: 22px;
}
.why-point-body h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 5px; }
.why-point-body p  { font-size: 13.5px; color: var(--ink-muted); line-height: 1.6; font-weight: 400; }

/* ════════════════════════════════
   OFFER MOBILE
════════════════════════════════ */
.offer { padding: 72px 20px; background: var(--surface); }

.offer-grid {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.offer-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line);
}

.offer-card-featured { background: var(--white); }

.offer-icon-wrap {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.offer-card-featured .offer-icon-wrap { background: var(--accent-pale); }
.offer-icon-wrap svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.offer-card-content h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 6px; }
.offer-card-content p  { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; font-weight: 400; }
.offer-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px; padding: 4px 11px;
  background: var(--accent-pale); border-radius: var(--radius-pill);
  font-size: 11px; color: var(--accent-deep); font-weight: 500;
}

/* ════════════════════════════════
   CONTACT MOBILE
════════════════════════════════ */
.contact {
  padding: 72px 20px;
  background: var(--dark);
  position: relative; overflow: hidden;
}

.contact .section-eyebrow { color: var(--accent); }
.contact .section-heading { color: var(--on-dark); margin-bottom: 12px; }
.contact .section-heading em { color: var(--ink-faint); }
.contact-desc {
  font-size: 15px; color: var(--on-dark-muted);
  font-weight: 400; line-height: 1.6; margin-bottom: 28px;
}

.contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-line); border-radius: var(--radius-md);
}
.contact-row-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--on-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-row-label { font-size: 11px; color: var(--ink-faint); }
.contact-row-value { font-size: 15px; color: var(--white); font-weight: 500; }

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: 26px;
}
.contact-card-title {
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: white; margin-bottom: 18px;
}
.contact-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-feature { display: flex; align-items: center; gap: 10px; }
.cf-check {
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cf-check svg { width: 10px; height: 10px; fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cf-text { font-size: 13px; color: var(--on-dark-muted); font-weight: 400; }

.contact-card-person {
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  display: flex; align-items: center; gap: 12px;
}
.person-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; color: white;
  flex-shrink: 0;
}
.person-name { font-size: 13px; font-weight: 600; color: white; }
.person-role { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }

/* ════════════════════════════════
   FOOTER MOBILE
════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 28px 20px;
  text-align: center;
}
.footer-brand { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--ink-faint); font-weight: 400; margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 16px 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--ink-muted); text-decoration: none; }

/* ════════════════════════════════
   FAQ MOBILE
════════════════════════════════ */
.faq-mobile { padding: 68px 20px; background: var(--white); }
.faq-list-m { margin-top: 32px; border-top: 1px solid var(--line); }
.faq-item-m { border-bottom: 1px solid var(--line); }
.faq-q-m {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); text-align: left; transition: color 0.2s;
}
.faq-q-m:hover, .faq-q-m.open { color: var(--accent); }
.faq-icon { width: 17px; height: 17px; fill: none; stroke: var(--ink-muted); stroke-width: 2; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-q-m.open .faq-icon { transform: rotate(180deg); }
.faq-a-m { display: none; padding: 0 0 22px; }
.faq-a-m.open { display: block; }
.faq-a-m p { font-size: 14.5px; color: var(--ink-muted); font-weight: 400; line-height: 1.65; }
