/* =============================================================
   K-SI System — Conversion-focused, mobile-first design system
   ============================================================= */

:root {
  --bg: #f4f6f8;
  --bg-soft: #fafbfc;
  --card: #ffffff;
  --ink: #111827;
  --ink-2: #1f2937;
  --mute: #6b7280;
  --line: #e5e7eb;
  --line-soft: #f1f3f5;

  --navy: #0f2236;
  --navy-2: #14304b;
  --navy-3: #1c3d5c;

  --accent: #f04e1f;
  --accent-2: #ff5d28;
  --accent-soft: #ffe9df;
  --accent-deep: #c93f15;

  --success: #16a34a;
  --star: #ffb020;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(15,34,54,.05), 0 1px 1px rgba(15,34,54,.04);
  --shadow: 0 4px 14px rgba(15,34,54,.07), 0 2px 4px rgba(15,34,54,.04);
  --shadow-lg: 0 20px 40px rgba(15,34,54,.12), 0 6px 14px rgba(15,34,54,.06);

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 28px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* ============== HEADER / NAV ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand img {
  height: 32px;
  width: auto;
}
.brand-text { display: none; }
.brand-text em { color: var(--accent); font-style: normal; }

.nav-desktop {
  display: none;
  gap: 28px;
  margin-left: 24px;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.active { color: var(--accent); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tel-link {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.tel-link svg { width: 18px; height: 18px; color: var(--accent); }

.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .2s var(--ease), transform .15s var(--ease);
  box-shadow: 0 4px 12px rgba(240,78,31,.25);
}
.btn-call-now:hover { background: var(--accent-deep); }
.btn-call-now:active { transform: scale(.97); }
.btn-call-now svg { width: 16px; height: 16px; }

.menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
  padding: 24px var(--gutter) 40px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn-call-now {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
}

/* ============== HERO ============== */
.hero {
  background: var(--bg);
  padding: 24px 0 32px;
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 24px;
}
.hero-headline {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
}
.hero-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--mute);
  line-height: 1.55;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  transition: all .2s var(--ease);
  border: 2px solid transparent;
  text-align: center;
  min-height: 50px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(240,78,31,.28);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline svg { width: 18px; height: 18px; color: var(--accent); }
.btn-block { width: 100%; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-trust div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e9eef3, #d6dde4);
  box-shadow: var(--shadow);
}
.hero-visual img,
.hero-visual .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick contact form */
.quick-form {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-lg);
}
.qf-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.qf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qf-icon svg { width: 20px; height: 20px; color: #fff; }
.qf-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.qf-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.qf-field {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 10px;
  transition: border-color .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.qf-field::placeholder { color: #94a3b8; }
.qf-field:focus { outline: none; border-color: var(--accent); }
select.qf-field {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.qf-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: background .2s var(--ease);
  box-shadow: 0 6px 16px rgba(240,78,31,.3);
}
.qf-submit:hover { background: var(--accent-deep); }
.qf-submit svg { width: 18px; height: 18px; }
.qf-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qf-note svg { width: 13px; height: 13px; }

/* ============== TRUST STRIP (4 icons) ============== */
.trust-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-ico svg { width: 24px; height: 24px; }
.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
  margin-bottom: 3px;
}
.trust-item p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}

/* ============== SECTIONS ============== */
section { position: relative; }
.section { padding: 40px 0; }
.section.lg { padding: 56px 0; }
.section.alt { background: #fff; }

.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(24px, 5.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.section-head h2 em {
  font-style: normal;
  color: var(--accent);
}
.section-head p {
  margin-top: 10px;
  color: var(--mute);
  font-size: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ============== SERVICES (4 tiles) ============== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all .2s var(--ease);
  position: relative;
}
.service-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-tile .st-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-tile.dark .st-icon { background: var(--navy); color: #fff; }
.service-tile.orange .st-icon { background: var(--accent); color: #fff; }
.service-tile .st-icon svg { width: 22px; height: 22px; }
.service-tile h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.service-tile p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
}
.service-tile .st-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.service-tile .st-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.service-tile:hover .st-link svg { transform: translateX(3px); }

/* ============== REVIEWS / TRUST (dark) ============== */
.why-dark {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.why-dark .section-head h2 { color: #fff; }
.why-dark .section-head h2 em { color: var(--accent-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.review-card {
  text-align: center;
  padding: 0 8px;
}
.review-stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--star);
}
.review-card blockquote {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  margin-bottom: 8px;
  font-style: italic;
}
.review-card cite {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-style: normal;
  font-weight: 500;
}
.stat-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.stat-block .st-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-block .st-ico svg { width: 24px; height: 24px; color: #fff; }
.stat-block strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.stat-block span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ============== BOTTOM INFO STRIP ============== */
.info-strip {
  background: var(--bg-soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-ico svg { width: 22px; height: 22px; }
.info-card .lbl {
  display: block;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 2px;
}
.info-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.005em;
  color: var(--ink);
}
.info-card small {
  display: block;
  font-size: 12px;
  color: var(--mute);
  margin-top: 2px;
}
.info-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 16px rgba(240,78,31,.25);
}
.info-cta .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-cta .ico svg { width: 22px; height: 22px; }
.info-cta .txt small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.info-cta .txt strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
.info-cta .arrow { margin-left: auto; }
.info-cta .arrow svg { width: 20px; height: 20px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 36px 0 20px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.55;
  max-width: 380px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.footer ul li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,.85); transition: color .15s var(--ease); }
.footer a:hover { color: var(--accent-2); }
.footer .row { margin-bottom: 6px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer .row strong { color: #fff; font-weight: 600; }
.legal-ids {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 6px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ============== STICKY MOBILE CALL FAB ============== */
.fab-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 95;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(240,78,31,.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab-call svg { width: 20px; height: 20px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(240,78,31,.4); }
  50% { box-shadow: 0 10px 32px rgba(240,78,31,.6), 0 0 0 8px rgba(240,78,31,.08); }
}

/* ============== INNER PAGE HEADER ============== */
.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 12px;
}
.page-hero .crumb a { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lede {
  margin-top: 12px;
  font-size: 16px;
  color: var(--mute);
  max-width: 700px;
}

/* ============== SERVICE DETAIL CARDS ============== */
.svc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  scroll-margin-top: 80px;
}
.svc-card .svc-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.svc-card .svc-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  flex-shrink: 0;
}
.svc-card h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.svc-card .svc-body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.svc-card .svc-body p { margin-bottom: 10px; }
.svc-card .svc-body p:last-child { margin-bottom: 0; }
.svc-card ul.bullets {
  margin: 8px 0 0;
  padding: 0;
}
.svc-card ul.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink-2);
}
.svc-card ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f04e1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.svc-card .svc-cta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* About page */
.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.cert-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.cert-card .cert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 4px;
}
.cert-card .cert-meta strong { display: block; font-size: 14px; font-weight: 800; }
.cert-card .cert-meta small { display: block; font-size: 12px; color: var(--mute); }
.cert-card .cert-meta img { height: 22px; width: auto; margin: 0; }
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 12px 0 0;
}
.brands-row span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
}

/* Reviews page */
.rev-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.rev-card .rev-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rev-card .rev-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.rev-card .rev-av.c2 { background: var(--navy); }
.rev-card .rev-av.c3 { background: #2563eb; }
.rev-card .rev-name { font-weight: 700; font-size: 15px; }
.rev-card .rev-date { font-size: 12px; color: var(--mute); }
.rev-card .rev-stars { display: inline-flex; gap: 2px; margin-bottom: 8px; }
.rev-card .rev-stars svg { width: 16px; height: 16px; fill: var(--star); }
.rev-card blockquote { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

.google-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.google-summary .g-score {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 4px 0;
}
.google-summary .g-stars { display: inline-flex; gap: 3px; margin: 4px 0 8px; }
.google-summary .g-stars svg { width: 22px; height: 22px; fill: var(--star); }
.google-summary p { font-size: 13px; color: var(--mute); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-block .row {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.contact-block .row:last-child { border-bottom: 0; }
.contact-block .row .lbl { color: var(--mute); font-size: 13px; }
.contact-block .row .val { font-weight: 700; text-align: right; }
.contact-block .row .val a { color: var(--accent); }

/* FAQ accordion */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 48px 16px 18px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body {
  padding: 0 18px 18px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Image placeholder (when no image generated yet) */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: repeating-linear-gradient(
    45deg,
    #e6ebf0,
    #e6ebf0 10px,
    #dde3ea 10px,
    #dde3ea 20px
  );
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.img-placeholder svg { width: 32px; height: 32px; opacity: .5; }

/* ============== RESPONSIVE ============== */
@media (min-width: 640px) {
  .brand-text { display: inline; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rev-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .header-inner { height: 72px; }
  .menu-toggle { display: none; }
  .nav-desktop { display: inline-flex; }
  .tel-link { display: inline-flex; }
  .hero { padding: 48px 0 56px; }
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
  }
  .hero-visual { aspect-ratio: 4/3; }
  .quick-form {
    position: absolute;
    right: var(--gutter);
    top: 32px;
    max-width: 360px;
    width: 100%;
  }
  .hero-with-form .hero-grid {
    grid-template-columns: 1fr 1.1fr .8fr;
  }
  .info-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .about-body { grid-template-columns: 1.4fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .rev-list { grid-template-columns: repeat(3, 1fr); }
  .svc-list { grid-template-columns: repeat(2, 1fr); }
  .fab-call { display: none; }
}

@media (min-width: 1024px) {
  .section { padding: 56px 0; }
  .section.lg { padding: 72px 0; }
}

/* =============================================================
   Landing page refresh inspired by the provided reference
   ============================================================= */

.landing-page {
  --lp-navy: #081b34;
  --lp-navy-2: #0c274a;
  --lp-orange: #ff870f;
  --lp-orange-2: #ff9d22;
  --lp-ink: #071633;
  --lp-muted: #5a6477;
  --lp-border: #e9edf3;
  --lp-soft: #f6f8fb;
  background: #fff;
  color: var(--lp-ink);
  overflow-x: hidden;
}

.landing-page main {
  overflow-x: hidden;
}

.landing-page * {
  min-width: 0;
}

.landing-page .container {
  max-width: 1120px;
}

.lp-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(8, 27, 52, .06);
  box-shadow: 0 8px 30px rgba(8, 27, 52, .04);
}

.lp-header-inner {
  height: 80px;
}

.lp-brand img {
  height: 58px;
  width: auto;
}

.lp-nav {
  margin-left: auto;
  gap: 36px;
}

.lp-nav a {
  color: var(--lp-ink);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 0;
  position: relative;
}

.lp-nav a.active,
.lp-nav a:hover {
  color: var(--lp-orange);
}

.lp-nav a.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--lp-orange);
  border-radius: 2px;
}

.lp-header-contact {
  margin-left: 50px;
}

.lp-phone {
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--lp-ink);
}

.lp-phone-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-ink);
}

.lp-phone-icon svg {
  width: 25px;
  height: 25px;
}

.lp-phone strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.lp-phone small {
  display: block;
  margin-top: 4px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 500;
}

.lp-hero {
  min-height: 492px;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(430px, 46%);
  background: linear-gradient(90deg, #fff 0%, #fff 47%, rgba(255,255,255,.9) 52%, rgba(255,255,255,0) 64%), #f5f7fa;
  position: relative;
  overflow: hidden;
}

.lp-hero-copy {
  width: min(100%, 500px);
  margin-left: max(28px, calc((100vw - 1120px) / 2 + 28px));
  padding: 48px 0 34px;
  z-index: 2;
}

.lp-eyebrow {
  color: var(--lp-orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lp-hero h1 {
  max-width: 500px;
  color: var(--lp-ink);
  font-size: clamp(42px, 4.1vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.lp-hero h1 span {
  display: block;
  color: var(--lp-orange);
}

.lp-hero-lede {
  margin-top: 22px;
  max-width: 470px;
  font-size: 16px;
  line-height: 1.55;
  color: #1f2a44;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.lp-btn,
.lp-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}

.lp-btn:hover,
.lp-cta-button:hover {
  transform: translateY(-2px);
}

.lp-btn svg,
.lp-cta-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.lp-btn strong,
.lp-cta-button strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
}

.lp-btn small,
.lp-cta-button small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
}

.lp-btn-primary,
.lp-cta-button {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2));
  box-shadow: 0 18px 32px rgba(255, 135, 15, .28);
}

.lp-btn-secondary {
  color: var(--lp-ink);
  background: #fff;
  border: 1px solid #d5dbe6;
  box-shadow: 0 14px 28px rgba(8, 27, 52, .06);
}

.lp-btn-secondary svg {
  color: var(--lp-ink);
}

.lp-mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.lp-mini-features div {
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 10px;
  align-items: center;
}

.mini-icon {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  color: var(--lp-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-icon svg {
  width: 26px;
  height: 26px;
}

.lp-mini-features strong {
  font-size: 13px;
  line-height: 1.15;
}

.lp-mini-features small {
  color: var(--lp-muted);
  font-size: 11px;
}

.lp-hero-photo {
  position: relative;
  min-height: 492px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.lp-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,.94) 14%,
    rgba(255,255,255,.68) 32%,
    rgba(255,255,255,.22) 52%,
    rgba(255,255,255,0) 70%
  );
}

.lp-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.lp-experience-card {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4.5vw, 56px);
  bottom: 38px;
  width: 164px;
  padding: 22px 17px;
  color: var(--lp-ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(8, 27, 52, .18);
  text-align: center;
}

.lp-experience-card svg {
  width: 39px;
  height: 39px;
  margin: 0 auto 12px;
  color: var(--lp-orange);
}

.lp-experience-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.lp-experience-card span {
  display: block;
  margin-top: 10px;
  color: var(--lp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.lp-proof-bar {
  background: var(--lp-navy);
  color: #fff;
}

.lp-proof-grid {
  min-height: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.lp-proof-grid div {
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: 14px;
  align-items: center;
}

.proof-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proof-icon svg {
  width: 21px;
  height: 21px;
}

.lp-proof-grid strong {
  font-size: 14px;
  font-weight: 900;
}

.lp-proof-grid small {
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

.lp-section {
  padding: 36px 0 26px;
  background: #fff;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.lp-section-head h2,
.lp-trust-copy h2,
.lp-cta-copy h2 {
  color: var(--lp-ink);
  font-size: clamp(27px, 3.4vw, 32px);
  line-height: 1.12;
  font-weight: 900;
}

.lp-section-head h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--lp-orange);
  border-radius: 999px;
}

.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp-service-card {
  min-height: 184px;
  padding: 26px 22px 23px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 27, 52, .06);
  text-align: center;
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}

.lp-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 135, 15, .45);
}

.lp-service-card span {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--lp-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-service-card svg {
  width: 34px;
  height: 34px;
}

.lp-service-card h3 {
  color: var(--lp-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
  margin-bottom: 12px;
}

.lp-service-card p {
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.lp-trust-section {
  padding-top: 5px;
  padding-bottom: 22px;
}

.lp-trust-layout {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .96fr);
  gap: 54px;
  align-items: center;
}

.lp-check-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.lp-check-list li {
  position: relative;
  padding-left: 46px;
  color: #1f2a44;
  font-size: 15px;
  line-height: 1.45;
}

.lp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--lp-orange);
}

.lp-check-list li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.lp-review-panel {
  padding: 18px 44px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 27, 52, .07);
}

.lp-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lp-rating strong {
  color: var(--lp-ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.stars {
  color: #f6b600;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 24px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-review-panel > p {
  margin-top: 10px;
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-review {
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 27, 52, .04);
}

.lp-review strong {
  display: block;
  color: #1f2a44;
  font-size: 13px;
  line-height: 1.5;
}

.lp-review span {
  display: block;
  margin-top: 7px;
  color: var(--lp-muted);
  font-size: 12px;
}

.lp-cta-band {
  padding: 0 0 24px;
  background: #fff;
}

.lp-cta-inner {
  min-height: 136px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background: var(--lp-navy);
  color: #fff;
  box-shadow: 0 20px 56px rgba(8, 27, 52, .16);
}

.lp-cta-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 240px;
  opacity: .82;
}

.lp-cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,27,52,.34), rgba(8,27,52,.82) 68%, var(--lp-navy));
}

.lp-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.lp-cta-copy {
  grid-column: 2;
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.lp-cta-copy h2 {
  color: #fff;
  max-width: 560px;
}

.lp-cta-copy p {
  margin-top: 10px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.lp-cta-button {
  position: relative;
  z-index: 1;
  margin-right: 54px;
  min-width: 260px;
}

.lp-footer {
  padding: 28px 0 14px;
  background: var(--lp-navy);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
}

.lp-footer-brand img {
  height: 44px;
  filter: none;
  width: auto;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
}

.lp-footer p,
.lp-legal {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.6;
}

.lp-footer h4 {
  color: #fff;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.lp-footer a {
  color: #fff;
  font-weight: 800;
}

.lp-legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (min-width: 860px) {
  .landing-page .menu-toggle {
    display: none;
  }

  .lp-phone {
    display: inline-flex;
  }
}

@media (max-width: 1100px) {
  .lp-nav {
    gap: 22px;
  }

  .lp-header-contact {
    margin-left: 18px;
  }
}

@media (max-width: 920px) {
  .lp-hero {
    grid-template-columns: 1fr;
    background: #fff;
  }

  .lp-hero-copy {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 56px var(--gutter) 34px;
  }

  .lp-hero-photo {
    min-height: 470px;
  }

  .lp-proof-grid,
  .lp-service-grid,
  .lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 859px) {
  .landing-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .lp-header {
    background: rgba(255,255,255,.98);
  }

  .lp-header-inner {
    height: 76px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .lp-brand img {
    height: 54px;
  }

  .lp-header-contact {
    gap: 0;
    margin-left: 30px;
  }

  .lp-phone {
    display: none;
  }

  .landing-page .menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    background: #fff;
    color: var(--lp-ink);
    box-shadow: 0 8px 20px rgba(8, 27, 52, .09);
  }

  .landing-page .menu-toggle svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.4;
  }

  .lp-mobile-menu {
    inset: 76px 0 0;
  }

  .lp-hero {
    display: block;
    min-height: 604px;
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .lp-hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 36px 18px 22px;
  }

  .lp-eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.2;
  }

  .lp-hero h1 {
    max-width: 318px;
    font-size: clamp(34px, 9.4vw, 41px);
    line-height: 1.06;
  }

  .lp-hero-lede {
    max-width: 292px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .lp-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    max-width: 280px;
    margin-top: 20px;
  }

  .lp-btn {
    width: 100%;
    min-height: 56px;
    padding: 10px 18px;
    gap: 12px;
    box-shadow: 0 14px 28px rgba(8, 27, 52, .07);
  }

  .lp-btn svg {
    width: 23px;
    height: 23px;
  }

  .lp-btn-primary strong {
    font-size: 0;
  }

  .lp-btn-primary strong::after {
    content: "Zadzwoń teraz";
    font-size: 18px;
    line-height: 1;
  }

  .lp-btn-primary small {
    display: none;
  }

  .lp-btn-secondary {
    background: rgba(255,255,255,.96);
  }

  .lp-btn-secondary strong {
    font-size: 18px;
  }

  .lp-btn-secondary small {
    font-size: 13px;
  }

  .lp-mini-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: none;
    margin-top: 22px;
    padding: 12px 10px;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 28px rgba(8, 27, 52, .08);
  }

  .lp-mini-features div {
    grid-template-columns: 25px minmax(0, 1fr);
    column-gap: 7px;
    padding: 0 7px;
  }

  .lp-mini-features div:not(:last-child) {
    border-right: 1px solid #e2e7ef;
  }

  .mini-icon {
    width: 25px;
    height: 25px;
  }

  .mini-icon svg {
    width: 23px;
    height: 23px;
  }

  .lp-mini-features strong {
    font-size: 13px;
  }

  .lp-mini-features small {
    font-size: 12px;
    line-height: 1.2;
  }

  .lp-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    pointer-events: none;
  }

  .lp-hero-photo::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 47%, rgba(255,255,255,.62) 66%, rgba(255,255,255,0) 88%),
      linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 72%, #fff 100%);
  }

  .lp-hero-photo img {
    object-position: 71% top;
    filter: saturate(1.02) contrast(1.02);
  }

  .lp-experience-card {
    display: none;
  }

  .lp-proof-bar {
    padding: 0 0 24px;
    background: #fff;
  }

  .lp-proof-grid {
    width: calc(100% - 32px);
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin: 0 auto;
    padding: 18px 12px;
    border-radius: 12px;
    background: var(--lp-navy);
    box-shadow: 0 16px 34px rgba(8, 27, 52, .18);
  }

  .lp-proof-grid div {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 10px;
  }

  .lp-proof-grid strong {
    font-size: 15px;
    line-height: 1.2;
  }

  .lp-proof-grid small {
    font-size: 13px;
    line-height: 1.35;
  }

  .lp-service-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 0 0 14px;
  }

  .lp-section-head {
    margin-bottom: 20px;
  }

  .lp-section-head h2 {
    font-size: 30px;
  }

  .lp-service-grid {
    gap: 0;
  }

  .lp-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    min-height: auto;
    padding: 17px 18px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 27, 52, .045);
  }

  .lp-service-card + .lp-service-card {
    margin-top: 0;
  }

  .lp-service-card::after {
    content: "";
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--lp-ink);
    border-right: 2px solid var(--lp-ink);
    transform: rotate(45deg);
  }

  .lp-service-card span {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .lp-service-card svg {
    width: 42px;
    height: 42px;
  }

  .lp-service-card h3 {
    grid-column: 2;
    margin-bottom: 4px;
    font-size: 17px;
  }

  .lp-service-card p {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.4;
  }

  .lp-trust-section {
    padding: 0 0 11px;
  }

  .lp-trust-layout {
    display: block;
  }

  .lp-trust-copy {
    display: none;
  }

  .lp-review-panel {
    margin: 0 16px;
    padding: 11px 22px 12px;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(8, 27, 52, .06);
  }

  .lp-rating {
    display: grid;
    grid-template-columns: 48px auto 1fr;
    gap: 10px 12px;
  }

  .google-mark {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    font-size: 42px;
  }

  .lp-rating strong {
    font-size: 30px;
  }

  .stars {
    align-self: center;
    font-size: 20px;
  }

  .lp-review-panel > p {
    margin-top: 2px;
    padding-left: 60px;
    font-size: 14px;
    color: #25304a;
  }

  .lp-review {
    margin-top: 16px;
    padding: 0 12px 0 58px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-style: italic;
    position: relative;
  }

  .lp-review::before,
  .lp-review::after {
    position: absolute;
    color: #b8c0cc;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
  }

  .lp-review::before {
    content: "\201C";
    left: 28px;
    top: -3px;
  }

  .lp-review::after {
    content: "\201D";
    right: 2px;
    bottom: 2px;
  }

  .lp-review + .lp-review {
    display: none;
  }

  .lp-review strong,
  .lp-review span {
    font-size: 14px;
    font-weight: 500;
  }

  .lp-review span {
    margin-top: 10px;
    font-style: normal;
  }

  .lp-cta-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .lp-cta-copy {
    grid-column: 1;
    padding: 0;
  }

  .lp-cta-button {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .landing-page .fab-call {
    left: 16px;
    right: 16px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    min-height: 64px;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 14px 14px 18px 18px;
    font-size: 0;
    gap: 14px;
    animation: none;
    box-shadow: 0 12px 26px rgba(255, 135, 15, .35);
  }

  .landing-page .fab-call svg {
    width: 30px;
    height: 30px;
  }

  .landing-page .fab-call::after {
    content: "Zadzwoń teraz\A 535 950 601 - jesteśmy dostępni";
    white-space: pre-line;
    max-width: 260px;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
  }

  .landing-page .fab-call::first-line {
    font-size: 23px;
  }
}

/* Why us landing subpage */
.why-page {
  background: #fff;
}

.why-mobile-stats {
  display: none;
}

.why-hero {
  background: #fff;
  overflow: hidden;
}

.why-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: stretch;
  padding-right: 0;
}

