*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --gray-50: #fafaf8;
  --gray-100: #f5f5f3;
  --gray-200: #e8e8e4;
  --gray-400: #a8a8a0;
  --gray-600: #6b6b65;
  --red: #c8391a;
  --red-bg: #fdf1ee;
  --green: #1a6632;
  --green-bg: #eef6f1;
  --amber: #92600a;
  --amber-bg: #fdf8ee;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
section + section { border-top: 1px solid var(--gray-200); }

/* TYPE */
.display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
.display em { font-style: italic; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
}
h2 em { font-style: italic; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

p { color: var(--gray-600); }

/* HERO */
.hero {
  padding: 7rem 0 5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* Two-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-text {
  min-width: 0;
}
.hero .display { max-width: 600px; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 480px; }

/* VIDEO COLUMN */
.hero-video-wrap {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 578px;
  max-width: 325px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* REPLAY BUTTON */
.hero-video-replay {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-video-replay.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hero-video-replay:hover {
  background: rgba(0,0,0,0.9);
}

/* Responsive: stack on mobile */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-video-wrap {
    width: 100%;
  }
  .hero-video-container {
    aspect-ratio: 9 / 16;
    max-height: none;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ====== SHARED CALC STYLES ====== */
.calc-block {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.calc-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

/* SLIDER ROW */
.slider-row { margin-bottom: 1.75rem; }
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.slider-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}
.slider-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  min-width: 130px;
  text-align: right;
}
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 4px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: none;
  transition: transform 0.12s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: none;
}
.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-400);
}

/* NUMBER INPUT ROW */
.input-row {
  margin-bottom: 1.5rem;
}
.input-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  display: block;
}
.input-sub {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-left: 6px;
}
input[type=number] {
  width: 100%;
  padding: 10px 14px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: normal;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  outline: none;
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }
input[type=number]:focus { border-color: var(--black); }

/* DIVIDER */
.calc-divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }

/* RESULT CARDS GRID */
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.result-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.result-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: normal;
  color: var(--black);
  line-height: 1;
}
.result-card.accent-red { border-color: rgba(200,57,26,0.25); background: var(--red-bg); }
.result-card.accent-red .result-value { color: var(--red); }
.result-card.accent-red .result-label { color: var(--red); opacity: 0.7; }
.result-card.accent-green { border-color: rgba(26,102,50,0.25); background: var(--green-bg); }
.result-card.accent-green .result-value { color: var(--green); }
.result-card.accent-green .result-label { color: var(--green); opacity: 0.7; }
.result-card.accent-amber { border-color: rgba(146,96,10,0.25); background: var(--amber-bg); }
.result-card.accent-amber .result-value { color: var(--amber); }
.result-card.accent-amber .result-label { color: var(--amber); opacity: 0.7; }

/* INSIGHT BOX */
.insight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--black);
  border-radius: 0 8px 8px 0;
  border-top: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.insight p {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.5;
}
.insight p strong { font-weight: 700; }
.insight.red { border-left-color: var(--red); }
.insight.green { border-left-color: var(--green); }

/* CALC 3 — CONVERSION */
.conv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 2rem;
}
.conv-col { padding: 1.5rem; }
.conv-col.left { background: var(--white); border-radius: 10px 0 0 10px; border: 1px solid var(--gray-200); }
.conv-col.right { background: var(--green-bg); border-radius: 0 10px 10px 0; border: 1px solid rgba(26,102,50,0.2); border-left: none; }
.conv-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  width: 2px;
}
.conv-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.col-left .conv-col-label { color: var(--gray-400); }
.col-right .conv-col-label { color: var(--green); }
.conv-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.col-left .conv-stat { color: var(--black); }
.col-right .conv-stat { color: var(--green); }
.conv-sublabel { font-size: 0.82rem; color: var(--gray-400); }
.col-right .conv-sublabel { color: var(--green); opacity: 0.7; }

/* BIG DELTA */
.big-delta {
  margin-top: 1.5rem;
  text-align: center;
}
.big-delta-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: normal;
  color: var(--green);
  line-height: 1;
}
.big-delta-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

