/* ===== CostPilot page — C1 "Műszerfal-tiszta" ===== */
body.cp {
  background: var(--cp-bg); color: var(--cp-ink);
  font-family: "Manrope", sans-serif;
  --pill-border: #DDE4E7; --pill-fg: #5B6B74;
  --pill-active-bg: #0E8F7B; --pill-active-fg: #fff;
  --ft-border: var(--cp-border); --ft-fg: var(--cp-ink-sec);
  overflow-x: hidden;
}
.cp .brand { color: var(--cp-ink); font-weight: 800; }
.cp .brand-mark { background: linear-gradient(135deg, #1FBFA4, #0E8F7B); border-radius: 10px; }
.cp .site-nav { color: var(--cp-ink-sec); }
.cp .back-link { font-size: 13.5px; font-weight: 800; text-decoration: none; color: var(--cp-ink-sec); }
.cp .back-link:hover { color: var(--cp-ink); }

/* Hero */
.cp-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 60px 0 90px; }
.cp-hero .badge {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cp-teal-dark); background: rgba(31, 191, 164, 0.12); padding: 7px 14px; border-radius: 999px;
}
.cp-hero h1 { font-size: clamp(42px, 4.4vw, 62px); font-weight: 800; line-height: 1.07; letter-spacing: -0.02em; margin: 22px 0 0; }
.cp-hero h1 .teal { color: var(--cp-teal-dark); }
.cp-hero .lede { font-size: 19px; color: var(--cp-ink-sec); font-weight: 600; max-width: 470px; line-height: 1.6; margin: 22px 0 0; }
.cp-hero .store-row { margin-top: 32px; }
.cp .store-btn.primary { background: #0E8F7B; color: #fff; }
.cp .store-btn.secondary { background: #fff; color: var(--cp-ink); border: 1.5px solid #E0DED6; box-shadow: none; }

/* Coming-soon (not yet published) store buttons */
.cp .store-btn.soon { background: #E7EBEC; color: #99A4A9; border: 1px solid #DBE2E4; box-shadow: none; cursor: default; }
.cp .store-btn.soon:hover { transform: none; box-shadow: none; }
.cp .store-btn.soon .sub { font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.cp-hero-phone { display: grid; place-items: center; position: relative; }
.cp-hero-phone::before {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 191, 164, 0.16), transparent 65%);
}
.cp-hero-phone .phone { transform: rotate(-3deg); position: relative; --phone-frame: #22343C; }

/* Stat chips */
.stat-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.stat-chip {
  background: #fff; border-radius: 16px; padding: 14px 18px; min-width: 148px;
  border: 1px solid var(--cp-border); box-shadow: 0 10px 30px rgba(20, 43, 51, 0.1);
}
.stat-chip .bar { width: 26px; height: 4px; border-radius: 2px; background: var(--chip-accent, var(--cp-teal)); margin-bottom: 8px; }
.stat-chip .label { font-size: 12px; font-weight: 700; color: var(--cp-ink-sec); }
.stat-chip .value { font-size: 26px; font-weight: 800; line-height: 1.2; }
.stat-chip .unit { font-size: 13px; font-weight: 800; color: var(--chip-accent, var(--cp-teal)); margin-left: 4px; }

/* Features */
.cp-features { padding: 64px 0 76px; background: #fff; border-top: 1px solid var(--cp-border); }
.cp-features h2 { text-align: center; font-size: 32px; font-weight: 800; margin: 0 0 34px; }
.cp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cp-feat {
  background: var(--cp-bg); border: 1px solid var(--cp-border); border-radius: 20px; padding: 26px 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.cp-feat:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(20, 43, 51, 0.1); }
.cp-feat .icon {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.cp-feat h3 { font-size: 19px; font-weight: 800; margin: 16px 0 6px; }
.cp-feat p { font-size: 14.5px; font-weight: 600; color: var(--cp-ink-sec); line-height: 1.55; margin: 0; }

/* CTA */
.cp-cta { text-align: center; padding: 78px 0 88px; }
.cp-cta h2 { font-size: 36px; font-weight: 800; margin: 0; }
.cp-cta p { font-size: 17px; font-weight: 600; color: var(--cp-ink-sec); margin: 14px auto 0; max-width: 440px; }
.cp-cta .store-row { justify-content: center; margin-top: 28px; }

@media (max-width: 900px) {
  .cp-hero { grid-template-columns: 1fr; }
  .cp-hero-phone { order: -1; }
  .cp-feat-grid { grid-template-columns: 1fr; }
}
