/* ============================================================
   Halo, mamy pracę! — Telemarketing Forum Media Polska
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ivory: #F2F1ED;
  --ivory-card: #FBFAF7;
  --cobalt: #2563EB;
  --cobalt-dark: #1B4FD6;
  --blue-light: #85B7EB;
  --graphite: #1A1A1A;
  --card-dark: #242424;
  --border-dark: #333333;

  --ink: #1A1A1A;
  --ink-2: #5F5E5A;
  --ink-line: rgba(26,26,26,.10);

  --on-dark: #F2F1ED;
  --on-dark-2: #B4B2A9;
  --on-dark-3: #888780;

  --r-card: 16px;
  --r-pill: 999px;
  --maxw: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }

section { padding-block: clamp(48px, 6vw, 84px); position: relative; }

.dark { background: var(--graphite); color: var(--on-dark); }
.dark h1, .dark h2, .dark h3 { color: var(--on-dark); }

/* ---------- Eyebrow / tags ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.dark .eyebrow { color: var(--blue-light); }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Soundwave motif )))  ---------- */
.waves { display: inline-flex; align-items: center; gap: 4px; }
.waves span {
  display: block;
  width: 9px;
  border: 2.5px solid var(--cobalt);
  border-left: 0; border-top: 0; border-bottom: 0;
  border-radius: 0 999px 999px 0;
  opacity: .9;
}
.waves span:nth-child(1) { height: 16px; }
.waves span:nth-child(2) { height: 30px; }
.waves span:nth-child(3) { height: 46px; }
.dark .waves span { border-color: var(--blue-light); }

.wave-arcs {
  position: absolute;
  pointer-events: none;
  width: 340px; height: 340px;
}
.wave-arcs i {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px solid var(--cobalt);
  border-color: var(--cobalt) transparent transparent var(--cobalt);
  border-radius: 50%;
  transform: rotate(45deg);
  opacity: .18;
}
.wave-arcs i:nth-child(1){ width: 120px; height: 120px; }
.wave-arcs i:nth-child(2){ width: 210px; height: 210px; opacity:.12; }
.wave-arcs i:nth-child(3){ width: 320px; height: 320px; opacity:.07; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-dark); }
.btn-ghost { background: transparent; border-color: var(--ink-line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.dark .btn-ghost { border-color: rgba(242,241,237,.22); color: var(--on-dark); }
.dark .btn-ghost:hover { border-color: var(--on-dark); }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,241,237,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 72px;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x);
}
.brand { font-family: var(--font-display); font-weight: 900; font-size: 19px; letter-spacing: -.03em; display:flex; align-items:center; gap:10px; white-space: nowrap; flex: 0 0 auto; }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cobalt); box-shadow: 0 0 0 4px rgba(37,99,235,.18); }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.badge {
  font-family: var(--font-display);
  font-weight: 700; font-size: 11.5px; letter-spacing: .12em;
  padding: 7px 13px; border-radius: var(--r-pill);
  border: 1.5px solid var(--ink-line); color: var(--ink-2);
  display: inline-flex; gap: 7px; align-items: center;
}
.badge .pin { width: 6px; height: 6px; border-radius: 50%; background: var(--cobalt); }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(26,26,26,.07) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
          mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(46px, 6.6vw, 92px); font-weight: 900; }
.hero h1 .hl {
  background: var(--cobalt); color: #fff;
  padding: 0 .16em; border-radius: 12px;
  display: inline-block; transform: rotate(-1.5deg);
  box-shadow: 0 10px 30px -8px rgba(37,99,235,.5);
}
.hero h1 .halo-wave {
  display: inline-block;
  width: .6em; height: .72em;
  margin-left: .02em;
  vertical-align: baseline;
  color: var(--cobalt);
}
.hero h1 .halo-line { white-space: nowrap; }
.hero h1 .halo-wave svg { width: 100%; height: 100%; display: block; }
.hero .sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); max-width: 30em; margin-top: 26px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-media { position: relative; z-index: 2; }
.hero-media img#hero-photo {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3/2; object-fit: contain;
  border-radius: 20px;
}
.hero-media .wave-arcs { right: -90px; top: -60px; }
.hero-figcap {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(26,26,26,.78); color: #fff;
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; padding: 8px 14px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}

