:root {
  color-scheme: light;
  --brand: #1d4ed8;
  --brand-dark: #1a45c2;
  --brand-soft: #dbeafe;
  --brand-tint: #eef4ff;
  --accent: #2b6ed9;
  --accent-soft: #e8f0ff;
  --ink: #1a2333;
  --muted: #6b7f99;
  --soft: #9eadc2;
  --bg: #f0f4f9;
  --bg-warm: #f5f8fc;
  --card: #ffffff;
  --border: #e2eaf4;
  --shadow: 0 24px 80px rgba(29, 78, 216, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(29, 78, 216, 0.12),
      transparent 34rem
    ),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 44%, #ffffff 100%);
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.topbar {
  background: var(--brand);
  color: white;
  font-size: 13px;
  position: relative;
  z-index: 101;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}
.topbar strong {
  color: var(--brand-soft);
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.topbar a:hover {
  opacity: 0.85;
}
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 234, 244, 0.8);
  transition: background 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.mobile-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.mobile-nav-panel {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}
.logo:hover {
  transform: scale(1.02);
}
.mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
/* nav-link underline styles moved to end of file (cover all nav links, not just anchors) */
.login-link {
  margin-left: 12px;
  transition: color 0.2s ease;
}
.login-link:hover {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 850;
  transition:
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.08);
}
.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 32, 51, 0.04);
}
.button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
.button.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.button.primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.24);
}
.button.ghost {
  color: var(--brand);
  border-color: rgba(29, 78, 216, 0.2);
  background: rgba(255, 255, 255, 0.7);
}
.button.ghost:hover {
  background: white;
  border-color: rgba(29, 78, 216, 0.4);
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
  padding: 62px 0 78px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.62);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eyebrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.08);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(43, 110, 217, 0.15);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.page-hero {
  padding-bottom: 34px;
}
.cta-note {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.cta-note-centered {
  margin: -6px auto 24px;
  color: rgba(255, 255, 255, 0.82);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}
.trust-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.05);
  border-color: var(--brand-soft);
  background: white;
}
.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 22px;
}
.trust-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.product-stage {
  position: relative;
  min-height: 520px;
}
.phone-card,
.dashboard-card,
.agent-card {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dashboard-card {
  top: 22px;
  right: 0;
  width: min(490px, 100%);
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.dashboard-card:hover {
  transform: scale(1.02);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fbff, #eff6ff);
}
.mock-header i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #93c5fd;
}
.mock-body {
  padding: 20px;
}
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mock-kpi {
  padding: 14px;
  border-radius: 18px;
  background: var(--bg);
}
.mock-kpi strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  color: var(--brand);
}
.mock-kpi span,
.queue-row span,
.agent-card span,
.phone-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.queue-list {
  display: grid;
  gap: 12px;
}
.queue-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.queue-row:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.04);
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: normal;
}
.phone-card {
  left: 0;
  bottom: 24px;
  width: 250px;
  border-radius: 30px;
  padding: 20px;
  transition: transform 0.4s ease;
}
.phone-card:hover {
  transform: translateY(-8px) scale(1.02);
}
.phone-screen {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
}
.phone-screen strong {
  font-size: 28px;
}
.phone-screen span {
  color: rgba(255, 255, 255, 0.7);
}
.agent-card {
  right: 12px;
  bottom: 0;
  width: 260px;
  border-radius: 24px;
  padding: 20px;
  transition: transform 0.4s ease;
}
.agent-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.agent-card strong {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.pulse {
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulsing 2s infinite;
}
@keyframes pulsing {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
section {
  padding: 80px 0;
}
.social-proof {
  padding-top: 0;
}
.social-proof-title {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-proof-row span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head-ctas {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}
h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 32, 51, 0.08);
  border-color: rgba(29, 78, 216, 0.25);
}
.card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.05);
  transition: transform 0.4s ease;
}
.card:hover::after {
  transform: scale(1.4);
}
.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 950;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.card:hover .icon {
  transform: scale(1.05) rotate(-3deg);
  background: var(--brand);
  color: white;
}
.card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.onboarding-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.onboarding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(16, 32, 51, 0.08);
}
.onboarding-card .icon {
  margin-bottom: 18px;
}
.onboarding-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}
.onboarding-card p {
  color: var(--muted);
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.04);
}
.price-card.featured {
  border-color: rgba(29, 78, 216, 0.4);
  box-shadow: 0 20px 44px rgba(29, 78, 216, 0.16);
}
.price-card small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Badge umieszczony zaraz po nazwie pakietu — zmniejsz gap między nimi */
.price-card small + .featured-badge {
  margin-top: -4px;
}
.price-card h2 {
  margin: 0;
  font-size: 28px;
}
.price {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}
.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.price-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}
.price-card li + li {
  margin-top: 8px;
}
.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.pricing-table th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f8fbff;
}
.pricing-table tr:last-child td {
  border-bottom: 0;
}
.pricing-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.audience {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  padding: 90px 0;
}
.audience .section-lead {
  color: rgba(255, 255, 255, 0.75);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.audience-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.audience-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}
