
/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: #fff;
  color: #0b1f3a;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
}

/* ============================================================
   PŁATNIK MANAGER – INNERSOFT
   assets/css/main.css
   v1.0.0
============================================================ */

/* ===========================
   CSS RESET & VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1f3a;
  --navy-mid:    #122d54;
  --blue:        #1a5ccc;
  --blue-bright: #2d6ef7;
  --blue-light:  #e8f0fe;
  --green:       #18b881;
  --green-light: #d1fae5;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.13);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --container:   1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.18; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--gray-600); }
p.lead { font-size: 1.08rem; line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.section-heading { text-align: center; max-width: 640px; margin: 0 auto; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { font-size: .97rem; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,92,204,.35);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,110,247,.4); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }
.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.22); }

/* ===========================
   LAYOUT
=========================== */
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }

/* ===========================
   NAVIGATION
=========================== */
#site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
#site-navbar.scrolled { background: rgba(11,31,58,.99); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  max-width: 1480px;
  margin: 0 auto;
  height: 66px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.nav-logo:hover,
.nav-logo:focus {
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-text .brand { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff; white-space: nowrap; }
.logo-text .product { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.80); letter-spacing: .04em; white-space: nowrap; }

/* WordPress custom logo support */
.custom-logo-link { display: flex; align-items: center; text-decoration: none; }
.custom-logo { max-height: 40px; width: auto; }

/* Nav menu */
.nav-menu-wrap { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu li a {
  padding: 7px 11px;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: #fff; background: rgba(255,255,255,.09); }

/* Sub-menu */
.nav-menu li { position: relative; }
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-menu li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li a { padding: 8px 12px; border-radius: var(--radius-sm); font-size: .85rem; }

.nav-cta { margin-left: 8px; flex-shrink: 0; }
.nav-cta .btn { padding: 9px 16px; font-size: .86rem; white-space: nowrap; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 1180px) {
  .nav-menu-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-wrap.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px;
    gap: 4px;
    align-items: stretch;
  }
  .nav-menu { flex-direction: column; gap: 2px; }
  .nav-menu li a { padding: 12px 16px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; background: rgba(255,255,255,.05); padding: 4px 0 4px 16px; }
}

/* ===========================
   HERO
=========================== */
.pm-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0e2a52 55%, #122d5e 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.pm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 55%, rgba(45,110,247,.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(24,184,129,.12) 0%, transparent 60%);
  pointer-events: none;
}
.pm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(24,184,129,.15);
  border: 1px solid rgba(24,184,129,.35);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #4eda9e;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: .5rem; }