/* SECTION: PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.problem-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.problem-col-label.today { color: var(--red); }
.problem-col-label.tomorrow { color: var(--green); }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.problem-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1rem; color: var(--black); line-height: 1.4;
}
.problem-list li::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  margin-top: 0.48em; flex-shrink: 0;
}
.col-today li::before { background: var(--red); }
.col-tomorrow li::before { background: var(--green); }

/* KAFLE */
.kafle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.kafel { background: var(--white); padding: 2rem 1.75rem; }
.kafel-icon { font-size: 1.4rem; margin-bottom: 1rem; }
.kafel-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.kafel-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }

/* VS SECTION */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.vs-col { padding: 2.5rem 2rem; }
.vs-col.left { background: var(--gray-100); }
.vs-col.right { background: var(--black); color: var(--white); }
.vs-divider {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  padding: 0 1rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gray-400);
  writing-mode: vertical-rl;
}
.vs-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.vs-col.left .vs-label { color: var(--gray-400); }
.vs-col.right .vs-label { color: rgba(255,255,255,0.35); }
.vs-flow { display: flex; flex-direction: column; gap: 0; }
.vs-step {
  display: flex; align-items: center; gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px solid;
}
.vs-col.left .vs-step { border-color: var(--gray-200); }
.vs-col.right .vs-step { border-color: rgba(255,255,255,0.08); }
.vs-step:last-child { border-bottom: none; }
.vs-step-name { font-size: 0.95rem; font-weight: 600; flex: 1; }
.vs-col.left .vs-step-name { color: var(--black); }
.vs-col.right .vs-step-name { color: var(--white); }
.vs-step-result {
  font-size: 0.78rem; padding: 2px 8px; border-radius: 4px;
  font-weight: 600; white-space: nowrap;
}
.vs-col.left .vs-step-result { background: rgba(200,57,26,0.1); color: var(--red); }
.vs-col.right .vs-step-result { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.vs-outcome { margin-top: 1.5rem; font-size: 0.88rem; line-height: 1.5; }
.vs-col.left .vs-outcome { color: var(--gray-600); }
.vs-col.right .vs-outcome { color: rgba(255,255,255,0.5); }
.vs-outcome strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.vs-col.left .vs-outcome strong { color: var(--black); }
.vs-col.right .vs-outcome strong { color: var(--white); }

/* TIME BARS */
.time-bars { display: flex; flex-direction: column; gap: 1.5rem; margin: 2.5rem 0; }
.time-bar-row {
  display: grid;
  grid-template-columns: 170px 1fr 110px;
  gap: 1rem;
  align-items: center;
}
.time-bar-label { font-size: 0.85rem; font-weight: 600; color: var(--black); text-align: right; }
.time-bar-track { height: 10px; background: var(--gray-100); border-radius: 5px; overflow: hidden; }
.time-bar-fill { height: 100%; border-radius: 5px; }
.bar-low .time-bar-fill { background: var(--gray-400); width: 3%; }
.bar-mid .time-bar-fill { background: var(--gray-400); width: 6%; }
.bar-proto .time-bar-fill { background: var(--amber); width: 18%; }
.bar-high .time-bar-fill { background: var(--black); width: 100%; }
.bar-note {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-left: 6px;
}
.time-bar-value { font-size: 0.85rem; color: var(--gray-600); }
.time-bar-value strong { color: var(--black); font-weight: 700; }

/* DBT CARDS */
.dbt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px; overflow: hidden;
  margin-top: 3rem;
}
.dbt-card { background: var(--white); padding: 0; display: flex; flex-direction: column; }
.dbt-card-preview { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.dbt-card-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; transition: transform 0.4s ease; }
.dbt-card:hover .dbt-card-preview img { transform: scale(1.03); }
.dbt-card .dbt-industry { padding: 1.25rem 1.75rem 0; }
.dbt-card h4 { padding: 0 1.75rem; }
.dbt-card .dbt-actions { padding: 0 1.75rem; }
.dbt-card .dbt-time { margin: 1rem 1.75rem 0; padding: 1rem 0 0; }
.dbt-card .dbt-demo-link { margin-left: 1.75rem; margin-right: 1.75rem; margin-bottom: 1.75rem; }
.dbt-industry {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.75rem;
}
.dbt-card h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: normal; color: var(--black); margin-bottom: 0.85rem;
}
.dbt-actions { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.dbt-actions li {
  font-size: 0.875rem; color: var(--gray-600);
  display: flex; align-items: flex-start; gap: 8px;
}
.dbt-actions li::before {
  content: '→'; color: var(--gray-400);
  flex-shrink: 0; font-size: 0.78rem; margin-top: 2px;
}
.dbt-time {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.78rem; color: var(--gray-400);
}
.dbt-time strong { color: var(--black); font-weight: 700; font-size: 1.05rem; }
.dbt-demo-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1px;
  transition: border-color 0.15s;
  align-self: flex-start;
}
.dbt-demo-link:hover { border-color: var(--black); }