.audience-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}
.audience-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.calculator {
  padding: 36px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}
.calculator:hover {
  transform: translateY(-4px);
}
.calculator small {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.calculator strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #60a5fa;
}
.calculator p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.calculator .button {
  width: 100%;
}
.calc-fields {
  display: grid;
  gap: 18px;
  margin: 16px 0 24px;
}
.calc-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.calc-fields output {
  font-weight: 700;
  color: #93c5fd;
}
.calc-fields input[type="range"] {
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-fields input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #60a5fa;
  cursor: pointer;
  transition: background 0.2s;
}
.calc-fields input[type="range"]:hover::-webkit-slider-thumb {
  background: #93c5fd;
}
.calc-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.calc-result strong {
  display: block;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #60a5fa;
  margin: 0;
}
.calc-result span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.calc-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.result-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}
.steps {
  display: grid;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.04);
  border-color: var(--brand-soft);
}
.step b {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}
.step:hover b {
  background: var(--brand-dark);
  transform: scale(1.05);
}
.step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}
.step span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.quote-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.quote,
.result-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: white;
  transition: box-shadow 0.3s ease;
}
.quote:hover, .result-card:hover {
  box-shadow: 0 16px 40px rgba(16, 32, 51, 0.05);
}
.quote p {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}
.quote footer {
  padding: 0;
  border: 0;
  color: var(--muted);
  font-weight: 850;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.result-card {
  display: grid;
  align-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #f8fbff, #f0f6ff);
}
.result-card div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.result-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.result-card strong {
  display: block;
  color: var(--brand);
  font-size: 34px;
  margin-bottom: 4px;
}
.result-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.security {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.list {
  display: grid;
  gap: 16px;
}
.list div {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  color: var(--muted);
  line-height: 1.6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.list div:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.04);
  border-color: var(--brand-soft);
  color: var(--ink);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-list details:hover {
  border-color: rgba(29, 78, 216, 0.22);
  box-shadow: 0 6px 24px rgba(16, 32, 51, 0.06);
}
.faq-list details[open] {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.09);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-list details[open] summary {
  color: var(--brand);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    var(--brand-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat center;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--brand-soft);
}
.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.demo-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.demo-form-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.08);
}
.demo-form-card h2 {
  margin-bottom: 10px;
}
.demo-form-card p {
  margin-bottom: 18px;
  color: var(--muted);
}
.demo-form {
  display: grid;
  gap: 12px;
}
.demo-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.demo-form input,
.demo-form select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}
.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.demo-form input.invalid,
.demo-form select.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.field-error {
  display: block;
  margin-top: 4px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
}
.demo-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
/* ── Contact section ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-intro .eyebrow {
  margin-bottom: 16px;
}
.contact-intro h2 {
  margin-bottom: 16px;
}
.contact-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
}
.contact-email:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.08);
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.contact-form textarea {
  min-height: 88px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.contact-form input.invalid,
.contact-form select.invalid,
.contact-form textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.char-counter {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.char-counter.near-limit { color: #f59e0b; }
.char-counter.at-limit   { color: #ef4444; font-weight: 700; }
.contact-success {
  text-align: center;
  padding: 32px 20px;
}
.contact-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
}
.contact-success h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.contact-success p {
  margin-bottom: 24px;
  color: var(--muted);
}
code {
  padding: 2px 6px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}
.cta {
  position: relative;
  overflow: hidden;
  padding: 70px 40px;
  border-radius: 40px;
  background: var(--brand);
  color: white;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.5s ease;
}
.cta:hover::before {
  transform: scale(1.1) translate(-20px, -20px);
}
.cta > * {
  position: relative;
}
.cta .section-lead {
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.8);
}
.footer {
  margin-top: 40px;
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(130px, 0.65fr));
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand {
  max-width: 420px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badges span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a,
.footer-bottom a {
  color: var(--muted);
  font-weight: 750;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}
.footer-cta {
  padding: 22px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(219, 234, 254, 0.8),
    rgba(226, 234, 244, 0.72)
  );
}
.footer-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}
.footer-cta p {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-cta .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 1100px) and (min-width: 721px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
    gap: 32px;
  }
  h1 {
    font-size: clamp(40px, 5vw, 54px);
  }
  .lead {
    font-size: 17px;
  }
  .product-stage {
    min-height: 500px;
  }
  .dashboard-card {
    width: min(390px, 100%);
  }
  .mock-kpis {
    grid-template-columns: 1fr;
  }
  .phone-card {
    width: 220px;
  }
  .agent-card {
    width: 230px;
  }
}
.photo-section {
  margin: 40px auto 80px;
}
.hero-photo {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0;
  border: 0;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info {
  text-transform: none;
  letter-spacing: 0;
}
.author-info strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}
.author-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.demo-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.demo-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .demo-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .split,
  .security,
  .quote-row,
  .demo-layout {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .onboarding-grid,
  .audience-grid,
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav-panel {
    display: grid;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0 auto;
    width: min(100% - 32px, 1180px);
    padding: 0;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
  }
  .mobile-nav-panel.open {
    max-height: 480px;
    opacity: 1;
    padding: 0 0 16px;
  }
  .mobile-nav-panel a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 700;
  }
  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }
  .mobile-nav-panel .button {
    width: 100%;
    margin-top: 6px;
  }
  .hero {
    padding-top: 40px;
  }
  .trust-strip,
  .pricing-grid,
  .onboarding-grid,
  .grid,
  .audience-grid,
  .mock-kpis,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .product-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }
  .phone-card,
  .dashboard-card,
  .agent-card {
    position: static;
    width: 100%;
  }
  h1 {
    font-size: 42px;
  }
  section {
    padding: 56px 0;
  }
  .section-head,
  .footer {
    display: block;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mobile-sticky-cta .button {
    width: 100%;
  }
  body {
    padding-bottom: 82px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .demo-hero {
    grid-template-columns: 1fr;
  }
  .demo-hero-image {
    max-height: 260px;
  }
}

/* ============================================================
   Reading progress bar
   ============================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #60a5fa, var(--brand));
  background-size: 200% 100%;
  transition: width 0.1s linear;
  pointer-events: none;
  will-change: width;
}

/* ============================================================
   Back-to-top button
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 4px 20px rgba(16, 32, 51, 0.1),
    0 0 0 1px var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.2s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--brand);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.26);
}
.back-to-top:hover svg {
  stroke: white;
}
.back-to-top svg {
  stroke: var(--ink);
  transition: stroke 0.2s ease;
}
.back-to-top:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
@media (max-width: 720px) {
  .back-to-top { bottom: 80px; right: 14px; }
}

/* ============================================================
   Entrance animations
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.08s; }
[data-animate][data-delay="2"] { transition-delay: 0.16s; }
[data-animate][data-delay="3"] { transition-delay: 0.26s; }
[data-animate][data-delay="4"] { transition-delay: 0.34s; }
[data-animate][data-delay="5"] { transition-delay: 0.44s; }
[data-animate][data-delay="6"] { transition-delay: 0.54s; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Button primary CTA arrow
   ============================================================ */