.hero-title { color: #fff; margin-bottom: 22px; }
.hero-title em { font-style: normal; color: #5d93ff; }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.72; margin-bottom: 38px; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.trust-item .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(24,184,129,.25);
  display: flex; align-items: center; justify-content: center;
  color: #4eda9e;
  font-size: .65rem;
}

/* App mockup */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.app-window {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}
.app-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-dots { display: flex; gap: 6px; }
.app-dots span { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.app-dots span:first-child { background: #fc5f5a; }
.app-dots span:nth-child(2) { background: #fbb64a; }
.app-dots span:nth-child(3) { background: #33c758; }
.app-title-bar { font-size: .78rem; color: var(--gray-600); font-weight: 500; margin-left: 4px; }
.app-body { padding: 20px; background: #f8fafc; }
.app-row { display: flex; gap: 12px; margin-bottom: 12px; }
.app-card-sm {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.app-card-sm .card-label { font-size: .68rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.app-card-sm .card-value { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-top: 3px; }
.app-card-sm .card-delta { font-size: .72rem; color: var(--green); font-weight: 600; margin-top: 1px; }
.app-table-wrap { background:#fff; border-radius:10px; padding:14px; border:1px solid #e8edf3; box-shadow:0 2px 6px rgba(0,0,0,.05); margin-bottom:12px; }
.app-table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.app-table-title { font-size: .82rem; font-weight: 700; color: var(--navy); }
.app-table-badge { font-size: .68rem; font-weight: 600; background: var(--blue-light); color: var(--blue); padding: 3px 9px; border-radius: 99px; }
.app-table { width: 100%; border-collapse: collapse; }
.app-table th { text-align: left; font-size: .67rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); padding: 6px 10px; border-bottom: 1px solid #e8edf3; }
.app-table td { padding: 8px 10px; font-size: .77rem; color: var(--gray-600); border-bottom: 1px solid #f1f5f9; }
.app-table tr:last-child td { border: none; }
.status-ok { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.status-warn { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; }
.app-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 56px; padding: 8px 0; margin-top: 12px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-light); }
.bar.active { background: var(--blue); }
.bar.green { background: rgba(24,184,129,.25); }

.floating-badge {
  position: absolute;
  top: -18px;
  right: -22px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.4;
}
.floating-badge strong { display: block; font-size: 1.1rem; }

/* ===========================
   PROBLEM SECTION
=========================== */
.pm-problem { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue-light);
  transition: var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.problem-card:hover::before { background: var(--blue); }
.problem-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.25rem; }
.problem-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.problem-card p { font-size: .88rem; }

/* ===========================
   ABOUT SECTION
=========================== */
.pm-about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .pm-about .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: 0; }
}
.about-visual { position: relative; }
.about-main-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.about-main-card .label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.about-main-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 20px; }
.progress-item { margin-bottom: 16px; }
.progress-item .pi-label { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; }
.progress-item .pi-label span { color: rgba(255,255,255,.7); }
.progress-item .pi-label strong { color: #fff; }
.progress-bar-bg { background: rgba(255,255,255,.12); border-radius: 99px; height: 6px; }
.progress-bar-fill { height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--blue) 0%, #5d93ff 100%); }
.progress-bar-fill.green { background: linear-gradient(90deg, var(--green) 0%, #4eda9e 100%); }
.about-float {
  position: absolute;
  bottom: -16px; right: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.about-float .af-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.about-float .af-label { font-size: .78rem; color: var(--gray-600); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-check-list { margin: 24px 0; }
.about-check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: .93rem; color: var(--gray-600); }
.about-check-list li .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .7rem; color: var(--green); margin-top: 2px; }

/* ===========================
   FEATURES SECTION
=========================== */
.pm-features { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(26,92,204,.1); transform: translateY(-3px); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.fi-blue { background: var(--blue-light); }
.fi-green { background: var(--green-light); }
.fi-navy { background: rgba(11,31,58,.07); }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 10px; color: var(--navy); }
.feature-card p { font-size: .88rem; line-height: 1.65; }

/* ===========================
   STATS SECTION
=========================== */
.pm-stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.pm-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45,110,247,.15) 0%, transparent 65%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 260px));
  justify-content: center;
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .stat-item { padding: 34px 16px; }
}
.stat-value { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-value span { color: var(--blue-bright); }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.6); font-weight: 500; }
.stat-note { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 4px; font-style: italic; }

/* ===========================
   FOR WHOM SECTION
=========================== */
.pm-for-whom .fw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 52px; }
.fw-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #fff;
  transition: var(--transition);
}
.fw-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(26,92,204,.09); transform: translateY(-2px); }
.fw-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 18px; transition: var(--transition); }
.fw-card:hover .fw-icon { background: var(--blue); }
.fw-card h3 { font-size: .97rem; margin-bottom: 8px; color: var(--navy); }
.fw-card p { font-size: .84rem; }

/* ===========================
   DOWNLOAD SECTION
=========================== */
.pm-download { background: var(--gray-50); border-top: 1px solid var(--gray-200); }

.download-hub-card {
  margin-top: 52px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.download-hub-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
}
.download-hub-content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  color: var(--navy);
}
.download-hub-content p {
  margin: 0;
  color: var(--gray-600);
}
.download-hub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.download-hub-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-600);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .82rem;
}
.download-hub-meta strong {
  color: var(--navy);
  margin-right: 4px;
}
.download-hub-featured {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .84rem;
  color: var(--gray-600);
}
.dhf-label {
  font-weight: 700;
  color: var(--navy);
}
.dhf-item {
  background: rgba(26,92,204,.08);
  color: var(--blue);
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 600;
}
.download-hub-action {
  display: flex;
  justify-content: flex-end;
}
.btn-large {
  padding: 13px 22px;
  font-size: .95rem;
}