/* CLOSING */
.closing {
  background: var(--black); color: var(--white);
  padding: 7rem 0;
  border-top: none !important;
}
.closing h2 { color: var(--white); max-width: 620px; margin-bottom: 1.5rem; }
.closing p { color: rgba(255,255,255,0.45); font-size: 1rem; }
.big-stat {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: normal; line-height: 1;
  color: var(--white); margin: 3rem 0 0.5rem;
}
.big-stat-label {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 3rem;
}

/* ====== PRICING ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card.featured {
  background: var(--black);
}

.pricing-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.featured-tag {
  color: rgba(255,255,255,0.35) !important;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: normal;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-currency {
  font-size: 1.4rem;
  letter-spacing: 0;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.35); }

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-includes li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-includes li.yes { color: var(--black); font-weight: 500; }
.pricing-card.featured .pricing-includes li.yes { color: var(--white); }

.pricing-includes li.yes::before {
  content: '✓';
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-includes li.no {
  color: var(--gray-400);
}

.pricing-includes li.no::before {
  content: '✕';
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.pricing-after {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.pricing-after-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.pricing-extra {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-extra li {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-extra li::before {
  content: '+';
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.pricing-pitch {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.pricing-pitch-green {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  font-weight: 500;
  color: #3fbf6f;
  line-height: 1.55;
}

/* COMPARE TABLE */
.compare-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.compare-table thead th:first-child { text-align: left; }

.th-featured {
  background: var(--black) !important;
  color: rgba(255,255,255,0.4) !important;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody td {
  padding: 0.85rem 1.25rem;
  color: var(--black);
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.c-yes { font-weight: 700; color: var(--green) !important; font-size: 1rem; }
.c-no { color: var(--gray-200) !important; font-size: 1rem; }
.c-own { font-size: 0.75rem !important; color: var(--gray-400) !important; font-style: italic; line-height: 1.3; }

.featured-col {
  background: rgba(13,13,13,0.04);
}

.compare-table tfoot td {
  padding: 1.25rem;
  text-align: center;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.price-foot {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--black);
  line-height: 1.2;
}

.price-foot span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-top: 3px;
}

.price-foot.featured-col {
  background: var(--black);
  color: var(--white);
}

.price-foot.featured-col span { color: rgba(255,255,255,0.35); }

/* COMMERCE BLOCK */
.commerce-block {
  margin: 2rem 0 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.commerce-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  background: var(--gray-100);
}

.commerce-col {
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--white);
}

.commerce-divider {
  background: var(--gray-200);
}

.commerce-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}

.commerce-desc {
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.55;
}

.commerce-punch {
  padding: 1.25rem 1.75rem;
  background: var(--black);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-top: 1px solid var(--gray-200);
}

/* DBT UNIVERSAL */
.dbt-universal {
  margin-bottom: 2.5rem;
}

.dbt-universal-text {
  font-size: 1.05rem;
  color: var(--black);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dbt-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dbt-industries span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
}

.dbt-industries span:last-child {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.dbt-footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
}

/* TRANSPARENCY */
.transparency-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.transparency-header {
  padding: 2rem 2rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.transparency-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.transparency-sub {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.55;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gray-200);
}

.tool-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-item:nth-child(4n) { border-right: none; }
.tool-item:nth-last-child(-n+3) { border-bottom: none; }

.tool-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}

.tool-desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.45;
  flex: 1;
}

.tool-badge {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  align-self: flex-start;
}

.tool-badge.free {
  background: var(--green-bg);
  color: var(--green);
}

.tool-badge.freemium {
  background: var(--amber-bg);
  color: var(--amber);
}

.transparency-note {
  padding: 1.1rem 2rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-style: italic;
}

/* READING BANNER */
.reading-banner {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.reading-line1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gray-400);
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.reading-line2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--black);
  font-weight: normal;
  line-height: 1.2;
}

/* BRAND SHOWCASE */
.brand-showcase {
  border-top: 1px solid var(--gray-200);
  padding: 4rem 0;
}

.brand-showcase-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
}

