/* ============================================================
   Kasia — rekrutacja odwrócona w IT
   System wizualny / Design System
   Tło: białe · Tekst: czarny/szary · Akcent: gradient #ED1E79 → #ED1E79
   Motyw: uśmiech w różnych odcieniach niebieskiego
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand — wariant 2: czarno-fuksjowy, mocny kontrast */
  --brand-1: #ED1E79;
  --brand-2: #ED1E79;
  --grad: #ED1E79;
  --grad-135: #ED1E79;
  --grad-soft: rgba(237,30,121,.12);

  /* Text */
  --ink: #050505;        /* literal near-black, used ONLY for dark bg surfaces (topbar/footer/dark btn) */
  --text: #F5F4F2;       /* primary light text (was --ink as text color) */
  --text-2: #C7C5C1;     /* secondary light text (was --ink-2 as text color) */
  --gray: #A6A4A0;       /* muted body text */
  --gray-2: #6B6966;     /* faint / label text */
  --line: #262626;
  --line-2: #1C1C1C;

  /* Surfaces */
  --bg: #0D0D0D;
  --bg-card: #161616;
  --bg-raised: #1B1B1B;
  --tint: #121212;
  --tint-2: #151515;
  --tint-3: #181818;

  /* Extra-dark "inversion" sections (B2B, price, final CTA, footer) */
  --navy: #000000;
  --navy-2: #060606;
  --navy-line: #262626;

  /* Type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Sora", ui-sans-serif, system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-brand: none;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: #ED1E7955; color: var(--text); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; letter-spacing: -.01em; }
p { text-wrap: pretty; }
strong { color: var(--text-2); font-weight: 600; }

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

/* ---------- Layout ---------- */
main { overflow-x: clip; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tint { background: var(--tint); }
.section--tint2 { background: linear-gradient(180deg, var(--tint) 0%, var(--bg) 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-1);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }

.section-head { max-width: 740px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.section-head--wide, #opinie .section-head { max-width: 100%; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 + p { margin-top: 18px; font-size: 1.15rem; }
.section-head p { color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  padding: 15px 26px; border-radius: 999px; min-height: 52px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(237,30,121,.38); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--bg-card); color: var(--text); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--brand-1); color: var(--brand-1); background: var(--grad-soft); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,18,24,.25); }
.btn-on-dark { background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(237,30,121,.35); }
.btn-on-dark:hover { transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: #fff; border: 1.5px solid #ffffff35; }
.btn-outline-dark:hover { border-color: var(--brand-2); color: var(--brand-2); }
.btn-sm { min-height: 44px; padding: 11px 20px; font-size: .92rem; }
.btn-block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; color: var(--brand-1);
  border-bottom: 1.5px solid transparent; transition: gap .2s ease, border-color .2s ease;
}
.textlink:hover { gap: 11px; border-color: var(--brand-1); }
.textlink svg { width: 16px; height: 16px; }

/* ---------- Smile motif ---------- */
.smile { display: inline-block; color: var(--brand-1); }
.smile svg { width: 100%; height: 100%; overflow: visible; }
/* decorative watermark smiles placed absolutely inside sections */
.smile-wm { position: absolute; pointer-events: none; z-index: 0; opacity: .5; }
.smile-wm svg { width: 100%; height: 100%; }

/* tinted variants applied to the stroke gradient via opacity wrappers */
.tint-a { opacity: .07; }
.tint-b { opacity: .11; }
.tint-c { opacity: .16; }
.tint-d { opacity: .25; }