/* ---------- Generic section heading ---------- */
.sec-head { max-width: 22em; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 60px); }
.sec-head .lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-2); margin-top: 22px; max-width: 40em; }
.dark .sec-head .lead { color: var(--on-dark-2); }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 11px; }
.pill {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--ivory-card); border: 1.5px solid var(--ink-line);
  color: var(--ink);
}
.pill.solid { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.dark .pill { background: var(--card-dark); border-color: var(--border-dark); color: var(--on-dark); }

/* ---------- Pasek marek (marquee) ---------- */
.brands { padding-block: clamp(40px, 5vw, 64px); overflow: hidden; }
.brands-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); text-align: center; margin-bottom: clamp(28px, 3.5vw, 44px);
}
.marquee {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: brand-scroll 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; flex: 0 0 auto; align-items: center; }
.marquee-group .logo {
  width: clamp(150px, 15vw, 210px);
  height: 72px;
  margin-inline: clamp(20px, 3vw, 46px);
  opacity: .62;
  transition: opacity .25s ease;
  filter: grayscale(1);
  object-fit: contain;
}
.marquee-group .logo:hover { opacity: 1; filter: grayscale(0); }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- "Kim jesteśmy" ---------- */
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.about h2 { font-size: clamp(32px, 4vw, 52px); }
.about .body { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-2); padding-top: calc(13px + 22px); }
@media (max-width: 920px) { .about .body { padding-top: 0; } }
.about .body p + .pills { margin-top: 30px; }
.about .body .pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.about .body .pills .pill {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  line-height: 1.25;
  padding-block: 8px;
}
@media (max-width: 520px) { .about .body .pills { grid-template-columns: 1fr; } }

/* Office pills: uniform 2-column grid, matching the About section */
.office-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.office-pills .pill {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  line-height: 1.25;
  padding-block: 8px;
}
@media (max-width: 520px) { .office-pills { grid-template-columns: 1fr; } }

/* ---------- Cards (Dlaczego my) ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--r-card); padding: 30px;
  display: flex; gap: 18px; align-items: flex-start;
}
.card .check {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px;
  background: var(--cobalt); display: grid; place-items: center;
}
.card .check svg { width: 20px; height: 20px; stroke: #fff; }
.card h3 { font-size: 20px; margin-bottom: 8px; color: var(--on-dark); }
.card p { color: var(--on-dark-2); font-size: 15.5px; }

/* ---------- Numbered list (Co robisz) ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink-line); }
.step {
  display: flex; gap: 22px; align-items: baseline;
  padding: 30px 8px; border-bottom: 1px solid var(--ink-line);
}
.step:nth-child(odd) { border-right: 1px solid var(--ink-line); padding-right: 36px; }
.step:nth-child(even) { padding-left: 36px; }
.step .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5vw, 64px); color: var(--cobalt); letter-spacing: -.04em; line-height: .9; }
.step .txt { font-size: clamp(18px, 1.8vw, 22px); font-family: var(--font-display); font-weight: 600; color: var(--ink); }

/* ---------- Video ---------- */
.video-player {
  position: relative; aspect-ratio: 16/9; width: 100%;
  border-radius: 20px; overflow: hidden;
  background: #000; border: 1px solid var(--border-dark);
}
.video-player img,
.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.video-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--on-dark-2);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}
.video-player .play {
  position: absolute; inset: 0; margin: auto;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--cobalt); border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(37,99,235,.7);
  transition: transform .15s ease, background .2s ease;
}
.video-player .play:hover { transform: scale(1.07); background: var(--cobalt-dark); }
.video-player .play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.video-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.video-thumbs .thumb { position: relative; }
.video-thumbs img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.video-thumbs .cap { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--on-dark-2); margin-top: 10px; }

/* ---------- Calculator ---------- */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-card {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--r-card); padding: 32px;
}
.calc-card .cc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 4px; }
.calc-card h3 { font-size: 22px; color: var(--on-dark); }
.calc-card .cc-tag { font-size: 13.5px; color: var(--on-dark-3); margin-bottom: 26px; }
.calc-card .turnover { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 4vw, 46px); color: var(--blue-light); letter-spacing: -.03em; line-height: 1; }
.calc-card .turnover small { font-size: 16px; font-weight: 600; color: var(--on-dark-2); margin-left: 6px; letter-spacing: 0; }

/* range slider */
.slider-wrap { margin: 24px 0 6px; }
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: var(--border-dark); outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cobalt); border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.4); cursor: grab;
}
input[type=range]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cobalt); border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.4); cursor: grab;
}
.range-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--on-dark-3); margin-top: 8px; }

.cc-stats { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border-dark); align-items: center; }
.cc-rate-badge {
  font-family: var(--font-display); font-weight: 900; font-size: 30px;
  color: #fff; background: var(--cobalt); border-radius: 12px;
  padding: 12px 18px; line-height: 1; min-width: 86px; text-align: center;
}
.cc-rate-badge small { display:block; font-size: 11px; font-weight: 600; letter-spacing: .08em; opacity: .8; margin-top: 4px; }
.cc-commission .lbl { font-size: 12.5px; color: var(--on-dark-3); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.cc-commission .val { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 34px); color: var(--on-dark); letter-spacing: -.02em; }
.cc-motivator {
  grid-column: 1 / -1; font-size: 14px; color: var(--blue-light);
  background: rgba(133,183,235,.10); border: 1px solid rgba(133,183,235,.22);
  border-radius: 10px; padding: 11px 15px; font-weight: 500;
}
.cc-motivator.maxed { color: var(--on-dark-2); background: rgba(255,255,255,.04); border-color: var(--border-dark); }

