/* ==========================================================================
   Hordyński Group — Design System v2
   Oparty na realnym brandingu: granat + gradientowe złoto, motyw wzrostu.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy-deep: #071B30;
  --navy: #0C3256;
  --navy-mid: #123E68;
  --navy-light: #1E5C94;
  --gold-deep: #A67C2E;
  --gold: #CDA84E;
  --gold-light: #E8D28C;

  --paper: #F7F8FA;
  --paper-alt: #EEF1F5;
  --card: #FFFFFF;
  --line: #E1E5EA;
  --line-dark: rgba(255, 255, 255, 0.14);

  --text: #16232F;
  --text-soft: #55677A;
  --text-inverse: #F3F5F8;
  --text-inverse-soft: #A9BBCE;

  --grad-gold: linear-gradient(135deg, #EFDCA0 0%, #CDA84E 48%, #A67C2E 100%);
  --grad-gold-text: linear-gradient(90deg, #E8D28C 0%, #CDA84E 100%);
  --grad-navy: linear-gradient(165deg, #123E68 0%, #0C3256 55%, #071B30 100%);
  --grad-navy-radial: radial-gradient(ellipse 900px 500px at 80% 0%, rgba(205, 168, 78, 0.16) 0%, rgba(205, 168, 78, 0) 60%);

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.5rem, 4vw + 1rem, 4.4rem);
  --fs-h2: clamp(1.9rem, 2.4vw + 1rem, 2.9rem);
  --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.6rem);
  --fs-lead: clamp(1.1rem, 0.6vw + 1rem, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;

  --maxw: 1180px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --space-section: clamp(4.5rem, 8vw, 7.5rem);
  --shadow-soft: 0 30px 60px -30px rgba(7, 27, 48, 0.35);
  --shadow-card: 0 1px 2px rgba(12,50,86,0.05), 0 14px 28px -18px rgba(12,50,86,0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-gold);
  display: inline-block;
  border-radius: 2px;
}
.on-dark .eyebrow, .on-navy .eyebrow { color: var(--gold-light); }

.lead { font-size: var(--fs-lead); color: var(--text-soft); font-weight: 400; }
.on-dark .lead, .on-navy .lead { color: var(--text-inverse-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.94rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-gold);
  color: var(--navy-deep);
  box-shadow: 0 14px 28px -14px rgba(205, 168, 78, 0.65);
}
.btn-primary:hover { box-shadow: 0 18px 34px -14px rgba(205, 168, 78, 0.8); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); }
.on-dark .btn-ghost, .on-navy .btn-ghost, .btn-ghost.on-dark { color: var(--text-inverse); border-color: var(--line-dark); }
.on-dark .btn-ghost:hover, .on-navy .btn-ghost:hover, .btn-ghost.on-dark:hover { border-color: var(--gold-light); }
.btn-arrow { transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(12,50,86,0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand img { height: 34px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media (max-width: 1150px) { .brand-text span { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.mobile-cta { display: none; }
.nav-links a { position: relative; padding-block: 0.3rem; color: var(--text-soft); transition: color .18s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 80px 0 0 0; background: var(--paper); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 2rem clamp(1.25rem,4vw,2.5rem); gap: 1.5rem; font-size: 1.15rem; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-cta .btn-primary { display: none; }
  .nav-links .mobile-cta { display: inline-flex; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: none; z-index: 101;
  }
  .nav-toggle span { width: 100%; height: 2px; background: var(--navy); transition: transform .25s ease, opacity .25s ease; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.on-navy {
  background: var(--grad-navy);
  background-color: var(--navy);
  position: relative;
  color: var(--text-inverse);
  overflow: hidden;
}
.on-navy::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-navy-radial);
  pointer-events: none;
}
.on-navy .container { position: relative; z-index: 1; }

.angle-divider {
  height: clamp(48px, 6vw, 84px);
  background: var(--paper);
  position: relative;
  margin-top: -1px;
}
.angle-divider::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.angle-divider--to-navy { background: var(--navy); }
.angle-divider--to-navy::before { background: var(--navy-deep); }

.hero {
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4rem);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}
.hero-copy h1 { color: var(--text-inverse); margin-block: 1.1rem 1.4rem; font-size: var(--fs-h1); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.8rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: var(--text-inverse-soft);
}
.hero-trust li { display: flex; align-items: center; gap: 0.55em; }
.hero-trust li::before { content: "✓"; color: var(--gold-light); font-weight: 700; }

.chart-visual { width: 100%; }
.chart-visual svg { width: 100%; height: auto; overflow: visible; }
.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s cubic-bezier(.16,.84,.44,1);
}
.chart-visual.is-visible .chart-line { stroke-dashoffset: 0; }
.chart-dot {
  opacity: 0;
  transform-origin: center;
  transition: opacity .5s ease, transform .5s ease;
}
.chart-visual.is-visible .chart-dot { opacity: 1; }
.chart-arrowhead {
  opacity: 0;
  transition: opacity .4s ease .9s;
}
.chart-visual.is-visible .chart-arrowhead { opacity: 1; }
.chart-glow-dot {
  animation: pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.55; r: 5; }
  50% { opacity: 1; r: 7; }
}
.chart-caption {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-inverse-soft); text-align: right; margin-top: 0.6rem;
}
.chart-caption strong { color: var(--gold-light); }

.strip { background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.strip .container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
}
.strip-item { padding-block: 1.9rem; display: flex; flex-direction: column; gap: 0.35rem; }
.strip-item strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); }
.strip-item span { font-size: 0.86rem; color: var(--text-soft); }

.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head h2 { margin-top: 0.9rem; color: var(--navy); }
.on-dark .section-head h2, .on-navy .section-head h2 { color: var(--text-inverse); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--between { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; }

.pillar-light { background: var(--paper); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -24px rgba(12,50,86,0.28); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(205,168,78,0.14), rgba(205,168,78,0.04));
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.on-navy .svc-card {
  background: rgba(255,255,255,0.045); border-color: var(--line-dark); box-shadow: none;
}
.on-navy .svc-card__icon { background: rgba(232,210,140,0.14); color: var(--gold-light); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--navy); }
.on-navy .svc-card h3 { color: var(--text-inverse); }
.svc-card p { font-size: 0.92rem; color: var(--text-soft); }
.on-navy .svc-card p { color: var(--text-inverse-soft); }

.pillar-tag {
  display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid rgba(166,124,46,0.35); border-radius: 999px; padding: 0.35em 1em;
  margin-bottom: 1rem;
}
.on-navy .pillar-tag { color: var(--gold-light); border-color: rgba(232,210,140,0.35); }

/* ---------- Cennik ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-card);
}
.pricing-card__head { margin-bottom: 1.3rem; }
.pricing-card__head h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.4rem; }
.pricing-card__head p { font-size: 0.9rem; color: var(--text-soft); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.price-table th, .price-table td { border-bottom: 1px solid var(--line); padding: 0.65em 0.4em; text-align: left; }
.price-table th { font-family: var(--font-display); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); font-weight: 700; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.price-table tr:last-child td { border-bottom: none; }
.pricing-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 1rem; }

.cfo-plan {
  position: relative; overflow: hidden;
  background: var(--grad-navy); color: var(--text-inverse);
  border-radius: var(--radius-l); padding: clamp(1.8rem, 3vw, 2.6rem);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center;
  border: 1px solid rgba(232,210,140,0.25);
}
@media (max-width: 780px) { .cfo-plan { grid-template-columns: 1fr; } }
.cfo-plan__badge {
  display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-deep);
  background: var(--grad-gold); border-radius: 999px; padding: 0.35em 1em; margin-bottom: 1rem;
}
.cfo-plan h3 { font-size: 1.5rem; color: var(--text-inverse); margin-bottom: 0.7rem; }
.cfo-plan p { color: var(--text-inverse-soft); font-size: 0.96rem; margin-bottom: 1rem; }
.cfo-plan ul { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.cfo-plan ul li { display: flex; align-items: flex-start; gap: 0.6em; font-size: 0.92rem; color: var(--text-inverse-soft); }
.cfo-plan ul li::before { content: "✓"; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }
.cfo-plan__price {
  text-align: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius-m); padding: clamp(1.6rem, 3vw, 2.2rem);
}
.cfo-plan__price .amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold-light); display: block; }
.cfo-plan__price .unit { font-size: 0.85rem; color: var(--text-inverse-soft); display: block; margin-bottom: 1.3rem; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(1.8rem, 3vw, 2.4rem); text-align: center; box-shadow: var(--shadow-card);
}
.founder-avatar {
  width: 108px; height: 108px; border-radius: 50%;
  margin: 0 auto 1.2rem; border: 3px solid var(--gold-light);
  overflow: hidden; background: var(--grad-navy);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.35rem; }
.founder-role { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 1.3rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.3rem; }
.founder-tags span {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: var(--navy);
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px; padding: 0.4em 0.9em;
}
.founder-social {
  display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-display);
  font-size: 0.86rem; font-weight: 600; color: var(--gold-deep);
}
.founder-social:hover { color: var(--navy); }
.founder-copy p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.02rem; line-height: 1.7; }
.founder-copy p:last-child { margin-bottom: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.8rem; background: var(--card);
  border-top: 3px solid transparent; border-image: var(--grad-gold) 1;
}
.audience-card h3 { font-size: 1.06rem; margin-bottom: 0.6rem; color: var(--navy); }
.audience-card p { font-size: 0.92rem; color: var(--text-soft); }

.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }
.process-item { position: relative; padding-top: 0.2rem; }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--grad-gold); color: var(--navy-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  margin-bottom: 1.1rem;
}
.process-item h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--navy); }
.process-item p { font-size: 0.9rem; color: var(--text-soft); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 940px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column; gap: 0.9rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 1.7rem; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -24px rgba(12,50,86,0.28); }
.post-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.05em;
}
.post-meta .tag { color: var(--gold-deep); font-weight: 700; }
.post-card h3 { font-size: 1.12rem; color: var(--navy); line-height: 1.3; }
.post-card p { font-size: 0.92rem; color: var(--text-soft); }
.post-card .read-more { margin-top: auto; font-size: 0.86rem; font-weight: 700; font-family: var(--font-display); color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.4em; }
.post-card .read-more svg { transition: transform .18s ease; width: 15px; height: 15px; }
.post-card:hover .read-more svg { transform: translateX(3px); }

.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--card); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform .25s ease;
}
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 1.4rem 1.3rem; font-size: 0.94rem; color: var(--text-soft); }
.faq-item.is-open .faq-a { max-height: 400px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dl { display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-info dt {
  font-family: var(--font-display); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  color: var(--gold-light); margin-bottom: 0.35rem;
}
.contact-info dd { margin: 0; font-size: 1.02rem; }
.contact-info a:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 0.9rem; margin-top: 2.2rem; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; transition: border-color .18s ease, background .18s ease;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
}
.contact-social a:hover { border-color: var(--gold-light); background: rgba(232,210,140,0.08); }

.contact-form { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius-l); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; color: var(--text-inverse-soft); font-family: var(--font-display); font-weight: 600; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: var(--radius-s);
  padding: 0.75em 0.9em; color: var(--text-inverse); font-family: var(--font-body); font-size: 0.96rem;
}
.field input::placeholder, .field textarea::placeholder { color: #7E8FA3; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-light); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--text-inverse-soft); margin-top: 0.6rem; }
.form-status { font-size: 0.85rem; margin-top: 0.8rem; display: none; }
.form-status.is-visible { display: block; }

.site-footer { background: var(--navy-deep); color: var(--text-inverse-soft); }
.footer-top { display: flex; align-items: center; gap: 0.9rem; padding-top: 3.5rem; }
.footer-logo-chip {
  background: var(--paper); border-radius: 12px; padding: 0.5rem 0.6rem; display: inline-flex;
}
.footer-logo-chip img { height: 26px; width: auto; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; color: var(--text-inverse); font-size: 1.08rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: 1.6rem 2.5rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-display); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 1rem; font-weight: 700; }
.footer-grid ul { display: grid; gap: 0.65rem; font-size: 0.92rem; }
.footer-grid ul a:hover { color: var(--text-inverse); }
.footer-grid > div:first-child p { font-size: 0.9rem; max-width: 260px; margin-top: 0.6rem; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.8rem; font-family: var(--font-display); color: #6E81A0;
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.post-hero { padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.post-hero .breadcrumbs { font-family: var(--font-display); font-weight: 500; font-size: 0.78rem; color: var(--text-inverse-soft); display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.4rem; flex-wrap: wrap; }
.post-hero .breadcrumbs a:hover { color: var(--gold-light); }
.post-hero h1 { color: var(--text-inverse); font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 1.2rem; }
.post-hero .post-meta { margin-bottom: 0; color: var(--text-inverse-soft); }
.post-hero .post-meta .tag { color: var(--gold-light); }
.post-hero .post-lead { max-width: 720px; margin-top: 1.1rem; }

.post-body {
  max-width: 720px; margin-inline: auto; padding-bottom: 2rem; padding-top: clamp(2.5rem,5vw,3.5rem);
  font-size: 1.06rem; line-height: 1.75; color: var(--text);
}
.post-body h2 { font-size: 1.5rem; color: var(--navy); margin-top: 2.6rem; margin-bottom: 1rem; }
.post-body h3 { font-size: 1.18rem; color: var(--navy); margin-top: 2rem; margin-bottom: 0.8rem; }
.post-body p { margin-bottom: 1.3rem; }
.post-body ul, .post-body ol { margin: 0 0 1.3rem; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.post-body li { padding-left: 0.2rem; }
.post-body strong { color: var(--navy); }
.post-body blockquote {
  margin: 1.8rem 0; padding: 1.1rem 1.5rem; border-left: 3px solid var(--gold);
  background: var(--paper-alt); border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-style: normal; color: var(--navy);
}
.post-body table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: 0.94rem; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 0.7em 0.9em; text-align: left; }
.post-body th { background: var(--paper-alt); font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.post-body td.num { font-family: var(--font-display); font-weight: 600; text-align: right; }

.post-cta {
  max-width: 720px; margin: 3rem auto 0; padding: 1.8rem; border-radius: var(--radius-m);
  background: var(--grad-navy); color: var(--text-inverse); display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.post-cta p { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }

.author-box {
  max-width: 720px; margin: 3rem auto 0; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; gap: 1rem; align-items: center;
}
.author-box .avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-gold); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; flex-shrink: 0;
}
.author-box strong { color: var(--navy); display: block; font-family: var(--font-display); }
.author-box span { font-size: 0.88rem; color: var(--text-soft); }

.related-posts { max-width: 720px; margin: 3.5rem auto 0; }
.related-posts h2 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.3rem; }

.blog-hero { padding-block: clamp(2.8rem, 5vw, 4.5rem) 1rem; }
.blog-hero h1 { color: var(--text-inverse); font-size: var(--fs-h2); margin-top: 0.9rem; max-width: 620px; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- CFO explainer compare ---------- */
.compare-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0 0.4rem; max-width: 780px; }
@media (max-width: 620px) { .compare-mini { grid-template-columns: 1fr; } }
.compare-mini > div { border-radius: var(--radius-m); padding: 1.3rem 1.4rem; }
.compare-mini .col-accounting { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); }
.compare-mini .col-cfo { background: linear-gradient(135deg, rgba(205,168,78,0.12), rgba(205,168,78,0.03)); border: 1px solid rgba(232,210,140,0.35); }
.compare-mini h4 { font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 0.7rem; }
.compare-mini .col-accounting h4 { color: var(--text-inverse-soft); }
.compare-mini .col-cfo h4 { color: var(--gold-light); }
.compare-mini ul { display: grid; gap: 0.55rem; font-size: 0.88rem; color: var(--text-inverse-soft); }
.compare-mini ul li { padding-left: 1.2em; position: relative; }
.compare-mini .col-accounting ul li::before { content: "–"; position: absolute; left: 0; color: var(--text-inverse-soft); }
.compare-mini .col-cfo ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }

/* ---------- CFO tier cards ---------- */
.cfo-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 900px) { .cfo-tiers { grid-template-columns: 1fr; } }
.cfo-tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 1.7rem 1.5rem; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-card);
}
.cfo-tier--featured {
  background: linear-gradient(180deg, #FBF7ED 0%, var(--card) 60%);
  border: 1.5px solid var(--gold);
  box-shadow: 0 26px 44px -22px rgba(166,124,46,0.35);
}
.cfo-tier__badge {
  display: inline-flex; width: fit-content; font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-deep); background: var(--grad-gold);
  border-radius: 999px; padding: 0.3em 0.85em; margin-bottom: 0.9rem;
}
.cfo-tier h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 0.2rem; }
.cfo-tier .cfo-tier__price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--navy); margin: 0.5rem 0 0.1rem; }
.cfo-tier--featured .cfo-tier__price { color: var(--gold-deep); }
.cfo-tier .cfo-tier__unit { font-size: 0.78rem; color: var(--text-soft); display: block; margin-bottom: 1.3rem; }
.cfo-tier ul { display: grid; gap: 0.55rem; margin-bottom: 1.4rem; flex: 1; }
.cfo-tier ul li { font-size: 0.88rem; color: var(--text-soft); padding-left: 1.3em; position: relative; }
.cfo-tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.cfo-tier .btn { width: 100%; justify-content: center; }
.cfo-tier .btn-ghost { border-color: var(--line); color: var(--navy); }
.cfo-tier .btn-ghost:hover { border-color: var(--navy); }

/* ---------- Windykacja ---------- */
.windykacja-note {
  max-width: 780px; margin: 2rem auto 0; text-align: center; padding: 1.2rem 1.6rem;
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: var(--radius-m);
  font-size: 0.94rem; color: var(--navy);
}
.windykacja-note strong { color: var(--gold-deep); }