/* BIZSIM HERO LOGO */
.bizsim-hero-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bizsim-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.bizsim-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bizsim-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: normal;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bizsim-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* CLOSING BRAND */
.closing-brand-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.closing-brand-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: normal;
}

.closing-brand-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.closing-brand-tech {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}
.closing-brand-owner {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}
.closing-brand-owner a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-brand-owner a:hover {
  color: rgba(255,255,255,0.9);
}

/* TIME BAR PROOF */
.time-bar-proof {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  grid-column: 1 / -1;
}
.time-bar-proof img {
  border-radius: 5px;
  height: 54px;
  width: auto;
  opacity: 0.85;
}
.time-bar-proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  align-self: center;
}

/* GA4 PROOF */
.ga4-proof {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ga4-proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.ga4-screens {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ga4-screens img {
  border-radius: 6px;
  max-width: 48%;
  height: auto;
  opacity: 0.92;
  filter: brightness(1.05);
}

/* ====== RESPONSIVE — MOBILE ====== */
@media (max-width: 680px) {
  /* Layout */
  .container { padding: 0 1.25rem; }
  section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 2.5rem; }

  /* Hero logo — stack vertically on narrow screens */
  .bizsim-hero-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .bizsim-logo-img { width: 72px; height: 72px; }
  .bizsim-name { font-size: 2.2rem; }

  /* Reading banner */
  .reading-banner { padding: 2.5rem 0 2rem; }

  /* Calc block */
  .calc-block { padding: 1.25rem; }

  /* Slider label + value: stack */
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 10px;
  }
  .slider-val {
    min-width: unset;
    text-align: left;
    font-size: 1rem;
    color: var(--black);
  }

  /* Result grid: 1 column */
  .result-grid { grid-template-columns: 1fr; }

  /* Conversion grid: stack */
  .conv-grid { grid-template-columns: 1fr; }
  .conv-sep { display: none; }
  .conv-col.right {
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(26,102,50,0.2);
    border-top: none;
  }
  .conv-col.left { border-radius: 10px 10px 0 0; }

  /* Problem grid: stack */
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Kafle: 1 column */
  .kafle { grid-template-columns: 1fr; }

  /* VS grid: stack */
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { display: none; }
  .vs-col { padding: 1.75rem 1.25rem; }

  /* DBT grid: 1 column */
  .dbt-grid { grid-template-columns: 1fr; }

  /* Time bars: stack each row */
  .time-bars { gap: 1.25rem; }
  .time-bar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .time-bar-label { text-align: left; }
  .time-bar-track { height: 8px; }

  /* Time bar proof: scroll horizontally */
  .time-bar-proof { overflow-x: auto; padding-bottom: 4px; }
  .time-bar-proof img { height: 44px; }

  /* Pricing: 1 column */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { border-radius: 0; }

  /* Compare table: horizontal scroll */
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 400px; font-size: 0.82rem; }

  /* Tools grid: 2 columns */
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-item:nth-child(4n) { border-right: 1px solid var(--gray-200); }
  .tool-item:nth-child(2n) { border-right: none; }
  .tool-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-200); }
  .tool-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Commerce: 1 column */
  .commerce-grid { grid-template-columns: 1fr; }
  .commerce-divider { height: 1px; width: 100%; }

  /* GA4 screens: stack */
  .ga4-screens { flex-direction: column; }
  .ga4-screens img { max-width: 100%; }

  /* Closing */
  .closing { padding: 4rem 0; }

  /* Transparency header */
  .transparency-header { padding: 1.5rem; }

  /* Commerce punch text size */
  .commerce-punch { font-size: 0.95rem; padding: 1rem 1.25rem; }

  /* DBT universal text */
  .dbt-universal-text { font-size: 0.95rem; }
}

/* ====== EXTRA SMALL — very narrow phones ====== */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .result-value { font-size: 1.3rem; }
  .pricing-price { font-size: 2.4rem; }
  .big-stat { font-size: 3rem; }
  .conv-stat { font-size: 2rem; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-item:nth-child(2n) { border-right: 1px solid var(--gray-200); }
  .tool-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .tool-item:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════
   NOWE STYLE — POPRAWKI KONWERSYJNE
   ═══════════════════════════════════════════════ */

/* ── Pricing "od" prefix ── */
.pricing-from {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-right: 0.2rem;
}
.pricing-scope-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--gray-700);
  border-radius: 4px;
}