/* keep section content above watermarks */
.section > .wrap { position: relative; z-index: 1; }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar {
  background: var(--ink); color: #d8dde4;
  font-size: .85rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; justify-content: flex-end; align-items: center; gap: 18px; min-height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: #eef1f5; }
.topbar a .arrow { color: var(--brand-2); transition: transform .2s ease; }
.topbar a:hover .arrow { transform: translateX(4px); }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13,13,13,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(11,18,24,.05); }
.nav .wrap { display: flex; align-items: center; gap: 18px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--text); letter-spacing: -.02em; }
.brand .smile { width: 34px; height: 26px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-2); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-2); padding: 8px 12px; border-radius: 10px; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--brand-1); background: var(--tint-2); }
.nav-links a.is-b2b { color: var(--gray); position: relative; }
.nav-links a.is-b2b::before { content: ""; position: absolute; left: -2px; top: 50%; transform: translateY(-50%); width: 1px; height: 20px; background: var(--line); }
.nav-cta { margin-left: 6px; }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; border: 1.5px solid var(--line); margin-left: auto; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .25s; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .25s; }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 55; }
.mobile-menu .scrim { position: absolute; inset: 0; background: rgba(7,16,31,.4); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s; }
.mobile-menu .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--bg-card); box-shadow: -10px 0 40px rgba(11,18,24,.18); padding: 90px 28px 32px; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 6px; }
.mobile-menu.open { display: block; }
.mobile-menu.open .scrim { opacity: 1; }
.mobile-menu.open .panel { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 92px) clamp(60px, 8vw, 110px); background: radial-gradient(120% 90% at 88% -10%, #161113 0%, #0D0D0D 52%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 10px; font-size: .86rem; font-weight: 500; color: var(--text-2); box-shadow: var(--shadow-sm); margin-bottom: 26px; }
.hero-badge .pill { display: inline-flex; align-items: center; gap: 6px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .76rem; letter-spacing: .02em; padding: 4px 10px; border-radius: 999px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--gray); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-b2b { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--gray); }
.hero-b2b a { font-weight: 600; color: var(--text); border-bottom: 1.5px solid var(--brand-2); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.hero-b2b a:hover { gap: 10px; }
.hero-b2b a .arrow { color: var(--brand-1); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo { position: relative; z-index: 2; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-photo image-slot { width: 100%; height: 100%; }
.kasia-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); transition: filter .4s ease; }
.hero-photo:hover .kasia-photo { filter: grayscale(.85) contrast(1.05); }
.img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--bg-card); border: 1.5px dashed var(--line); color: var(--gray-2); }
.img-placeholder svg { width: 32px; height: 32px; }
.img-placeholder span { font-size: .85rem; }

/* ---- Seats availability widget ---- */
.seats { margin-bottom: 26px; max-width: 100%; overflow: hidden; }
.seats-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; max-width: 100%; overflow: hidden; }
.seat {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gray-2);
  flex: none;
  transition: border-color .2s, color .2s, background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.seat svg { width: 16px; height: 16px; }
.seat.is-taken {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  cursor: not-allowed;
}
.seat.is-free {
  cursor: pointer;
}
.seat.is-free:hover {
  border-color: var(--brand-1);
  color: var(--brand-1);
  background: rgba(237, 30, 121, 0.12);
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(237, 30, 121, 0.45);
}

.seats-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.seats-label-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.seats-count { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.05rem; }
.seats-month { font-size: .86rem; color: var(--gray); }

.seats-switch-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seats-switch-btn:hover {
  background: rgba(237, 30, 121, 0.15);
  border-color: var(--brand-1);
  color: var(--brand-1);
  transform: translateY(-1px);
}
.seats-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--brand-1); border-bottom: 1.5px solid var(--brand-1); transition: gap .2s; }
.seats-cta:hover { gap: 12px; }
.seats-cta .arrow { transition: transform .2s; }
.seats-cta:hover .arrow { transform: translateX(2px); }

.hero-frame { position: absolute; inset: -18px -18px auto auto; width: 70%; height: 70%; border-radius: var(--radius-lg); background: var(--grad-135); z-index: 1; }
.hero-smile-big { position: absolute; z-index: 0; right: -8%; top: -14%; width: 58%; opacity: .9; }
.hero-chip { position: absolute; z-index: 3; background: var(--bg-card); border-radius: 16px; box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.hero-chip .smile { width: 30px; height: 23px; flex: none; }
.hero-chip b { font-family: var(--font-display); color: var(--text); font-size: 1.05rem; display: block; }
.hero-chip span { font-size: .82rem; color: var(--gray); }
.hero-chip--tl { left: -26px; bottom: 64px; }
.hero-chip--br { right: -18px; bottom: -22px; }

/* trust strip under hero */
.trust { border-top: 1px solid var(--line); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 5vw, 56px); padding-block: 26px; }
.trust .label { font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-2); }
.trust .stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); margin-left: auto; }
.trust .stat b { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); display: block; line-height: 1; }
.trust .stat span { font-size: .85rem; color: var(--gray); }

/* ============================================================
   "DLA KOGO" — list
   ============================================================ */