.download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 52px; }
.dl-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.dl-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.dl-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.dl-icon.green { background: var(--green-light); }
.dl-info { flex: 1; min-width: 0; }
.dl-name { font-weight: 700; font-size: .95rem; color: var(--navy); }
.dl-desc { font-size: .8rem; color: var(--gray-600); margin-top: 2px; }
.dl-meta { display: flex; gap: 12px; margin-top: 6px; }
.dl-meta span { font-size: .72rem; color: var(--gray-400); }
.btn-dl {
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--blue);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.btn-dl:hover { background: var(--blue); color: #fff; }

/* ===========================
   TESTIMONIALS
=========================== */
.pm-testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 52px; }
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--blue); background: var(--blue-light); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: .92rem; line-height: 1.72; color: var(--gray-600); margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '\201C'; font-size: 1.8rem; color: var(--blue); line-height: 0; vertical-align: -.4em; margin-right: 4px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: #fff; flex-shrink: 0; }
.av-blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%); }
.av-navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.av-green { background: linear-gradient(135deg, #0e7a55 0%, var(--green) 100%); }
.testi-meta .testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-meta .testi-role { font-size: .78rem; color: var(--gray-400); }

/* ===========================
   TRUST SECTION
=========================== */
.pm-trust {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pm-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(24,184,129,.1) 0%, transparent 60%);
}
.trust-section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.trust-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 52px; }
.trust-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.trust-card-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(45,110,247,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.trust-card-icon.tg { background: rgba(24,184,129,.2); }
.trust-card h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.trust-card p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ===========================
   FAQ SECTION
=========================== */
.pm-faq { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
@media (max-width: 1180px) { .faq-inner { grid-template-columns: 1fr; gap: 36px; } }
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p { font-size: .92rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue); }
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: .94rem;
  color: var(--navy);
  user-select: none;
}
.faq-q:hover { color: var(--blue); }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-a { display: block; }

.faq-home-category-title {
  margin: 26px 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
  letter-spacing: .01em;
}
.faq-home-category-title:first-child { margin-top: 0; }


.faq-more-wrap {
  margin-top: 28px;
  text-align: center;
}
.faq-more-btn {
  min-width: 150px;
}
.faq-more-admin-note {
  color: var(--gray-600);
  font-size: .9rem;
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}


/* ===========================
   CONTACT SECTION
=========================== */
.pm-contact { background: #fff; border-top: 1px solid var(--gray-200); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
@media (max-width: 1180px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cd-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cd-text .cd-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; color: var(--gray-400); }
.cd-text .cd-value { font-size: .92rem; font-weight: 600; color: var(--navy); }
.cd-text a { color: var(--blue); }
.cd-text a:hover { text-decoration: underline; }
.contact-hours { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 20px; margin-top: 16px; }
.contact-hours h4 { font-size: .88rem; margin-bottom: 10px; color: var(--navy); }
.contact-hours p { font-size: .84rem; line-height: 1.6; }

/* Contact Form */
.contact-form { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .83rem; font-weight: 600; color: var(--gray-800); margin-bottom: 7px; }
.field label .req { color: var(--blue); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-800);
  outline: none;
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,92,204,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--gray-600); cursor: pointer; }
.field-check input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.btn-submit { width: 100%; justify-content: center; padding: 15px; }

/* WPCF7 overwrites */
.wpcf7-form { }
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-800);
  outline: none;
  transition: var(--transition);
}
.wpcf7-form input[type=submit] {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 26px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26,92,204,.35);
}
.wpcf7-form input[type=submit]:hover { background: var(--blue-bright); transform: translateY(-1px); }
.wpcf7-not-valid-tip { color: #e53e3e; font-size: .8rem; margin-top: 4px; }
.wpcf7-response-output { padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 16px; font-size: .88rem; }

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 60px 0 0;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-logo .brand { color: #fff; }
.footer-brand .brand-logo .product { color: rgba(255,255,255,.80); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.82); line-height: 1.7; max-width: 300px; }
.footer-col h2.footer-title, .footer-col h4 { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 16px; letter-spacing: .03em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.82); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.78); }