/* ── Global CTA button ── */
.cta-btn {
  display: inline-block;
  background: var(--accent, #c8a96e);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cta-btn-hero {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
}
.cta-btn-mid {
  font-size: 1rem;
}
.cta-btn-sm {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

/* ── Secondary CTA (light bg) — "Zobacz DBT na żywo" ── */
.cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gray-900, #0a0a0a);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 1px solid var(--gray-300, rgba(10,10,10,0.25));
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.cta-btn-secondary:hover {
  opacity: 0.75;
  border-color: var(--accent, #c8a96e);
  transform: translateY(-1px);
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

/* ── Hero CTA wrapper ── */
.hero-cta {
  margin-top: 0;
}

/* ── Calc CTA ── */
.calc-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ── CTA Mid section ── */
.cta-mid-section {
  padding: 4rem 0;
  background: var(--gray-900, #111);
}
.cta-mid-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 640px;
}
.cta-mid-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white, #fff);
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 600px) {
  .cta-mid-block { align-items: center; text-align: center; }
  .cta-mid-headline { font-size: 1.2rem; }
}

/* ── Process Section ── */
#proces {
  padding: 5rem 0;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent, #c8a96e) 0%, transparent 100%);
  opacity: 0.3;
}
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-800, #1e1e1e);
  position: relative;
}
.process-step:last-child {
  border-bottom: none;
}
.process-step-num {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--accent, #c8a96e);
  color: #0a0a0a;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.process-step-body {
  padding-top: 0.75rem;
}
.process-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 0.6rem;
}
.process-step-desc {
  font-size: 0.97rem;
  color: var(--gray-400, #888);
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}
.process-step-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent, #c8a96e);
  background: rgba(200,169,110,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.process-cta {
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .process-step { gap: 1rem; }
  .process-step-num { width: 3.5rem; height: 3.5rem; font-size: 0.95rem; }
  .process-steps::before { left: 1.75rem; }
}

/* ── ROI Kalkulator branżowy ── */
#roi-kalkulator { padding: 6rem 0; }

.roi-branże-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 0;
}
@media (max-width: 700px) { .roi-branże-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .roi-branże-grid { grid-template-columns: repeat(2, 1fr); } }

.roi-branża-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.85rem 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.roi-branża-btn:hover { border-color: var(--gray-400); }
.roi-branża-btn.active {
  border-color: var(--black);
  background: var(--black);
}
.roi-branża-btn .rb-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--gray-400);
  display: block;
}
.roi-branża-btn.active .rb-icon { color: var(--white); }
.roi-branża-btn .rb-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  display: block;
}
.roi-branża-btn.active .rb-name { color: var(--white); }
.roi-branża-btn .rb-ticket {
  font-size: 0.68rem;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}
.roi-branża-btn.active .rb-ticket { color: rgba(255,255,255,0.5); }

.roi-plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 500px) { .roi-plan-toggle { grid-template-columns: 1fr; } }

.roi-plan-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s;
}
.roi-plan-btn:hover { border-color: var(--gray-400); }
.roi-plan-btn.active { border-color: var(--black); border-width: 2px; }
.roi-plan-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 2px;
}
.roi-plan-name {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.roi-arrow-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
}
.roi-arrow-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.roi-box-after {
  border-color: rgba(26,102,50,0.3);
  background: var(--green-bg);
}
.roi-box-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}
.roi-box-after .roi-box-label { color: var(--green); }
.roi-box-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--black);
  line-height: 1;
}
.roi-box-after .roi-box-val { color: var(--green); }
.roi-box-sub {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.roi-box-after .roi-box-sub { color: var(--green); opacity: 0.7; }
.roi-arrow-icon {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gray-400);
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .roi-arrow-row { grid-template-columns: 1fr auto 1fr; gap: 0.5rem; }
  .roi-box-val { font-size: 1.8rem; }
}