.calc-total {
  margin-top: 20px; background: var(--cobalt);
  border-radius: var(--r-card); padding: 28px 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.calc-total .lbl { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 24px); color: #fff; }
.calc-total .lbl span { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.78); letter-spacing: .02em; margin-top: 4px; }
.calc-total .sum { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 68px); color: #fff; letter-spacing: -.03em; line-height: 1; }
.calc-disclaimer { margin-top: 22px; font-size: 13px; color: var(--on-dark-3); max-width: 60em; line-height: 1.55; }

/* ---------- Benefits (Co oferujemy) ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.benefit {
  background: var(--ivory-card); border: 1.5px solid var(--ink-line);
  border-radius: var(--r-card); padding: 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit .ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: rgba(37,99,235,.10); display: grid; place-items: center; }
.benefit .ic svg { width: 20px; height: 20px; stroke: var(--cobalt); }
.benefit p { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.35; }

/* ---------- Kogo szukamy ---------- */
.fit .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 80px); align-items: stretch; }
.fit-intro { position: sticky; top: 96px; }
.fit-photo {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: 20px; margin-top: 32px;
}
@media (max-width: 920px) { .fit-intro { position: static; } .fit-photo { aspect-ratio: 16/9; } }
.fit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; justify-content: space-between; }
.fit-list li { flex: 1 1 0; display: flex; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--ink-line); font-size: clamp(17px, 1.7vw, 21px); font-weight: 500; color: var(--ink); }
.fit-list li:first-child { border-top: 1px solid var(--ink-line); }
.fit-list .tick { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--cobalt); display: grid; place-items: center; margin-top: 2px; }
.fit-list .tick svg { width: 15px; height: 15px; stroke: #fff; }

/* ---------- Proces rekrutacji (timeline) ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.tl-step {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--r-card); padding: 32px 30px; position: relative;
}
.tl-step .tl-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cobalt); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  display: grid; place-items: center; margin-bottom: 22px;
}
.tl-step h3 { font-size: 21px; color: var(--on-dark); margin-bottom: 10px; min-height: 2.1em; }
.tl-step p { color: var(--on-dark-2); font-size: 15.5px; }
.tl-step.final .tl-num { background: var(--blue-light); color: var(--graphite); }

/* ---------- Nasze biuro ---------- */
.office .wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.office .map { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--ink-line); aspect-ratio: 16/10; }
.office .map iframe { width: 100%; height: 100%; border: 0; display: block; }
.office-copy { margin-top: 0; color: var(--ink-2); }
.waves-small { transform: scale(.5); transform-origin: left center; margin-right: -14px; }

/* ---------- Kontakt / Form ---------- */
.contact .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.contact h2 { font-size: clamp(36px, 4.6vw, 60px); }
.contact .lead { color: var(--on-dark-2); font-size: 19px; margin-top: 20px; }
.contact .rodo { margin-top: 32px; font-size: 12.5px; color: var(--on-dark-3); line-height: 1.55; max-width: 34em; }
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--on-dark-2); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  background: var(--card-dark); border: 1.5px solid var(--border-dark);
  border-radius: 12px; padding: 14px 16px; color: var(--on-dark);
  transition: border-color .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-light); }
.field textarea { resize: vertical; min-height: 96px; }
.field.file label.drop {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  background: var(--card-dark); border: 1.5px dashed var(--border-dark);
  border-radius: 12px; padding: 16px; color: var(--on-dark-3); font-family: var(--font-body); font-weight: 400; font-size: 15px; letter-spacing: 0;
  transition: border-color .15s, color .15s;
}
.field.file label.drop:hover { border-color: var(--blue-light); color: var(--on-dark-2); }
.field.file input { display: none; }
.field.file .clip { width: 20px; height: 20px; stroke: var(--blue-light); flex: 0 0 auto; }
.form .submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form .or { font-size: 14px; color: var(--on-dark-3); }
.form-success { display: none; background: rgba(133,183,235,.10); border: 1px solid rgba(133,183,235,.3); border-radius: 12px; padding: 16px 18px; color: var(--blue-light); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: #141414; color: var(--on-dark-2); padding-block: 48px; border-top: 1px solid var(--border-dark); }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .f-brand { font-family: var(--font-display); font-weight: 800; color: var(--on-dark); font-size: 16px; }
.footer .f-meta { font-size: 14px; }
.footer .f-links { display: flex; gap: 22px; font-size: 14px; }
.footer .f-links a { color: var(--on-dark-2); }
.footer .f-links a:hover { color: var(--blue-light); }
.footer .copy { font-size: 13px; color: var(--on-dark-3); width: 100%; padding-top: 22px; margin-top: 8px; border-top: 1px solid var(--border-dark); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; }
  .about .wrap, .fit .wrap, .office .wrap, .contact .wrap { grid-template-columns: 1fr; }
  .cards, .calc-grid, .timeline { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: 0; padding-right: 8px; }
  .step:nth-child(even) { padding-left: 8px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .badge { display: none; }
  .calc-total { flex-direction: column; align-items: flex-start; }
  .video-thumbs { grid-template-columns: 1fr; }
}