/* WordPress widget styles in footer */
.footer-widget { }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a { font-size: .87rem; color: rgba(255,255,255,.82); }
.footer-widget ul li a:hover { color: #fff; }

/* ===========================
   STANDARD WP PAGE/POST CONTENT
=========================== */
.entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 { color: var(--navy); margin-top: 32px; margin-bottom: 14px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.entry-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 18px; }
.entry-content li { margin-bottom: 8px; color: var(--gray-600); }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content img { margin: 24px auto; border-radius: var(--radius-md); }
.entry-content blockquote { border-left: 4px solid var(--blue); padding: 16px 20px; background: var(--blue-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.entry-content blockquote p { margin: 0; color: var(--navy); }
.entry-content pre { background: var(--gray-800); color: #fff; padding: 20px; border-radius: var(--radius-md); overflow-x: auto; margin-bottom: 18px; font-size: .88rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.entry-content th { background: var(--navy); color: #fff; padding: 10px 14px; font-family: var(--font-head); font-size: .88rem; text-align: left; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: var(--gray-600); }
.entry-content tr:nth-child(even) td { background: var(--gray-50); }

/* ===========================
   404 PAGE
=========================== */
.pm-404 { min-height: 70vh; display: flex; align-items: center; text-align: center; }
.pm-404-inner { max-width: 500px; margin: 0 auto; }
.pm-404-code { font-family: var(--font-head); font-size: 8rem; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 8px; }
.pm-404 h1 { color: var(--navy); font-size: 2rem; margin-bottom: 16px; }
.pm-404 p { margin-bottom: 28px; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   GUTENBERG ALIGNMENT
=========================== */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: 0; margin-right: 0; }
.wp-block-image figcaption { text-align: center; font-size: .82rem; color: var(--gray-400); margin-top: 8px; }

/* ============================================================
   PEŁNA STRONA FAQ
============================================================ */
.pm-faq-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}
.pm-faq-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 12px 0 16px;
}
.pm-faq-hero p {
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto;
}
#faq-search {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
#faq-search:focus { box-shadow: 0 4px 24px rgba(0,0,0,.25); }

.pm-faq-page-body { padding: 48px 0 80px; }

.faq-page-meta {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 24px;
}

.faq-page-list .faq-item { position: relative; }

.faq-category-group {
  margin-bottom: 34px;
}
.faq-category-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
  padding: 20px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.faq-category-heading h2 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 1.2rem;
  color: var(--navy);
}
.faq-category-heading p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: .9rem;
}
.faq-category-count {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
}
@media (max-width: 640px) {
  .faq-category-heading {
    flex-direction: column;
  }
}


.faq-badge-featured {
  font-size: .75rem;
  margin-left: 8px;
  opacity: .6;
  vertical-align: middle;
}

.faq-page-cta {
  margin-top: 64px;
  padding: 48px;
  background: var(--bg-alt);
  border-radius: 20px;
  text-align: center;
}
.faq-page-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.faq-page-cta p { color: var(--text-muted); margin: 0; }

.faq-no-results {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}

/* ============================================================
   PASEK PARTNERÓW
============================================================ */
.pm-partners {
  background: var(--bg-alt);
  overflow: hidden;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}
.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, rgba(246,249,252,0) 100%);
}
.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, rgba(246,249,252,0) 100%);
}

.partners-marquee__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  animation: pm-scroll-partners var(--pm-partners-duration, 30s) linear infinite;
  will-change: transform;
}
.partners-marquee.is-static .partners-marquee__inner {
  animation: none;
  width: 100%;
  justify-content: center;
}
.partners-marquee.is-pause-on-hover:hover .partners-marquee__inner {
  animation-play-state: paused;
}

.partners-marquee__group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding-right: 16px;
  min-width: max-content;
  flex: 0 0 auto;
}

.partners-marquee.partners-gap-tight .partners-marquee__group {
  gap: 10px;
  padding-right: 10px;
}
.partners-marquee.partners-gap-normal .partners-marquee__group {
  gap: 16px;
  padding-right: 16px;
}
.partners-marquee.partners-gap-wide .partners-marquee__group {
  gap: 26px;
  padding-right: 26px;
}

@keyframes pm-scroll-partners {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.partner-logo-pill {
  padding: 12px 18px;
}

.partners-marquee.partners-size-medium .partner-logo-mark {
  width: 66px;
  height: 66px;
  padding: 8px;
}
.partners-marquee.partners-size-medium .partner-name {
  font-size: .96rem;
}
.partners-marquee.partners-size-medium .partner-logo-pill {
  padding: 13px 20px;
}

.partners-marquee.partners-size-large .partner-logo-mark {
  width: var(--pm-partner-logo-size, 84px);
  height: var(--pm-partner-logo-size, 84px);
  padding: 9px;
}
.partners-marquee.partners-size-large .partner-name {
  font-size: 1rem;
}
.partners-marquee.partners-size-large .partner-logo-pill {
  padding: 14px 22px;
}

.partner-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  flex-shrink: 0;
}
.partner-logo-pill:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(30,136,229,.12);
  transform: translateY(-2px);
}