.why-hero-copy {
  align-self: center;
  padding: 58px 36px 58px 0;
  position: relative;
  z-index: 2;
}

.why-hero-copy h1 {
  max-width: 570px;
  color: var(--lp-ink);
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 900;
}

.why-hero-copy h1 span {
  display: block;
  color: var(--lp-orange);
}

.why-hero-copy p:not(.lp-eyebrow) {
  margin-top: 22px;
  max-width: 530px;
  color: #1f2a44;
  font-size: 16px;
  line-height: 1.62;
}

.why-hero-photo {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(8, 27, 52, .04);
}

.why-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,.96) 16%,
    rgba(255,255,255,.68) 35%,
    rgba(255,255,255,.2) 56%,
    rgba(255,255,255,0) 76%
  );
}

.why-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media (min-width: 1001px) {
  .why-page:not(.about-page) .why-hero-photo {
    width: calc(100% + max(0px, (100vw - var(--container)) / 2));
  }
}

.why-cert-badge,
.why-rating-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(8, 27, 52, .16);
}

.why-cert-badge {
  right: clamp(22px, 4.5vw, 56px);
  bottom: 36px;
  width: 192px;
  padding: 20px 18px;
}

.why-cert-badge img {
  width: 96px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.why-cert-badge strong,
.why-rating-badge strong {
  display: block;
  color: var(--lp-ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.why-cert-badge span,
.why-rating-badge span {
  display: block;
  margin-top: 7px;
  color: var(--lp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.why-rating-badge {
  left: 42px;
  bottom: 48px;
  width: 164px;
  padding: 19px 18px;
}

.why-rating-badge strong {
  font-size: 30px;
  line-height: 1;
}

.why-reasons {
  padding-bottom: 44px;
}

.why-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-reason-card {
  min-height: 220px;
  padding: 28px 25px 24px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 27, 52, .055);
}

.why-reason-card span {
  width: 46px;
  height: 46px;
  color: var(--lp-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-reason-card svg {
  width: 36px;
  height: 36px;
}

.why-reason-card h3 {
  color: var(--lp-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.28;
  margin-bottom: 11px;
}

.why-reason-card p {
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.62;
}

.why-process-section {
  padding: 52px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.why-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 54px;
  align-items: center;
}

.why-process-copy h2 {
  max-width: 620px;
  color: var(--lp-ink);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.why-steps {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.why-steps div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 27, 52, .045);
}

.why-steps strong {
  grid-row: span 2;
  color: var(--lp-orange);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.why-steps h3 {
  color: var(--lp-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.why-steps p {
  margin-top: 7px;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.why-proof-panel {
  padding: 16px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 27, 52, .08);
}

.why-proof-panel > img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
}

.why-proof-meta {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 4px 15px;
}

.why-proof-meta img {
  width: 92px;
  height: auto;
}

.why-proof-meta strong {
  display: block;
  color: var(--lp-ink);
  font-size: 15px;
  font-weight: 900;
}

.why-proof-meta span {
  display: block;
  margin-top: 4px;
  color: var(--lp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.why-proof-panel ul {
  display: grid;
  gap: 8px;
  padding: 16px 4px 2px;
  border-top: 1px solid var(--lp-border);
}

.why-proof-panel li {
  color: #1f2a44;
  font-size: 13px;
  font-weight: 700;
}

.why-trust-review {
  padding-top: 48px;
}

@media (max-width: 1000px) {
  .why-hero-inner {
    grid-template-columns: 1fr;
    padding-right: var(--gutter);
  }

  .why-hero-copy {
    padding: 52px 0 36px;
  }

  .why-hero-photo {
    min-height: 430px;
    border-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .why-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 859px) {
  .why-page {
    background: #fbfcfe;
    padding-bottom: 86px;
    overflow-x: hidden;
  }

  .why-page .lp-header {
    position: sticky;
    background: rgba(255,255,255,.98);
    box-shadow: 0 8px 26px rgba(8,27,52,.06);
  }

  .why-page .lp-header-inner {
    width: 100%;
    max-width: none;
    height: 76px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .why-page .lp-brand img {
    height: 56px;
  }

  .why-page .lp-header-contact {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    margin-left: auto;
  }

  .why-page .lp-phone {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid #e3e9f2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(8,27,52,.08);
  }

  .why-page .lp-phone span:not(.lp-phone-icon) {
    display: none;
  }

  .why-page .lp-phone-icon {
    width: 24px;
    height: 24px;
  }

  .why-page .lp-phone-icon svg {
    width: 23px;
    height: 23px;
  }

  .why-page .menu-toggle {
    width: 48px;
    height: 48px;
    border-color: #e3e9f2;
    border-radius: 12px;
    box-shadow: 0 7px 18px rgba(8,27,52,.08);
  }

  .why-page .menu-toggle svg {
    width: 25px;
    height: 25px;
  }

  .why-page .lp-mobile-menu {
    inset: 76px 0 0;
  }

  .why-hero {
    min-height: 584px;
    background: #fff;
  }

  .why-hero-inner {
    min-height: 0;
    display: block;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    isolation: isolate;
  }

  .why-hero-copy {
    width: min(100%, 325px);
    padding: 20px 0 26px;
    position: relative;
    z-index: 2;
  }

  .why-hero-copy .lp-eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.2;
  }

  .why-hero-copy h1 {
    max-width: 305px;
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.02;
  }

  .why-hero-copy p:not(.lp-eyebrow) {
    max-width: 292px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.42;
  }

  .why-hero-photo {
    position: absolute;
    inset: 76px -145px 0 158px;
    z-index: 1;
    min-height: 0;
    width: auto;
    height: 482px;
    border-radius: 0;
    opacity: 1;
  }

  .why-hero-photo::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.95) 24%, rgba(255,255,255,.63) 43%, rgba(255,255,255,.12) 62%, rgba(255,255,255,0) 84%),
      linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 28%);
  }

  .why-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      270deg,
      #fff 0%,
      rgba(255,255,255,.92) 14%,
      rgba(255,255,255,.48) 34%,
      rgba(255,255,255,0) 58%
    );
  }

  .why-hero-photo img {
    object-position: center right;
  }

  .why-cert-badge,
  .why-rating-badge {
    display: none;
  }

  .why-page .lp-actions {
    width: 100%;
    max-width: 310px;
    margin-top: 14px;
    gap: 12px;
  }

  .why-page .lp-btn {
    min-height: 66px;
    justify-content: center;
    border-radius: 18px;
  }

  .why-page .lp-btn > span,
  .why-page .lp-btn strong,
  .why-page .lp-btn small {
    display: block;
  }

  .why-page .lp-btn-primary strong {
    font-size: 22px;
  }

  .why-page .lp-btn-primary strong::after {
    content: none;
  }

  .why-page .lp-btn-primary small {
    display: block;
  }

  .why-page .lp-btn-primary small,
  .why-page .lp-btn-secondary small {
    font-size: 14px;
  }

  .why-page .lp-btn-secondary strong {
    font-size: 20px;
  }

  .why-mobile-stats {
    width: calc(100% - 40px);
    margin: 4px auto 16px;
    padding: 14px 12px;
    display: grid;
    grid-template-columns: 1fr .82fr 1fr;
    gap: 0;
    align-items: center;
    border: 1px solid #edf1f6;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 32px rgba(8,27,52,.08);
  }

  .why-mobile-stats div {
    min-height: 50px;
    padding: 0 10px;
    display: grid;
    align-content: center;
    position: relative;
  }

  .why-mobile-stats div + div {
    border-left: 1px solid #d9e0ea;
  }

  .why-mobile-stats img {
    width: 70px;
    height: auto;
    margin-bottom: 3px;
  }

  .why-mobile-stats strong {
    color: var(--lp-ink);
    font-size: 12px;
    line-height: 1.08;
    font-weight: 900;
  }

  .why-mobile-stats span {
    margin-top: 3px;
    color: #536079;
    font-size: 11px;
    line-height: 1.18;
  }

  .why-mobile-score {
    position: relative;
    padding-left: 28px;
    font-size: 22px !important;
  }

  .why-mobile-score::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071633' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>") no-repeat center / contain;
  }

  .why-mobile-stats div:last-child {
    padding-left: 38px;
  }

  .why-mobile-stats div:last-child::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 14px;
    width: 25px;
    height: 25px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071633' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 12-9 12S3 17 3 10a9 9 0 1 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>") no-repeat center / contain;
  }

  .why-page .lp-proof-bar {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
    border-radius: 14px;
    background: var(--lp-navy);
    box-shadow: 0 18px 36px rgba(8,27,52,.16);
    overflow: hidden;
  }

  .why-page .lp-proof-grid {
    width: 100%;
    max-width: none;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }

  .why-page .lp-proof-grid div {
    min-height: 84px;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 10px;
    padding: 18px 12px;
  }

  .why-page .lp-proof-grid div:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.18);
  }

  .why-page .lp-proof-grid div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .why-page .proof-icon {
    width: 38px;
    height: 38px;
    border: 0;
  }

  .why-page .proof-icon svg {
    width: 33px;
    height: 33px;
  }

  .why-page .lp-proof-grid strong {
    font-size: 14px;
  }

  .why-page .lp-proof-grid small {
    margin-top: 2px;
    font-size: 14px;
  }

  .why-page .why-reasons {
    padding: 2px 0 18px;
    background: #fbfcfe;
  }

  .why-page .lp-section-head {
    margin-bottom: 18px;
  }

  .why-page .lp-section-head h2 {
    font-size: 27px;
  }

  .why-reason-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .why-reason-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 16px;
    grid-template-rows: auto auto;
    column-gap: 4px;
    align-items: center;
    padding: 12px 14px 12px 12px;
    border-color: #edf1f6;
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(8,27,52,.06);
    position: relative;
  }

  .why-reason-card:nth-child(4),
  .why-reason-card:nth-child(6) {
    display: none;
  }

  .why-reason-card:nth-child(5) {
    display: grid;
  }

  .why-reason-card::after {
    content: "";
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    width: 10px;
    height: 10px;
    border-top: 2px solid #8b9ab3;
    border-right: 2px solid #8b9ab3;
    transform: rotate(45deg);
  }

  .why-reason-card span {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .why-reason-card svg {
    width: 32px;
    height: 32px;
  }

  .why-reason-card h3 {
    grid-column: 2;
    margin: 0 0 3px;
    font-size: 15px;
    line-height: 1.18;
  }

  .why-reason-card p {
    grid-column: 2;
    max-width: none;
    font-size: 12.5px;
    line-height: 1.25;
  }

  .why-reason-card:nth-child(1) p,
  .why-reason-card:nth-child(5) h3,
  .why-reason-card:nth-child(5) p {
    font-size: 0;
  }

  .why-reason-card:nth-child(1) p::after {
    content: "Pracujemy według standardów producenta i używamy oryginalnych części.";
    font-size: 12.5px;
    line-height: 1.25;
  }

  .why-reason-card:nth-child(5) h3::after {
    content: "Przejrzyste zasady";
    font-size: 15px;
    line-height: 1.18;
  }

  .why-reason-card:nth-child(5) p::after {
    content: "Jasna wycena przed rozpoczęciem prac, bez ukrytych kosztów.";
    font-size: 12.5px;
    line-height: 1.25;
  }

  .why-process-section,
  .why-page .lp-cta-band,
  .why-page .lp-footer {
    display: none;
  }

  .why-page .why-trust-review {
    padding: 2px 0 22px;
    background: #fbfcfe;
  }

  .why-page .lp-review-panel {
    margin: 0 20px;
    padding: 17px 16px;
    border-color: #cfe0f3;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr);
    gap: 0 12px;
    align-items: center;
  }

  .why-page .lp-rating {
    display: contents;
  }

  .why-page .google-mark {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 52px;
    height: 52px;
    font-size: 46px;
  }

  .why-page .lp-rating strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 27px;
  }

  .why-page .stars {
    grid-column: 2;
    grid-row: 2;
    font-size: 17px;
    letter-spacing: 0;
  }

  .why-page .lp-review-panel > p {
    grid-column: 2;
    grid-row: 3;
    margin: 4px 0 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .why-page .lp-review {
    grid-column: 3;
    grid-row: 1 / 4;
    margin: 0;
    padding: 0 0 0 13px;
    border-left: 1px solid #dce4ee;
    font-style: normal;
  }

  .why-page .lp-review::before,
  .why-page .lp-review::after {
    display: none;
  }

  .why-page .lp-review strong,
  .why-page .lp-review span {
    color: #17223c;
    font-size: 13px;
    line-height: 1.36;
    font-weight: 500;
  }

  .why-page .lp-review span {
    margin-top: 8px;
  }

  .why-page .lp-review + .lp-review {
    display: none;
  }

  .why-page .fab-call {
    left: 16px;
    right: 16px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 70px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 10px 22px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2));
    box-shadow: 0 16px 30px rgba(255,135,15,.36);
    color: #fff;
    font-size: 0;
    overflow: hidden;
  }

  .why-page .fab-call svg {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 33px;
    height: 33px;
  }

  .why-page .fab-call::before {
    content: "Zadzwoń teraz";
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
  }

  .why-page .fab-call::after {
    content: "535 950 601";
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
    max-width: none;
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
  }

  .landing-page .fab-call::first-line {
    font-size: inherit;
  }

  .why-steps div {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .why-hero-copy h1 {
    font-size: 34px;
  }

  .why-hero-copy p:not(.lp-eyebrow) {
    max-width: 276px;
    font-size: 15px;
  }

  .why-hero-photo {
    right: -170px;
    left: 140px;
  }

  .why-mobile-stats {
    grid-template-columns: 1fr .78fr 1fr;
    padding-left: 8px;
    padding-right: 8px;
  }

  .why-mobile-stats div {
    padding-left: 7px;
    padding-right: 7px;
  }

  .why-mobile-stats span {
    font-size: 10px;
  }

  .why-page .fab-call {
    grid-template-columns: 40px 1fr auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .why-page .fab-call::before {
    font-size: 19px;
  }

  .why-page .fab-call::after {
    font-size: 20px;
  }
}

/* About page - compact landing layout */
.about-page .why-hero-inner {
  min-height: 336px;
}
.about-page .why-hero-photo {
  min-height: 336px;
}
.about-page .why-hero-copy {
  padding: 32px 36px 32px 0;
}
.about-page .why-hero-copy h1 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.08;
}
.about-page .why-hero-copy h1 .company-suffix {
  display: inline;
  color: var(--lp-orange);
  white-space: nowrap;
}
.about-page .why-hero-copy p:not(.lp-eyebrow) {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
}
.about-page .lp-actions {
  margin-top: 18px;
  gap: 12px;
}
.about-page .lp-btn,
.about-page .lp-cta-button {
  min-height: 54px;
  padding: 9px 20px;
  gap: 10px;
}
.about-page .lp-btn svg,
.about-page .lp-cta-button svg {
  width: 22px;
  height: 22px;
}
.about-page .lp-btn strong,
.about-page .lp-cta-button strong {
  font-size: 15px;
}
.about-page .lp-btn small,
.about-page .lp-cta-button small {
  margin-top: 3px;
  font-size: 11px;
}
.about-page .why-cert-badge {
  bottom: 22px;
  width: 168px;
  padding: 14px 14px;
}
.about-page .why-cert-badge img {
  width: 80px;
  margin-bottom: 9px;
}
.about-page .why-cert-badge strong,
.about-page .why-rating-badge strong {
  font-size: 13px;
}
.about-page .why-cert-badge span,
.about-page .why-rating-badge span {
  font-size: 11px;
  margin-top: 5px;
}
.about-page .why-rating-badge {
  bottom: 28px;
  width: 148px;
  padding: 13px 14px;
}
.about-page .why-rating-badge strong {
  font-size: 22px;
}
.about-page .lp-proof-grid {
  min-height: 50px;
  gap: 20px;
}
.about-page .lp-section {
  padding: 22px 0 16px;
}
.about-page .lp-section-head {
  margin-bottom: 14px;
}
.about-page .lp-section-head h2,
.about-page .lp-trust-copy h2,
.about-page .lp-cta-copy h2 {
  font-size: clamp(22px, 2.7vw, 26px);
}
.about-page .lp-trust-section {
  padding-top: 6px;
  padding-bottom: 22px;
}
.about-page .lp-trust-layout {
  gap: 32px;
}
.about-page .lp-trust-copy p {
  margin-top: 10px;
  color: #1f2a44;
  font-size: 14.5px;
  line-height: 1.55;
}
.about-page .lp-trust-copy p:first-of-type {
  margin-top: 14px;
}
.about-page .lp-review-panel {
  padding: 18px 22px;
}
.about-page .lp-review {
  margin-top: 10px;
  padding: 12px 14px;
}
.about-page .lp-review-panel > p {
  margin-top: 6px;
}
.about-page .lp-cta-band {
  padding: 0 0 14px;
}
.about-page .lp-cta-inner {
  min-height: 82px;
}
.about-page .lp-cta-copy {
  padding: 14px 0;
}
.about-page .lp-cta-copy p {
  margin-top: 5px;
}
.about-page .lp-cta-photo {
  width: 200px;
}
.about-page .lp-cta-button {
  margin-right: 28px;
  min-width: 220px;
}
.about-page .lp-footer {
  padding: 18px 0 10px;
}
.about-page .lp-footer-grid {
  gap: 28px;
}
.about-page .lp-legal {
  margin-top: 14px;
  padding-top: 10px;
}

.about-page .about-hero-photo {
  background: linear-gradient(135deg, #eef2f8 0%, #dde4f0 100%);
}
.about-page .about-hero-photo img {
  object-position: center 35%;
}
.about-page .about-hero-photo.photo-pending::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.85) 28%, rgba(255,255,255,.35) 58%, rgba(255,255,255,0) 80%);
}
.about-page .about-hero-photo.photo-pending::after {
  content: "Placeholder zdjęcia";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a96ab;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Brand marquee */
.brand-marquee {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brand-scroll 32s linear infinite;
  will-change: transform;
}
.brand-marquee-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}
.brand-marquee-group span {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: #fff;
  color: var(--lp-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.005em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(8, 27, 52, .05);
}
.brand-marquee:hover .brand-marquee-track,
.brand-marquee:focus-within .brand-marquee-track {
  animation-play-state: paused;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
  }
}