.button.primary::after {
  content: '→';
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links .button.primary::after,
.mobile-nav-panel .button.primary::after {
  display: none;
}
.button.primary:hover::after {
  transform: translateX(5px);
}

/* ============================================================
   Nav: hover / active for path links (not just anchors)
   ============================================================ */
.nav-links a:not(.button):not(.login-link) {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:not(.button):not(.login-link)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:not(.button):not(.login-link):hover {
  color: var(--ink);
}
.nav-links a:not(.button):not(.login-link):hover::after,
.nav-links a:not(.button):not(.login-link).active::after {
  width: 100%;
}

/* ============================================================
   Mobile hamburger icon
   ============================================================ */
.icon-hamburger,
.icon-close {
  display: block;
  pointer-events: none;
}
.mobile-menu-toggle {
  width: 44px;
  padding: 0;
}

/* ============================================================
   Social proof — hover sparkle on pills
   ============================================================ */
.social-proof-row span {
  cursor: default;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.social-proof-row span:hover {
  border-color: rgba(29, 78, 216, 0.22);
  box-shadow: 0 4px 14px rgba(16, 32, 51, 0.06);
  transform: translateY(-2px);
}

/* ============================================================
   Button loading / spinner state
   ============================================================ */
.button.loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}
.button.loading::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
}
.button.loading.ghost::before,
.button.loading:not(.primary)::before {
  border-color: rgba(29, 78, 216, 0.2);
  border-top-color: var(--brand);
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
/* hide arrow when loading */
.button.primary.loading::after {
  display: none;
}

/* ============================================================
   Security list — slight stagger via data-animate
   ============================================================ */
.security .list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}
.security .list > div:last-child {
  border-bottom: none;
}

/* ============================================================
   Mark logo — medical cross SVG sizing
   ============================================================ */
.mark svg {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   Social proof — stat blocks with large numbers
   ============================================================ */
.social-proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 2px 12px rgba(29, 78, 216, 0.05);
}
.stat-block {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.stat-block + .stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  max-width: 130px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .social-proof-stats { border-radius: 12px; }
  .stat-block {
    min-width: calc(50%);
    padding: 18px 12px;
  }
  .stat-block:nth-child(3)::before { display: none; }
  .stat-num { font-size: 1.7rem; }
}

/* ============================================================
   Video placeholder section
   ============================================================ */
.video-section .section-head.centered {
  justify-content: center;
  text-align: center;
}
.video-section .section-head.centered > div {
  max-width: 620px;
  margin: 0 auto;
}
.video-embed-wrapper {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1d4ed8 0%, #0d2e87 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.video-placeholder-ui {
  text-align: center;
  color: white;
  padding: 24px;
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-embed-wrapper:hover .play-btn {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}
.video-placeholder-ui .video-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: white;
}
.video-placeholder-ui .video-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.video-placeholder-ui .video-hint a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* ============================================================
   Testimonials section
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 560px) and (max-width: 860px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 559px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(29, 78, 216, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(29, 78, 216, 0.10);
}
.testimonial-card .quote-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin: 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.76rem;
  color: var(--muted);
  display: block;
  line-height: 1.4;
}