.partner-logo-mark {
  width: var(--pm-partner-logo-size, 84px);
  height: var(--pm-partner-logo-size, 84px);
  border-radius: 12px;
  background: #f6f9fc;
  border: 1px solid rgba(16,45,84,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
}
.partners-marquee.is-logos-only .partner-logo-pill {
  padding: 14px;
  gap: 0;
}
.partners-marquee.is-logos-only .partner-logo-mark {
  width: var(--pm-partner-logo-size, 84px);
  height: var(--pm-partner-logo-size, 84px);
  padding: max(6px, calc(var(--pm-partner-logo-size, 84px) * .12));
}
.partners-marquee.is-logos-only .partner-name {
  display: none;
}

.partners-marquee.is-logos-only .partner-logo-pill {
  position: relative;
}
.partners-marquee.is-logos-only .partner-logo-pill::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  background: rgba(16,45,84,.96);
  color: #fff;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 10px 26px rgba(16,45,84,.18);
  z-index: 5;
}
.partners-marquee.is-logos-only .partner-logo-pill::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%) translateY(6px);
  border: 6px solid transparent;
  border-top-color: rgba(16,45,84,.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 5;
}
.partners-marquee.is-logos-only .partner-logo-pill:hover::after,
.partners-marquee.is-logos-only .partner-logo-pill:hover::before,
.partners-marquee.is-logos-only .partner-logo-pill:focus-visible::after,
.partners-marquee.is-logos-only .partner-logo-pill:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.partner-logo-mark img,
.partner-logo-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partners-marquee[data-color-mode="mono"] .partner-logo-mark img,
.partners-marquee[data-color-mode="mono"] .partner-logo-image {
  filter: grayscale(1);
  opacity: .9;
}

.partner-initials {
  width: 100%;
  height: 100%;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.partner-name {
  font-size: 1rem;
  font-weight: 600;
}

.partner-logo-mark {
  padding: max(6px, calc(var(--pm-partner-logo-size, 84px) * .11));
}
.partner-logo-pill {
  padding: max(10px, calc(var(--pm-partner-logo-size, 84px) * .16)) max(16px, calc(var(--pm-partner-logo-size, 84px) * .26));
}
.partners-marquee.is-logos-only .partner-logo-pill {
  padding: max(10px, calc(var(--pm-partner-logo-size, 84px) * .14));
}

@media (max-width: 767px) {
  .partner-logo-pill {
    padding: 10px 16px;
    gap: 10px;
  }
  .partner-logo-mark {
    width: 58px;
    height: 58px;
    padding: 7px;
  }
  .partners-marquee.is-logos-only .partner-logo-pill {
    padding: 12px;
  }
  .partner-name {
    font-size: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__inner {
    animation: none;
  }
}

/* ============================================================
   9. KARTA CTA W SEKCJI FUNKCJE
============================================================ */
.feature-card-cta {
  background: #fff;
  color: var(--text);
  display: block;
}
.feature-card-cta h3 { color: var(--navy); }
.feature-card-cta p  { color: var(--gray-600); }
.feature-card-cta .btn { align-self: flex-start; }
.fi-cta {
  background: var(--blue-light) !important;
  color: var(--navy) !important;
  font-size: 1.3rem;
}

/* ============================================================
   WYRÓŻNIONY LINK PARTNERA W MENU
============================================================ */
.pm-partner-menu-item > a {
  color: var(--blue) !important;
  font-weight: 700 !important;
  position: relative;
}
.pm-partner-menu-item > a::after {
  content: '↗';
  font-size: .75em;
  margin-left: 3px;
  opacity: .7;
}

/* ============================================================
   BAR CTA W SEKCJI POBIERZ (strona główna)
============================================================ */
.download-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  flex-wrap: wrap;
}
.dcta-text { color: var(--text-muted); font-size: .95rem; }
.dcta-text strong { color: var(--text); }

/* ============================================================
   PEŁNA LISTA PLIKÓW (template-downloads.php)
============================================================ */
.dl-full-list { display: flex; flex-direction: column; gap: 16px; }

.dl-grouped-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.dl-download-group {
  padding: 28px;
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.dl-download-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.dl-download-group-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--navy);
}
.dl-download-group-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.6;
}
.dl-group-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(30,136,229,.18);
}
.dl-download-group .dl-full-card {
  border-color: rgba(16,45,84,.08);
}

