/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #f4f6ff;
  --surface:      #ffffff;
  --surface2:     #edf0fb;
  --card:         #ffffff;
  --card2:        #f8faff;
  --border:       #dce1f4;
  --border2:      #c9cfea;
  --text:         #1a1f3c;
  --muted:        #6b7494;
  --muted2:       #9299b8;
  --green:        #16a34a;
  --green-bg:     rgba(22,163,74,.09);
  --green-border: rgba(22,163,74,.25);
  --red:          #dc2626;
  --orange:       #d97706;
  --blue:         #4f72f5;
  --blue-soft:    rgba(79,114,245,.08);
  --blue-border:  rgba(79,114,245,.22);
  --purple:       #7c3aed;
  --r:            10px;
  --font:         'Inter', system-ui, sans-serif;
  --max:          1120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: .82em;
  background: rgba(255,255,255,.06);
  padding: .1em .35em;
  border-radius: 4px;
}

/* ── Language toggle ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 2px;
}
.lang-btn {
  display: inline-block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .25rem .55rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font);
  transition: all .15s;
  text-decoration: none !important;
}
.lang-btn.active { background: var(--blue); color: #fff !important; }
.lang-btn:hover:not(.active) { color: var(--text); }

/* ── Nav ── */
nav.top {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244,246,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 1.5rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  margin-right: auto;
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.4rem; align-items: center; }
.nav-links a { color: var(--muted); font-size: .875rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── Landing hamburger ── */
.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.lp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.lp-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav-toggle.open span:nth-child(2) { opacity: 0; }
.lp-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .lp-nav-toggle { display: flex; }
  .nav-logo { margin-right: 0; }
  .nav-inner { position: relative; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--border);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0 !important;        /* Nadpisuje desktop gap:1.4rem */
    padding: 0;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,60,.12);
  }
  .nav-links.open { display: flex; }

  /* Linki sekcji */
  .nav-links > a:not(.btn) {
    display: block !important;
    padding: .65rem 1.5rem !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
    font-size: .88rem !important;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    transition: background .12s;
    line-height: 1.3;
  }
  .nav-links > a:not(.btn):hover { background: var(--surface2); text-decoration: none; }

  /* Przełącznik języka */
  .nav-links > .lang-switch {
    display: flex !important;
    align-items: center;
    padding: .55rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: .4rem;
    box-sizing: border-box;
  }
  .nav-links > .lang-switch .lang-btn {
    flex: 0 0 auto;
    padding: .25rem .75rem;
    border-radius: 5px;
    font-size: .78rem;
  }

  /* Przyciski CTA */
  .nav-links > .btn,
  .nav-links .lp-logout-btn {
    display: flex !important;
    margin: .55rem 1.5rem .35rem !important;
    width: calc(100% - 3rem) !important;
    justify-content: center;
    font-size: .85rem;
    padding: .6rem 1rem !important;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
  }
  .nav-links > .btn:last-child,
  .nav-links .lp-logout-btn { margin-bottom: .7rem !important; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .12s, box-shadow .15s;
  font-family: var(--font);
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:hover { opacity: .9; transform: translateY(-1px); text-decoration: none !important; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--blue); color: #fff !important; box-shadow: 0 2px 16px rgba(79,114,245,.3); }
.btn-primary:hover { color: #fff !important; box-shadow: 0 4px 24px rgba(79,114,245,.45); }
.btn-outline { background: transparent; color: var(--blue) !important; border: 1.5px solid var(--blue-border); }
.btn-ghost   { background: rgba(26,31,60,.05); color: var(--text) !important; border: 1px solid rgba(26,31,60,.12); }
.btn-lg { padding: .75rem 1.7rem; font-size: .95rem; }
.btn-xl { padding: .9rem 2.2rem; font-size: 1rem; border-radius: 10px; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 7rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 55% at 50% -5%, rgba(79,114,245,.1) 0%, transparent 65%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 110%, rgba(124,92,191,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  border-radius: 100px;
  padding: .3rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero p.lead {
  color: var(--muted);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
/* Hero stats — 3 kluczowe liczby */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .9rem 1.8rem;
  margin: 0 auto 2rem;
  gap: 1.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-n {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-stat-l {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .2rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: .45rem 1rem;
  color: var(--green);
  font-size: .83rem;
  font-weight: 600;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 1.5rem;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-n { font-size: 1.9rem; font-weight: 900; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.stat-l { font-size: .77rem; color: var(--muted); margin-top: .3rem; font-weight: 500; letter-spacing: .02em; }

/* ── Sections ── */
.section-wrap { max-width: var(--max); margin: 0 auto; padding: 5.5rem 1.5rem; }
.section-wrap.narrow { max-width: 780px; }
.section-tag {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .7rem;
  color: var(--text);
}
.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: .96rem;
  line-height: 1.75;
}
.section-bg      { background: var(--surface); }           /* biały */
.section-surface2 { background: var(--surface2); }          /* jasnoniebieski #edf0fb */
/* Cennik — delikatny niebieski gradient */
.section-pricing { background: linear-gradient(180deg, #eef1ff 0%, #f4f6ff 100%); }

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .9rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.35rem 1.2rem;
  transition: border-color .2s, transform .2s, background .2s;
}
.feature-card:hover { border-color: var(--blue-border); transform: translateY(-2px); background: var(--card2); }
.fi { font-size: 1.5rem; margin-bottom: .65rem; line-height: 1; }
.fn { font-weight: 700; font-size: .92rem; margin-bottom: .3rem; color: var(--text); }
.fd { color: var(--muted); font-size: .81rem; line-height: 1.6; }

/* ── Checks panel ── */
.checks-panel {
  background: linear-gradient(160deg, #edf1ff 0%, #f4f6ff 60%, #f8faff 100%);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.checks-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 50%, var(--green) 100%);
  border-radius: 18px 18px 0 0;
}

/* ── Check groups — two-column grid ── */
.check-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.5rem;
  align-items: start;
}

.check-group {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.check-group[open] {
  border-color: var(--blue-border);
  box-shadow: 0 0 0 1px var(--blue-border), 0 6px 24px rgba(79,114,245,.07);
}

.cg-summary {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .15s;
}
.cg-summary::-webkit-details-marker { display: none; }
.cg-summary:hover { background: rgba(79,114,245,.05); }

.cg-icon {
  font-size: 1.1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: 9px;
  flex-shrink: 0;
}
.cg-name {
  font-weight: 700;
  font-size: .86rem;
  color: var(--text);
  flex: 1;
  line-height: 1.35;
}
.cg-count {
  font-size: .7rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: 20px;
  padding: .12rem .55rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.cg-arrow {
  font-size: .55rem;
  color: var(--muted2);
  transition: transform .25s ease, color .2s;
  flex-shrink: 0;
  margin-left: .1rem;
}
.check-group[open] .cg-arrow { transform: rotate(180deg); color: var(--blue); }

.cg-items {
  padding: .5rem .85rem .85rem;
  background: rgba(79,114,245,.03);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .32rem .35rem;
  border-radius: 6px;
  font-size: .81rem;
  color: var(--text);
  line-height: 1.45;
  transition: background .12s;
}
.check-row:hover { background: rgba(79,114,245,.06); }
.ck {
  color: var(--green);
  font-weight: 800;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* Toggle button */
.checks-toggle-wrap {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* btn-sm */
.btn-sm {
  padding: .4rem 1.1rem;
  font-size: .8rem;
  border-radius: 8px;
}

@media (max-width: 680px) {
  .check-groups { grid-template-columns: 1fr; }
  .checks-panel { padding: 1.75rem 1.25rem 1.5rem; }
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; }
.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 2px solid var(--blue-border);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: .92rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.step p   { color: var(--muted); font-size: .83rem; line-height: 1.65; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1320px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #e8edff 0%, var(--card) 100%);
  box-shadow: 0 0 40px rgba(79,114,245,.12);
}
.pricing-card.agency {
  border-color: rgba(22,163,74,.35);
  background: linear-gradient(160deg, #e8f5ee 0%, var(--card) 100%);
  box-shadow: 0 0 40px rgba(22,163,74,.08);
}
.popular-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: .2rem .85rem;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name   { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: var(--muted); margin-bottom: .35rem; }
.plan-title  { font-size: 1.55rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); margin-bottom: .5rem; line-height: 1.1; }
.plan-ideal  { font-size: .75rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.5; }
.plan-price  { display: flex; align-items: flex-end; gap: .25rem; margin-bottom: .2rem; }
.plan-amount { font-size: 2.6rem; font-weight: 900; letter-spacing: -.04em; color: var(--text); line-height: 1; }
.plan-amount-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.25;
}
.plan-currency { font-size: 1.05rem; font-weight: 700; color: var(--muted); margin-bottom: .3rem; }
.plan-period { font-size: .78rem; color: var(--muted); margin-bottom: 1.4rem; }
.plan-features {
  list-style: none;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.plan-features li { display: flex; align-items: baseline; gap: .55rem; font-size: .84rem; padding: .3rem 0; color: var(--muted); line-height: 1.4; }
.plan-features li strong { color: var(--text); white-space: nowrap; }
.plan-features li span.pf-text { flex: 1; }
.pf-ok { color: var(--green); flex-shrink: 0; font-weight: 800; font-size: .8rem; }
.plan-features li.pf-extra { display: none; }
.plan-features li.pf-extra.pf-open { display: flex; }
.pf-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  margin: 0 auto 1.1rem;
  transition: color .15s, border-color .15s;
}
.pf-toggle:hover { color: var(--blue); border-color: var(--blue); }
.pf-arr { display: inline-block; transition: transform .2s; font-style: normal; }
.pf-toggle.open .pf-arr { transform: rotate(180deg); }
.plan-cta {
  display: block;
  text-align: center;
  padding: .85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  margin-top: auto;
  transition: opacity .15s, transform .12s;
}
.plan-cta:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; }
.plan-no-card { text-align: center; font-size: .75rem; color: var(--muted); margin-top: .65rem; letter-spacing: .01em; }
.pricing-card.basic {
  border-color: rgba(14,165,233,.3);
  background: linear-gradient(160deg, #e0f4ff 0%, var(--card) 100%);
}
.btn-basic {
  display: block;
  text-align: center;
  padding: .75rem 1rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9rem;
  background: #0ea5e9;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
}
.btn-basic:hover { opacity: .85; text-decoration: none; }
.btn-agency {
  background: #16a34a;
  color: #fff;
  border: none;
}
.btn-agency:hover { background: #15803d; color: #fff; }
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
details.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
details.faq[open] { border-color: var(--border2); }
details.faq summary {
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}
details.faq summary::after { content: '+'; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; line-height: 1; }
details.faq[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}

/* ── CTA banner ── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(79,114,245,.07) 0%, rgba(124,92,191,.07) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 4.5rem 2rem;
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; color: var(--text); }
.cta-banner p  { color: var(--muted); margin-bottom: 2.2rem; font-size: .96rem; }
.cta-actions   { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 3rem 1.5rem; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  text-align: left;
}
.footer-col-brand { display: flex; flex-direction: column; gap: .1rem; text-align: left; }
.footer-brand { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .35rem; letter-spacing: -.02em; }
.footer-brand span { color: var(--blue); }
.footer-tagline { color: var(--muted); font-size: .82rem; line-height: 1.7; max-width: 220px; }
.footer-col { text-align: left; }
.footer-col h4 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted2); margin-bottom: .8rem; }
.footer-col a { display: block; color: var(--muted); font-size: .84rem; margin-bottom: .4rem; transition: color .15s; text-align: left; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-contact-link { display: flex; align-items: center; gap: .4rem; }
.footer-icon { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted2); font-size: .78rem; margin: 0; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--muted2); font-size: .78rem; text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--text); }

/* ── Trust bar ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .9rem;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-icon { font-size: .9rem; flex-shrink: 0; }

/* ── Integrations ── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.int-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  text-align: center;
  transition: border-color .18s;
}
.int-card:hover { border-color: rgba(92,124,250,.35); }
.int-card-featured {
  background: linear-gradient(145deg, rgba(92,124,250,.09) 0%, var(--surface2) 100%);
  border-color: rgba(92,124,250,.4);
  box-shadow: 0 0 0 1px rgba(92,124,250,.12);
}
.int-card-soon { opacity: .52; }
.int-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.int-logo svg {
  width: 28px;
  height: 28px;
}
.int-logo-http { background: rgba(79,114,245,.12);   color: #4f72f5; }
.int-logo-wp   { background: rgba(33,117,186,.12);  color: #2175ba; }
.int-logo-ps   { background: rgba(223,88,0,.10);    color: #c74500; }
.int-logo-sh   { background: rgba(0,120,212,.10);   color: #0078d4; }
.int-logo-mg   { background: rgba(220,38,38,.10);   color: #dc2626; }
.int-logo-sf   { background: rgba(101,163,13,.10);  color: #65a30d; }
.int-logo-ids  { background: rgba(100,116,139,.10); color: #64748b; }
.int-logo-sg   { background: rgba(180,130,0,.10);   color: #b48000; }
.int-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}
.int-badge {
  font-size: .66rem;
  font-weight: 700;
  padding: .22em .65em;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.int-badge-active {
  background: rgba(61,214,140,.15);
  color: #3dd68c;
}
.int-badge-soon {
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border: 1px solid var(--border);
}
.int-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: .15rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero            { padding: 4rem 1.2rem 3rem; }
  .hero h1         { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-stats      { padding: .7rem 1.2rem; gap: 1rem; }
  .hero-stat-n     { font-size: 1.3rem; }
  .hero-stat-l     { font-size: .68rem; }
  .hero p.lead     { font-size: .95rem; }
  .hero-actions    { flex-direction: column; align-items: center; gap: .6rem; }
  .btn-xl          { width: 100%; max-width: 320px; text-align: center; font-size: .95rem; }
  .btn, .plan-cta, .btn-basic, .btn-agency, .btn-ghost, .btn-primary, .btn-muted { text-align: center; justify-content: center; }
  .section-wrap    { padding: 3rem 1.2rem; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .stats-inner     { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem 1rem; justify-items: center; }
  .stat-n          { font-size: 1.4rem; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .checks-grid     { grid-template-columns: 1fr; }
  .int-grid        { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trust-bar       { gap: .5rem; padding: .75rem 1rem; }
  .trust-item      { font-size: .75rem; padding: .3rem .7rem; }
  .hero-note       { font-size: .72rem; padding: .5rem .8rem; flex-wrap: wrap; justify-content: center; }
  .section-title   { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-lead    { font-size: .9rem; }
}
@media (max-width: 480px) {
  .features-grid   { grid-template-columns: 1fr; }
  .nav-links       { gap: .8rem; }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: auto; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .int-grid        { grid-template-columns: 1fr; }
  .int-grid > div[style*="grid-column"] { grid-column: 1; }
  .stats-inner     { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .stat            { width: 100%; }
  .hero-eyebrow    { font-size: .68rem; }
  .checks-panel    { padding: 1.25rem 1rem; }
}