/* ============================================================
   Cennik: featured badge (separated from CTA button)
   ============================================================ */
.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   Contact — phone number link
   ============================================================ */
.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
  margin-top: 6px;
}
.contact-phone:hover { color: var(--brand); }

/* ============================================================
   Trust badges + integrations strip
   ============================================================ */
.trust-section .section-head.centered {
  justify-content: center;
  text-align: center;
}
.trust-section .section-head.centered > div {
  max-width: 640px;
  margin: 0 auto;
}
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-badges-grid { grid-template-columns: 1fr; }
}
.trust-badge-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.trust-badge-item:hover {
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.09);
  transform: translateY(-2px);
}
.trust-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.trust-badge-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-badge-item span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.integrations-strip {
  margin-top: 36px;
  text-align: center;
}
.integrations-title {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.integrations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.integrations-pills span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.integrations-pills span:hover {
  border-color: var(--brand);
  background: var(--brand-tint);
  color: var(--brand);
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: rgba(15, 20, 35, 0.97);
  backdrop-filter: blur(6px);
  color: white;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  line-height: 1.55;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.cookie-text a:hover { color: white; }
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-actions .button.primary {
  font-size: 0.8rem;
  padding: 8px 20px;
  min-height: 36px;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .button { flex: 1; text-align: center; }
}