/* ── Case Study / ROI Section ── */
#case-study {
  padding: 5rem 0;
  background: var(--gray-950, #080808);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
}
.case-card {
  background: var(--gray-900, #111);
  border: 1px solid var(--gray-800, #1e1e1e);
  border-radius: 12px;
  padding: 2rem;
}
.case-card-prognosis {
  border-color: rgba(200,169,110,0.3);
}
.case-industry {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #c8a96e);
  margin-bottom: 1.5rem;
}
.case-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.case-metric {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.case-metric.highlight {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
}
.case-metric-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white, #fff);
  line-height: 1;
}
.case-metric.highlight .case-metric-val {
  color: var(--accent, #c8a96e);
}
.case-metric-label {
  font-size: 0.72rem;
  color: var(--gray-400, #888);
  margin-top: 0.35rem;
  line-height: 1.3;
}
.case-insight {
  font-size: 0.93rem;
  color: var(--gray-400, #888);
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}
.case-roi {
  font-size: 0.9rem;
  color: var(--gray-300, #aaa);
  line-height: 1.65;
  padding: 1rem;
  border-left: 3px solid var(--accent, #c8a96e);
  background: rgba(200,169,110,0.05);
  border-radius: 0 6px 6px 0;
}
.case-scenario {
  font-size: 0.93rem;
  color: var(--gray-400, #888);
  line-height: 1.7;
}
.case-scenario p {
  margin-bottom: 0.75rem;
}
.case-delta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(200,169,110,0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.case-delta-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent, #c8a96e);
  line-height: 1;
  flex-shrink: 0;
}
.case-delta-label {
  font-size: 0.88rem;
  color: var(--gray-300, #aaa);
  line-height: 1.45;
}
.case-roi-note {
  font-size: 0.93rem;
  color: var(--gray-300, #aaa);
  line-height: 1.6;
  margin: 0 0 1.5rem 0 !important;
}
.case-cta-inline {
  margin-top: 1.5rem;
}

/* ─── ALERT BLOCK RED ─── */
.alert-block-red {
  background: var(--red-bg);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2rem 0 0;
}
.alert-block-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.alert-block-red p {
  font-size: 0.97rem;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.alert-block-red p:last-child { margin-bottom: 0; }

/* ─── ROI DIAGNOSTIC GRID ─── */
.roi-diagnostic-grid {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}
.roi-diag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  gap: 1rem;
}
.roi-diag-row:last-of-type { border-bottom: none; }
.roi-diag-row-delta {
  background: var(--gray-100);
}
.roi-diag-label {
  font-size: 0.92rem;
  color: var(--gray-600);
  font-weight: 500;
}
.roi-diag-val {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}
.roi-diag-val.neutral { color: var(--black); }
.roi-diag-val.positive { color: var(--green); }
.roi-diag-val.delta {
  color: var(--green);
  font-size: 1.2rem;
}
.roi-diag-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  padding: 0.6rem 1.5rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-style: italic;
}

/* ─── ROI DISCLAIMER ─── */
.roi-disclaimer {
  margin-top: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  background: var(--gray-50);
}
.roi-disclaimer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.roi-disclaimer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.roi-disclaimer-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.roi-disclaimer-list li.no {
  color: var(--gray-600);
}
.roi-disclaimer-list li.no::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.roi-disclaimer-list li.yes {
  color: var(--green);
  font-weight: 600;
}
.roi-disclaimer-list li.yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── DBT NOT REPLACE SECTION ─── */
.dbt-not-replace {
  margin: 3rem 0 2rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--gray-200);
}
.dbt-not-replace-header {
  max-width: 560px;
  margin-bottom: 2rem;
}
.dbt-not-replace-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.dbt-not-replace-header p {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* TABLE */
.dbt-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}
.dbt-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.dbt-compare-table thead tr {
  background: var(--gray-100);
}
.dbt-compare-table th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.dbt-compare-table th.th-dbt {
  color: var(--green);
}
.dbt-compare-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}
.dbt-compare-table tbody tr:last-child {
  border-bottom: none;
}
.dbt-compare-table tbody tr:hover {
  background: var(--gray-50);
}
.dbt-compare-table td {
  padding: 0.85rem 1.25rem;
  vertical-align: middle;
  line-height: 1.45;
}
.dbt-compare-table td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.dbt-compare-table td:nth-child(2) {
  color: var(--gray-600);
}
.dbt-compare-table td.td-dbt {
  color: var(--green);
  font-weight: 600;
}

/* FUNNEL */
.dbt-funnel-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.dbt-funnel-vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 2.75rem;
  text-align: center;
}
.dbt-funnel-col {
  display: flex;
  flex-direction: column;
}
.dbt-funnel-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.dbt-funnel-label.no { color: var(--red); }
.dbt-funnel-label.yes { color: var(--green); }
.dbt-funnel-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.dbt-funnel-step {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  width: 100%;
  text-align: center;
}
.dbt-funnel-step.highlight-red {
  background: var(--red-bg);
  border-color: var(--red);
  color: var(--red);
  font-weight: 700;
}
.dbt-funnel-step.highlight-green {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
  font-weight: 700;
}
.dbt-funnel-arrow {
  text-align: center;
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.4;
  width: 100%;
  padding: 0.1rem 0;
}

@media (max-width: 640px) {
  .dbt-funnel-grid {
    grid-template-columns: 1fr;
  }
  .dbt-funnel-vs {
    padding-top: 0;
    text-align: center;
  }
  .dbt-compare-table th,
  .dbt-compare-table td {
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
  }
}

/* ─── HERO INDUSTRY PREVIEWS ─── */
.hero-industry-previews {
  display: flex;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
  flex-wrap: wrap;
}
.hip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hip-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.hip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hip-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-tech-note {
  font-size: 0.85rem;
  color: var(--gray-500, #6b7280);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero-tech-note strong {
  color: var(--gray-800, #1f2937);
}

/* ─── CO DOSTAJESZ — TABLE 1 ─── */
.what-you-get-table-wrap {
  margin: 2rem 0 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.what-you-get-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.what-you-get-table thead tr {
  background: var(--gray-100);
}
.what-you-get-table th {
  padding: 0.8rem 1.25rem;
  text-align: left;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.what-you-get-table th.th-dbt2 { color: var(--green); }
.what-you-get-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}
.what-you-get-table tbody tr:last-child { border-bottom: none; }
.what-you-get-table tbody tr:hover { background: var(--gray-50); }
.what-you-get-table td {
  padding: 0.8rem 1.25rem;
  line-height: 1.45;
}
.what-you-get-table td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.what-you-get-table td.td-dbt2 {
  color: var(--green);
  font-weight: 600;
}

/* ─── CO ZOSTAJE — TABLE 2 ─── */
.what-stays-table-wrap {
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.what-stays-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  padding: 0.8rem 1.25rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.what-stays-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.what-stays-table th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.what-stays-table th.th-we { color: var(--green); }
.what-stays-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.what-stays-table tbody tr:last-child { border-bottom: none; }
.what-stays-table tbody tr:hover { background: var(--gray-50); }
.what-stays-table td { padding: 0.75rem 1.25rem; line-height: 1.4; }
.what-stays-table td:first-child { font-weight: 600; color: var(--black); }
.ws-keep { color: var(--green); font-weight: 700; }
.ws-no { color: var(--gray-400); font-size: 0.85rem; }
.ws-opt { color: var(--amber); font-weight: 600; font-size: 0.85rem; }
.ws-do { color: var(--green); font-weight: 700; }
.ws-new { color: var(--red); font-weight: 700; }

@media (max-width: 600px) {
  .what-you-get-table td,
  .what-stays-table td,
  .what-you-get-table th,
  .what-stays-table th { padding: 0.65rem 0.85rem; font-size: 0.82rem; }
  .what-you-get-table td:first-child { white-space: normal; }
}

/* ─── FAQ ─── */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
}
.faq-item {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.faq-q::before {
  content: '→ ';
  color: var(--red);
  font-weight: 900;
}
.faq-a {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding-left: 1.1rem;
}

/* ─── GUARANTEE BLOCK ─── */
.guarantee-block {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
  background: rgba(26,102,50,0.08);
  border: 1px solid rgba(26,102,50,0.25);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  align-items: flex-start;
}
.guarantee-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.guarantee-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.guarantee-text {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.guarantee-note {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}

/* ═══════════════════════════ CONTACT FORM ═══════════════════════════ */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.contact-intro {
  max-width: 520px;
  margin: 0.75rem auto 2.5rem;
  text-align: left;
  font-size: 1rem;
  color: var(--gray-600);
}
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2.25rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cf-field {
  margin-bottom: 1.25rem;
}
.cf-field:last-child { margin-bottom: 0; }
.cf-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.cf-label .cf-optional {
  text-transform: none;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0;
}
.cf-input,
.cf-textarea,
.cf-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}
.cf-input:focus,
.cf-textarea:focus,
.cf-select:focus {
  border-color: var(--black);
}
.cf-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b65' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.cf-submit-row {
  margin-top: 1.75rem;
  text-align: center;
}
.cf-submit-btn {
  display: inline-block;
  width: 100%;
  background: var(--accent, #c8a96e);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.cf-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cf-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.cf-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}
.cf-status {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.cf-status.show { display: block; }
.cf-status.ok {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green);
}
.cf-status.err {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid var(--red);
}
.cf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.5rem; }
}

/* ── Closing secondary CTA (dark bg) ── */
.cta-btn-secondary-dark {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  transition: opacity 0.2s, border-color 0.15s;
}
.cta-btn-secondary-dark:hover {
  opacity: 0.85;
  border-color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════ KLIENCI, NIE KLIKNIĘCIA ═══════════════════════════ */
.clients-not-clicks-section {
  background: var(--black);
  text-align: center;
}
.cnc-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto;
}
.cnc-line-no {
  color: var(--gray-400);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1.5px;
}
.cnc-line-yes {
  color: var(--white);
  font-style: italic;
  margin-bottom: 2.75rem;
}

.cnc-compare {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.cnc-compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.cnc-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.cnc-vs-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-200);
}
.cnc-vs-item-highlight {
  color: var(--white);
  font-style: italic;
  font-size: 1.3rem;
}
.cnc-vs-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}
.cnc-vs-divider {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0.5rem 0;
}

.cnc-sub {
  font-size: 1.02rem;
  color: var(--gray-200);
  margin-bottom: 1.5rem;
}

.cnc-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 380px;
  margin: 0 auto 2.75rem;
  text-align: left;
}
.cnc-metric {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.cnc-check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.cnc-contrast {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 2.75rem;
}

.cnc-closing p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}
.cnc-closing-final {
  font-size: 1.5rem !important;
  font-style: italic;
  color: var(--white) !important;
  margin-top: 0.75rem !important;
}

@media (max-width: 640px) {
  .cnc-metrics { max-width: 100%; padding: 0 0.5rem; }
}

/* ═══════════════════════════ BEZ RYZYKA ═══════════════════════════ */
.risk-free-section {
  background: var(--green-bg);
  text-align: center;
}
.risk-free-section .eyebrow { color: var(--green); opacity: 0.8; text-align: center; }
.risk-free-section h2 {
  max-width: 600px;
  margin: 0 auto 1.25rem;
  color: var(--black);
}
.risk-free-sub {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  color: var(--gray-600);
}
.risk-free-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 420px;
  margin: 0 auto 2rem;
  text-align: left;
}
.risk-free-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}
.risk-free-check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}
.risk-free-note {
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.risk-free-note-sub {
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .risk-free-list { max-width: 100%; padding: 0 0.5rem; }
}

/* ═══════════════════════════ SITE FOOTER ═══════════════════════════ */
.site-footer {
  background: #050505;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .container {
  text-align: center;
}
.footer-brand {
  margin-bottom: 1.25rem;
}
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-brand-tags {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  margin-bottom: 1.25rem;
}
.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.15s, border-color 0.15s;
}
.footer-contact a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

@media (max-width: 640px) {
  .footer-contact { flex-direction: column; gap: 0.6rem; }
}

/* ═══════════════════════════ STICKY NAV ═══════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 56px;
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}
.site-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.site-nav-cta {
  background: var(--accent, #c8a96e);
  color: #fff !important;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
}
.site-nav-cta:hover {
  background: #b8975c;
  color: #fff;
}
.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.site-nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* offset body so content isn't hidden under nav */
body {
  padding-top: 56px;
}

@media (max-width: 640px) {
  .site-nav-toggle {
    display: flex;
  }
  .site-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav-links.open {
    display: flex;
  }
  .site-nav-link {
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  .site-nav-cta {
    margin-top: 0;
    text-align: left;
    background: transparent;
    color: rgba(255,255,255,0.75) !important;
    border-radius: 6px;
    font-weight: 500;
  }
  .site-nav-cta:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
  }
}

/* ── Scroll offset for sticky nav ── */
section[id], div[id] {
  scroll-margin-top: 64px;
}

/* ═══════════════════════════ STATS BAR ═══════════════════════════ */
.stats-bar {
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  padding: 0;
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--gray-200, #e5e7eb);
}
.stats-item:last-child {
  border-right: none;
}
.stats-val {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900, #0a0a0a);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stats-label {
  font-size: 0.88rem;
  color: var(--gray-500, #6b7280);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    padding: 1.5rem 1rem;
  }
  .stats-item:last-child {
    border-bottom: none;
  }
  .stats-val {
    font-size: 1.8rem;
  }
}