.dl-full-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.dl-full-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.07); border-color: var(--blue); }

.dlf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f0fe;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.dlf-icon.green { background: #e6f9f2; color: #18b881; }

.dlf-body { flex: 1; min-width: 0; }
.dlf-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.dlf-desc  { color: var(--text-muted); font-size: .9rem; margin-bottom: 10px; }

.dlf-meta  { display: flex; flex-wrap: wrap; gap: 8px; }
.dlf-tag {
  font-size: .78rem;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--text-muted);
  white-space: nowrap;
}
.dlf-count { background: #e8f0fe; color: var(--blue); font-weight: 600; }
.dlf-muted { opacity: .65; }

.dl-badge-featured { font-size: .8rem; margin-left: 6px; vertical-align: middle; }

.dlf-action { flex-shrink: 0; }
.btn-dl-full { padding: 10px 22px; font-size: .9rem; }

@media (max-width: 640px) {
  .dl-download-group { padding: 20px 16px; }
  .dl-download-group-head { flex-direction: column; gap: 12px; }
  .dl-full-card { flex-wrap: wrap; }
  .dlf-action   { width: 100%; }
  .btn-dl-full  { width: 100%; text-align: center; }
  .download-cta-bar { flex-direction: column; text-align: center; }
  .download-hub-card { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .download-hub-icon { margin: 0 auto; }
  .download-hub-meta, .download-hub-featured { justify-content: center; }
  .download-hub-action { justify-content: center; }
}

/* ============================================================
   MATERIAŁY, CENNIK, SPOŁECZNOŚĆ
============================================================ */
.pm-resources {
  background: #fff;
  border-top: 1px solid var(--gray-200);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.resource-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(26,92,204,.12);
  transform: translateY(-3px);
}
.resource-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.resource-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.resource-card p {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.resource-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
}
.resources-admin-note {
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  color: var(--gray-600);
}

/* ============================================================
   PROSTE PODSTRONY: LICENCJA, CENNIK, FILMY
============================================================ */
.pm-simple-page-body {
  padding: 64px 0;
}
.pm-content-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 8px 30px rgba(11,31,58,.06);
  color: var(--text);
}
.pm-content-card h2,
.pm-content-card h3,
.pm-content-card h4 {
  color: var(--navy);
  margin-top: 1.4em;
  margin-bottom: .6em;
}
.pm-content-card h2:first-child,
.pm-content-card h3:first-child {
  margin-top: 0;
}
.pm-content-card p,
.pm-content-card li {
  line-height: 1.75;
  color: var(--gray-600);
}
.pm-content-card ul,
.pm-content-card ol {
  margin: 16px 0 24px 24px;
}
.video-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(11,31,58,.05);
  display: flex;
  flex-direction: column;
}
.video-thumb-symbol {
  min-height: 150px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
}
.video-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.video-card h2 {
  font-size: 1.08rem;
  color: var(--navy);
  margin: 0;
}
.video-duration {
  color: var(--blue);
  font-weight: 700;
  font-size: .86rem;
}
.video-desc {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.65;
  flex: 1;
}
.video-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   FLASH / HOT NEWS
============================================================ */
.pm-flash-news {
  background: linear-gradient(135deg, #07192f 0%, #0b1f3a 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  position: relative;
  z-index: 990;
}
.pm-flash-news__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.pm-flash-news__label {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(45,110,247,.22);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.pm-flash-news__viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 34px;
  overflow: hidden;
}
.pm-flash-news__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.pm-flash-news__item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pm-flash-news__item.is-linkable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.pm-flash-news__item.is-info-only {
  cursor: default;
  color: inherit;
}
.pm-flash-news__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(45,110,247,.22);
  color: #fff;
}
.pm-flash-news__item--hot .pm-flash-news__icon { background: rgba(255,95,95,.22); color: #ffd5d5; }
.pm-flash-news__item--success .pm-flash-news__icon { background: rgba(24,184,129,.22); color: #c9ffe8; }
.pm-flash-news__item--warning .pm-flash-news__icon { background: rgba(255,184,77,.22); color: #ffe7b8; }
.pm-flash-news__content {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pm-flash-news__content strong {
  font-family: var(--font-head);
  font-size: .95rem;
  line-height: 1.2;
  color: #fff;
  flex: 0 0 auto;
}
.pm-flash-news__content span {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  overflow: hidden;
  text-overflow: ellipsis;
}
.pm-flash-news__link {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
}
.pm-flash-news__link:hover { background: rgba(255,255,255,.18); }
.pm-flash-news__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.pm-flash-news__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.pm-flash-news__btn:hover { background: rgba(255,255,255,.16); }

@media (max-width: 767px) {
  .pm-flash-news__inner {
    align-items: flex-start;
    gap: 10px;
    min-height: 72px;
  }
  .pm-flash-news__label {
    margin-top: 2px;
    font-size: .68rem;
  }
  .pm-flash-news__viewport {
    min-height: 54px;
  }
  .pm-flash-news__item {
    align-items: flex-start;
    gap: 8px;
  }
  .pm-flash-news__content {
    display: block;
    white-space: normal;
    line-height: 1.35;
  }
  .pm-flash-news__content strong,
  .pm-flash-news__content span {
    display: block;
  }
  .pm-flash-news__content span {
    font-size: .82rem;
  }
  .pm-flash-news__link {
    display: none;
  }
}


/* ============================================================
   POJEDYNCZY KOMUNIKAT FLASH
============================================================ */
.pm-flash-single .pm-page-content {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 12px 36px rgba(11,31,58,.06);
}
.pm-flash-single .pm-page-content p {
  margin-bottom: 1.1em;
  line-height: 1.75;
}


/* ============================================================
   HISTORIA ZMIAN / CHANGELOG
============================================================ */
.pm-changelog-section {
  background: var(--gray-50);
}
.pm-changelog-intro {
  max-width: 920px;
  margin: 0 auto 24px;
  color: var(--gray-600);
  line-height: 1.75;
}
.pm-changelog-box {
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(11,31,58,.08);
  overflow: hidden;
}
.pm-changelog-pre {
  margin: 0;
  padding: 28px 30px;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Consolas, Monaco, 'Courier New', monospace;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.pm-changelog-error {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: #fff6e5;
  border: 1px solid rgba(245,158,11,.35);
  color: #7a4b00;
}

.pm-changelog-admin-note {
  max-width: 1040px;
  margin: 0 auto 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30,136,229,.22);
  background: #f2f8ff;
  color: var(--navy);
  font-size: .9rem;
}
.pm-changelog-admin-note code {
  background: rgba(255,255,255,.8);
  padding: 2px 5px;
  border-radius: 4px;
}
.pm-changelog-admin-note a {
  color: var(--blue);
  font-weight: 700;
}

.footer-widget h2.footer-title { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.92); margin-bottom: 16px; letter-spacing: .03em; text-transform: uppercase; }


/* ============================================================
   v3.5j - poprawki kontrastu WCAG / Lighthouse
   Bez minifikacji i bez zmian w JS.
============================================================ */

/* Górne menu */
#site-navbar .nav-menu li a {
  color: #e7f0fb;
}

#site-navbar .nav-menu li a:hover,
#site-navbar .nav-menu li.current-menu-item > a {
  color: #ffffff;
}

/* Wyróżnione linki w menu, np. PodatkiPodatki.pl */
#site-navbar .pm-partner-menu-item > a,
.pm-partner-menu-item > a {
  color: #bfe8ff !important;
  font-weight: 800 !important;
  background: rgba(143, 211, 255, .12);
}

#site-navbar .pm-partner-menu-item > a:hover,
.pm-partner-menu-item > a:hover {
  color: #ffffff !important;
  background: rgba(143, 211, 255, .22);
}

/* Logo i podtytuł */
.logo-text .product,
.footer-brand .brand-logo .product {
  color: #d7e6f7 !important;
}

/* Stopka */
#site-footer {
  color: #dbe7f5;
}