@media (max-width: 859px) {
  .about-page .why-hero-inner {
    min-height: 0;
  }
  .about-page .why-hero-photo {
    min-height: 220px;
  }
  .about-page .why-hero-copy {
    padding: 20px 18px 20px;
  }
  .about-page .lp-cta-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
  }
  .about-page .lp-cta-photo {
    display: none;
  }
  .about-page .lp-cta-copy {
    grid-column: 1;
    padding: 16px 18px 0;
  }
  .about-page .lp-cta-button {
    margin: 0 18px 16px;
    min-width: 0;
  }
  .about-page .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .brand-marquee-group {
    gap: 12px;
    padding-right: 12px;
  }
  .brand-marquee-group span {
    padding: 8px 16px;
    font-size: 13.5px;
  }
}

/* =============================================================
   Blog Styles
   ============================================================= */

.blog-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 27, 52, .03);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(8, 27, 52, .08);
  border-color: rgba(255, 135, 15, .3);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--lp-navy-2), var(--lp-navy));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.blog-card-img-accent {
  background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2));
}

.blog-card-img svg {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--lp-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--lp-navy);
  margin: 0 0 12px 0;
  transition: color .2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--lp-orange);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* Single Post Page Styles */
.blog-post-header {
  padding-top: 140px;
  padding-bottom: 40px;
  background: var(--lp-soft);
  border-bottom: 1px solid var(--lp-border);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--lp-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.blog-post-title {
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--lp-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.blog-post-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .blog-post-container {
    grid-template-columns: 2.5fr 1fr;
  }
}

.blog-post-content {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

.blog-post-content p {
  margin-top: 0;
  margin-bottom: 24px;
}

.blog-post-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-navy);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.blog-post-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--lp-navy);
  margin-top: 30px;
  margin-bottom: 12px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content strong {
  color: var(--lp-navy);
}

.blog-post-content blockquote {
  margin: 30px 0;
  padding: 16px 24px;
  border-left: 4px solid var(--lp-orange);
  background: var(--lp-soft);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.blog-post-content blockquote p {
  margin: 0;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(8, 27, 52, .02);
}

.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--lp-navy);
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lp-border);
}

.sidebar-widget-cta {
  background: linear-gradient(135deg, var(--lp-navy-2), var(--lp-navy));
  color: #fff;
  border: none;
}

.sidebar-widget-cta h4 {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.1);
}

.sidebar-widget-cta p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: rgba(255,255,255,.8);
}

.sidebar-widget-cta .lp-btn {
  width: 100%;
  min-height: 56px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--lp-muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--lp-orange);
}

.breadcrumbs span {
  color: #cbd5e1;
}