.foryou { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.foryou-item { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.foryou-item:hover { border-color: #3d1c2c; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.foryou-item .ic { flex: none; width: 24px; height: 24px; background: none; display: grid; place-items: center; color: var(--brand-1); margin-top: 2px; }
.foryou-item .ic svg { width: 22px; height: 22px; }
.foryou-item p { color: var(--text-2); font-weight: 500; }

/* ============================================================
   "CZYM JEST" — compare
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.compare-card { border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); position: relative; overflow: hidden; }
.compare-card .tag { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; display: inline-block; }
.compare-card h3 { margin-bottom: 14px; }
.compare--old { background: var(--bg-card); border: 1px solid var(--line); }
.compare--old .tag { color: var(--gray-2); }
.compare--old h3 { color: var(--text-2); }
.compare--new { background: var(--navy); color: #c9d3e2; }
.compare--new .tag { color: var(--brand-2); }
.compare--new h3 { color: #fff; }
.compare--new .smile-wm { opacity: .14; }
.compare-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.compare-list li svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.compare--old li svg { color: var(--gray-2); }
.compare--new li svg { color: var(--brand-2); }

/* ============================================================
   OFERTA — service tiles
   ============================================================ */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer-card { position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 26px; overflow: hidden; transition: transform .22s, box-shadow .25s, border-color .25s; isolation: isolate; }
.offer-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #3d1c2c; }
.offer-card:hover::after { transform: scaleX(1); }
.offer-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; color: var(--brand-1); margin-bottom: 20px; }
.offer-card .ic svg { width: 26px; height: 26px; }
.offer-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.offer-card p { font-size: .96rem; }
.offer-card.is-flagship { background: var(--navy); border-color: var(--navy); color: #c4cfde; grid-column: 1 / -1; padding: 32px 34px; }
.offer-card.is-flagship p { max-width: 62ch; }
.offer-card.is-flagship h3 { color: #fff; }
.offer-card.is-flagship .ic { background: #ffffff14; color: var(--brand-2); }
.offer-card .flag-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.offer-foot { margin-top: 36px; display: flex; justify-content: center; }

/* ============================================================
   JAK TO DZIAŁA — timeline
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: 20px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: .94rem; }
.step .connector { position: absolute; top: 51px; right: -8px; width: 16px; height: 2px; background: var(--line); z-index: 2; }
.steps-foot { margin-top: 36px; }

/* ============================================================
   DLACZEGO JA
   ============================================================ */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-item { display: flex; gap: 18px; padding: 22px 4px; border-bottom: 1px solid var(--line); }
.why-item:last-child { border-bottom: none; }
.why-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--brand-1); display: grid; place-items: center; }
.why-item .ic svg { width: 23px; height: 23px; }
.why-item h4 { margin-bottom: 5px; }
.why-item p { font-size: .96rem; }
.why-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
}
.why-visual .smile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
  transform: none;
}
.why-visual .smile svg {
  width: 48%;
  max-width: 200px;
  height: auto;
  display: block;
}
.why-visual .quote {
  position: relative;
  width: 100%;
  padding: 0;
  color: #c9d3e2;
  font-size: .96rem;
  line-height: 1.5;
  z-index: 2;
  margin-top: 0;
}
.why-visual .quote b {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

/* ============================================================
   OPINIE
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.review .stars { display: flex; gap: 3px; color: var(--brand-1); }
.review .stars svg { width: 17px; height: 17px; }
.review blockquote { font-size: 1.02rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .who image-slot, .review .who .ph { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.review .who .ph { background: var(--grad-soft); display: grid; place-items: center; color: var(--brand-1); font-family: var(--font-display); font-weight: 700; }
.review .who b { display: block; color: var(--text); font-family: var(--font-display); font-size: .98rem; }
.review .who span { font-size: .85rem; color: var(--gray); }
.reviews-foot { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; }
.reviews-foot .ln { display: inline-flex; align-items: center; gap: 12px; color: var(--gray); font-size: .96rem; }
.reviews-foot .ln b { color: var(--text); font-family: var(--font-display); }
.li-badge { width: 38px; height: 38px; border-radius: 9px; background: #0a66c2; color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }

/* ============================================================
   CENNIK + FAQ (zajawka)
   ============================================================ */
.price-faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.price-card { background: var(--navy); color: #c4cfde; border-radius: var(--radius-lg); padding: clamp(30px, 3vw, 42px); position: relative; overflow: hidden; }
.price-card .smile-wm { opacity: .13; }
.price-card .eyebrow { color: var(--brand-2); }
.price-card .from { font-size: .9rem; color: #9fadc1; margin-top: 22px; }
.price-card .amount { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.03em; margin: 6px 0 4px; }
.price-card .amount small { font-size: 1rem; font-weight: 500; color: #9fadc1; letter-spacing: 0; }
.price-rows { margin: 26px 0; display: flex; flex-direction: column; gap: 2px; }
.price-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--navy-line); font-size: .96rem; }
.price-row:last-child { border-bottom: none; }
.price-row span { color: #aab6c8; } .price-row b { color: #fff; font-family: var(--font-display); white-space: nowrap; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 30px; height: 30px; border-radius: 9px; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--brand-1); transition: .25s; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq summary .pm::before { width: 12px; height: 2px; } .faq summary .pm::after { width: 2px; height: 12px; transition: transform .25s; }
.faq[open] summary .pm { background: var(--grad); border-color: transparent; color: #fff; }
.faq[open] summary .pm::after { transform: scaleY(0); }
.faq .faq-body { padding: 0 4px 24px; color: var(--gray); font-size: 1rem; max-width: 60ch; }
.faq-foot { margin-top: 26px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; background: var(--navy); color: #c4cfde; border-radius: clamp(24px, 3vw, 40px); padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px); text-align: center; }
.final h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; max-width: 18ch; margin-inline: auto; }
.final p { color: #aeb9c9; max-width: 52ch; margin: 0 auto 34px; font-size: 1.12rem; }
.final .btn { font-size: 1.05rem; min-height: 58px; padding: 17px 34px; }
.final .micro { margin-top: 20px; font-size: .9rem; color: #8b97a9; }
.final .smile-wm { opacity: .16; }

/* ============================================================
   PASEK B2B (ciemny, inwersja)
   ============================================================ */
.b2b-bar { background: linear-gradient(120deg, #060d18 0%, #0c1a30 100%); color: #c9d3e2; position: relative; overflow: hidden; }
.b2b-bar .wrap { display: flex; align-items: center; gap: 28px; padding-block: clamp(34px, 4vw, 52px); position: relative; z-index: 1; }
.b2b-bar .ic { flex: none; width: 60px; height: 60px; border-radius: 16px; background: #ffffff0d; border: 1px solid #ffffff1a; display: grid; place-items: center; }
.b2b-bar .ic .smile { width: 32px; }
.b2b-bar .txt { flex: 1; }
.b2b-bar .tag { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 6px; }
.b2b-bar h3 { color: #fff; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.b2b-bar p { font-size: .98rem; margin-top: 6px; max-width: 58ch; }
.b2b-bar .smile-wm { opacity: .1; }

/* ============================================================
   KONTAKT + FORM
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact .wrap { display: block; width: 100%; }
.contact-info { width: 100%; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lead { color: var(--gray); font-size: 1.1rem; margin-bottom: 30px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail .row { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail .row .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--grad-soft); color: var(--brand-1); display: grid; place-items: center; }
.contact-detail .row .ic svg { width: 20px; height: 20px; }
.contact-detail .row b { display: block; color: var(--text); font-family: var(--font-display); font-size: .98rem; }
.contact-detail .row span { font-size: .9rem; color: var(--gray); }
.contact-detail .row a { color: var(--gray); }
.contact-detail .row a:hover { color: var(--brand-1); }

/* card shell */
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(26px, 3vw, 40px); position: relative; }

/* progress */
.fp-progress { margin-bottom: 30px; }
.fp-progress .meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.fp-progress .meta .step-label { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: .92rem; }
.fp-progress .meta .step-name { font-size: .85rem; color: var(--brand-1); font-weight: 600; }
.fp-track { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.fp-bar { height: 100%; width: 16%; background: var(--grad); border-radius: 999px; transition: width .4s cubic-bezier(.4,0,.2,1); }

/* steps */
.fp-step { display: none; animation: fpIn .35s ease both; }
.fp-step.active { display: block; }
@keyframes fpIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fp-q { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: 6px; }
.fp-help { font-size: .92rem; color: var(--gray); margin-bottom: 22px; }

/* choice tiles */
.choice-grid { display: grid; gap: 12px; }
.choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.choice {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px 18px; background: var(--bg-card);
  transition: border-color .18s, background .18s, transform .12s; width: 100%; position: relative;
}
.choice:hover { border-color: #3d1c2c; }
.choice.selected { border-color: var(--brand-1); background: var(--grad-soft); }
.choice .mark { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; margin-top: 1px; transition: .18s; }
.choice.is-check .mark { border-radius: 7px; }
.choice .mark svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: .18s; }
.choice.selected .mark { background: var(--grad); border-color: transparent; }
.choice.selected .mark svg { opacity: 1; transform: scale(1); }
.choice .c-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); color: var(--brand-1); display: grid; place-items: center; }
.choice .c-ic svg { width: 22px; height: 22px; }
.choice .c-txt b { display: block; font-family: var(--font-display); color: var(--text); font-size: 1.04rem; margin-bottom: 2px; }
.choice .c-txt span { font-size: .9rem; color: var(--gray); line-height: 1.45; }

/* fields */
.fp-fields { display: grid; gap: 18px; }
.fp-fields.cols-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-span { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--text-2); }
.field label .req { color: var(--brand-1); }
.field .hint { font-size: .82rem; color: var(--gray-2); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; background: var(--bg-card);
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-1); box-shadow: 0 0 0 4px #ED1E7933; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e1564b; box-shadow: 0 0 0 4px #e1564b22; }
.field .err { font-size: .82rem; color: #d23b30; display: none; }
.field.invalid .err { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-raised); }
.consent.invalid { border-color: #e1564b; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand-1); flex: none; }
.consent label { font-size: .88rem; color: var(--gray); font-family: var(--font-body); font-weight: 400; }
.consent label a { color: var(--brand-1); text-decoration: underline; }

/* summary */
.summary-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.summary-row .k { font-size: .86rem; color: var(--gray); flex: none; max-width: 42%; }
.summary-row .v { font-family: var(--font-display); font-weight: 500; color: var(--text); text-align: right; font-size: .96rem; }

/* nav buttons */
.fp-nav { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.fp-nav .spacer { flex: 1; }
.fp-back { color: var(--gray); font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; padding: 12px 8px; border-radius: 10px; transition: color .2s; }
.fp-back:hover { color: var(--text); }
.fp-back svg { width: 16px; height: 16px; }
.fp-back[hidden] { display: none; }

/* success */
.fp-done { display: none; text-align: center; padding: 16px 8px; }
.fp-done.active { display: block; animation: fpIn .4s ease both; }
.fp-done .badge { width: 84px; height: 84px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: var(--shadow-brand); }
.fp-done .badge svg { width: 40px; height: 40px; color: #fff; }
.fp-done h3 { font-size: 1.6rem; margin-bottom: 12px; }
.fp-done p { color: var(--gray); max-width: 42ch; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #aab3c0; padding-top: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer .brand small { color: var(--gray-2); }
.footer-tag { font-family: var(--font-display); color: #e7ebf1; font-size: 1.08rem; font-weight: 500; line-height: 1.4; max-width: 32ch; margin-bottom: 14px; letter-spacing: -.01em; }
.footer-bio { font-size: .92rem; color: #8a93a1; max-width: 36ch; }
.footer h5 { font-family: var(--font-display); color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .95rem; color: #aab3c0; transition: color .18s; }
.footer-col a:hover { color: var(--brand-2); }
.footer-contact .row { font-size: .95rem; margin-bottom: 12px; }
.footer-contact .row b { color: #fff; font-weight: 500; }
.footer-contact .b2b-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-2); font-weight: 600; font-size: .92rem; margin: 4px 0 18px; }
.footer-bottom { border-top: 1px solid #1c252f; padding-block: 26px; display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; font-size: .85rem; color: #767f8c; }
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-bottom .lock-link { color: #767f8c; display: inline-flex; align-items: center; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.footer-bottom .lock-link:hover { opacity: 1; color: #fff; }
.footer-bottom .lock-link:hover svg { opacity: 1 !important; color: #fff; }

/* ============================================================
   FLOATING CTA (mobile) + COOKIE
   ============================================================ */
.fab {
  position: fixed;
  left: 5px;
  right: 5px;
  bottom: 16px;
  z-index: 50;
  display: none;
}
.fab .btn {
  width: 100%;
  box-shadow: 0 10px 30px rgba(237,30,121,.4);
}

.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; max-width: 460px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px 22px; transform: translateY(140%); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.cookie.show { transform: none; }
.cookie p { font-size: .9rem; color: var(--gray); margin-bottom: 14px; }
.cookie p a { color: var(--brand-1); text-decoration: underline; }
.cookie .row { display: flex; gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 420px; margin-inline: auto; order: -1; }
  .why { grid-template-columns: 1fr; }
  .price-faq { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step .connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brandcol { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .foryou { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .fp-fields.cols-2, .choice-grid.cols-2 { grid-template-columns: 1fr; }
  .b2b-bar .wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .fab { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { padding-bottom: 85px; }
  .trust .stats { margin-left: 0; }
  .hero-visual { max-width: 100%; }
  .hero-chip { max-width: calc(100% - 10px); }
  .hero-chip--tl { left: 0; }
  .hero-chip--br { right: 0; }
  .hero-smile-big { right: 0; top: 0; max-width: 50%; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-chip { padding: 10px 14px; }
  .seats-row { gap: 6px; }
}

/* ============ PAKIETY (e-commerce cards) ============ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background .2s;
}
.pkg-card--featured {
  background: var(--bg-card);
}

.pkg-badge {
  display: inline-block;
  background: var(--brand-1);
  color: #fff;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pkg-label {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--brand-1);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.pkg-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pkg-sub {
  font-size: .875rem;
  color: var(--gray);
  margin-bottom: 0;
}

.pkg-price {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pkg-note {
  font-size: .8rem;
  color: var(--gray-2);
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pkg-list li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.45;
  align-items: flex-start;
}
.pkg-card--featured .pkg-list li { color: var(--text-dim, #c7c5c1); }
.pkg-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand-1);
  margin-top: 2px;
}

.pkg-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pkg-note-bottom {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-2);
  margin-top: 8px;
}

/* price-row flagship highlight */
.price-row--flagship b { color: var(--brand-1); }

/* ===== O MNIE GRID ===== */
.omnie-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .omnie-grid { grid-template-columns: 1fr; gap: 40px; } }
.omnie-copy h2 { margin-top: 10px; margin-bottom: 15px; }
.omnie-copy p { color: var(--gray); font-size: .97rem; line-height: 1.75; margin-bottom: 14px; }
.omnie-copy p:last-of-type { margin-bottom: 0; }

.omnie-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ostat {
  background: var(--bg-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ostat--accent { background: rgba(237,30,121,.08); }
.ostat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.ostat--accent .ostat-num { color: var(--brand-1); }
.ostat-label { font-size: .8rem; color: var(--gray-2); }

/* ===== PAKIETY (3 boksy) ===== */
.pkg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 980px) { .pkg-wrap { grid-template-columns: 1fr; } }

.pkg-card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card--featured {
  position: relative;
  background: var(--bg-card);
}

.pkg-badge {
  display: inline-block;
  background: var(--brand-1);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pkg-label {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--brand-1);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.pkg-head {
  margin-bottom: 0;
}
.pkg-card:not(.pkg-card--featured) .pkg-head {
  margin-top: 38px;
}
.pkg-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 3.38rem;
}
.pkg-sub {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 24px;
  display: block;
}

.pkg-price {
  margin-top: auto;
  margin-bottom: 20px;
  padding-top: 18px;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 115px;
  gap: 7px;
}
.pkg-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pkg-note { font-size: .78rem; color: var(--gray-2); line-height: 1.4; }

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.pkg-list li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.5;
  align-items: flex-start;
}
.pkg-card--featured .pkg-list li { color: var(--gray-2, #a6a4a0); }
.pkg-list li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--brand-1);
  margin-top: 3px;
}

.pkg-cta { width: 100%; justify-content: center; text-align: center; }
.pkg-starter { font-size: .8rem; color: var(--gray-2); margin-top: 14px; text-align: center; }
.pkg-starter a { color: var(--brand-1); }
.pkg-note-bottom { text-align: center; font-size: .83rem; color: var(--gray-2); }
.pkg-note-bottom a { color: var(--brand-1); }

/* ===== B2B STRIP ===== */
.b2b-strip {
  background: var(--navy);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 48px 0;
}
.b2b-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.b2b-inner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.b2b-inner p { font-size: .9rem; color: var(--gray); max-width: 440px; }
.b2b-note {
  display: inline-block;
  font-size: .75rem;
  color: var(--gray-2);
  font-family: var(--font-body);
  margin-top: 8px;
  letter-spacing: .04em;
}

/* price-row flagship */
.price-row--flagship b { color: var(--brand-1); }