#site-footer p,
.footer-brand p,
.footer-bottom p {
  color: #dbe7f5 !important;
}

.footer-col h2.footer-title,
.footer-col h4,
.footer-widget h2.footer-title,
.footer-widget h4 {
  color: #ffffff !important;
}

.footer-col ul li a,
.footer-widget ul li a {
  color: #dbe7f5 !important;
}

.footer-col ul li a:hover,
.footer-widget ul li a:hover {
  color: #ffffff !important;
}

/* Linki w stopce i copyright */
.footer-bottom a,
#site-footer a {
  color: #dbe7f5;
}

.footer-bottom a:hover,
#site-footer a:hover {
  color: #ffffff;
}



/* ============================================================
   POMOC ZDALNA / TEAMVIEWER
============================================================ */
.nav-remote {
  margin-left: 8px;
  flex-shrink: 0;
}
.btn-remote-support {
  padding: 9px 15px;
  font-size: .86rem;
  color: #ffe45c;
  border-color: rgba(255, 228, 92, .45);
  background: rgba(255, 228, 92, .08);
  box-shadow: none;
}
.btn-remote-support:hover,
.btn-remote-support:focus {
  color: #0b1f3a;
  background: #ffe45c;
  border-color: #ffe45c;
  transform: translateY(-1px);
}

.remote-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 228, 92, .20), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #102d54 100%);
  color: #fff;
  padding: 86px 0 72px;
  overflow: hidden;
}
.remote-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 52px;
  align-items: center;
}
.remote-hero h1 {
  color: #fff;
  max-width: 720px;
  margin: 12px 0 18px;
}
.remote-lead {
  color: rgba(255,255,255,.86);
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.remote-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.remote-note {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}
.btn-lg {
  padding: 15px 26px;
  font-size: 1rem;
}
.remote-window {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.remote-window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.84);
  padding: 0 8px 12px;
}
.remote-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.remote-window-bar strong {
  margin-left: 8px;
  font-size: .9rem;
}
.remote-screen {
  border-radius: 20px;
  background: linear-gradient(160deg, #fff, #eaf4ff);
  min-height: 330px;
  padding: 34px 30px;
  color: var(--navy);
}
.remote-screen-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
}
.remote-screen-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.remote-id-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.remote-id-row span {
  color: var(--gray-600);
}
.remote-safe-badge {
  margin-top: 20px;
  background: rgba(20, 150, 90, .12);
  color: #0d6b45;
  border-radius: 999px;
  padding: 9px 14px;
  display: inline-flex;
  font-weight: 700;
  font-size: .86rem;
}

.remote-card-grid {
  display: grid;
  gap: 24px;
}
.remote-steps-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}
.remote-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.remote-step {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.remote-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.remote-contact-line {
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 0;
}
.remote-inline-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}
.remote-safe-text {
  color: #0d6b45;
  font-weight: 700;
}

.remote-security {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.remote-two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}
.remote-two-col h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.remote-security-list {
  display: grid;
  gap: 14px;
}
.remote-security-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 18px 20px;
}
.remote-security-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
}
.remote-security-item span {
  color: var(--gray-600);
}

.remote-scope-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.remote-scope-list div {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.remote-final-cta {
  padding: 0 0 86px;
}
.remote-final-box {
  background: linear-gradient(135deg, var(--navy), #123c72);
  border-radius: 28px;
  padding: 38px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.remote-final-box h2 {
  color: #fff;
}
.remote-final-box p {
  color: rgba(255,255,255,.82);
}
.remote-hours {
  font-weight: 800;
  color: #ffe45c !important;
  margin-top: 10px;
}
.remote-final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.remote-final-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.remote-final-actions .btn-outline:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
}

@media (max-width: 1200px) {
  .btn-remote-support {
    padding: 8px 12px;
    font-size: .82rem;
  }
}
@media (max-width: 980px) {
  .nav-remote {
    width: 100%;
    margin: 8px 0 0;
  }
  .nav-remote .btn {
    width: 100%;
    justify-content: center;
  }
  .remote-hero-grid,
  .remote-two-col,
  .remote-final-box {
    grid-template-columns: 1fr;
  }
  .remote-final-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .remote-hero {
    padding: 64px 0 52px;
  }
  .remote-steps-grid,
  .remote-scope-list {
    grid-template-columns: 1fr;
  }
  .remote-card,
  .remote-final-box {
    padding: 24px;
  }
}

