/* ============================================================
   Niezbędnik Przedsiębiorcy – Landing Page
   Visual system rooted in Ofertomaty.pl
   ============================================================ */

:root {
  /* Brand */
  --orange: #F47C20;
  --accent: var(--orange);          /* driven by Tweaks */
  --accent-ink: #ffffff;
  --indigo: #5B5BE0;                 /* eyebrow */
  --ink: #15162E;                    /* headings / dark navy */
  --ink-soft: #2A2B45;
  --muted: #585972;                  /* body text */
  --muted-2: #82839A;
  --bg: #F6F7FB;                     /* cool off-white */
  --bg-2: #EEF0F7;
  --card: #FFFFFF;
  --line: #E7E9F2;
  --line-soft: #EEF0F6;

  /* Type */
  --font-head: 'Poppins';            /* driven by Tweaks */
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-card: 0 24px 60px -28px rgba(21, 22, 46, .22), 0 4px 14px -8px rgba(21, 22, 46, .12);
  --shadow-soft: 0 14px 40px -24px rgba(21, 22, 46, .25);
  --shadow-btn: 0 14px 28px -12px color-mix(in srgb, var(--accent) 55%, transparent);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.62;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head), system-ui, sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
strong { color: var(--ink-soft); font-weight: 600; }

.dot { color: var(--accent); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 124px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  color: var(--indigo);
  margin-bottom: 18px;
}
.eyebrow--accent { color: var(--accent); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.3,.7,.4,1), box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  padding: 17px 8px;
}
.btn-ghost .arr { transition: transform .18s; color: var(--accent); }
.btn-ghost:hover .arr { transform: translateX(4px); }
.btn-ghost u { text-underline-offset: 5px; text-decoration-thickness: 2px; }

/* soft inline text link with arrow (the "subtelny przycisk") */
.link-soft {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--accent);
  margin-top: 4px;
}
.link-soft .arr { transition: transform .18s; }
.link-soft:hover .arr { transform: translateX(5px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo .pl { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color .15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta { padding: 13px 24px; font-size: 13.5px; border-radius: 10px; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero__sub { margin-top: 26px; max-width: 30em; font-size: clamp(17px, 1.6vw, 19px); }
.hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

/* hero media: spreadsheet mock on orange circle */
.hero__media { position: relative; display: grid; place-items: center; min-height: 440px; }
.hero__circle {
  position: absolute;
  width: min(112%, 520px);
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  z-index: 0;
}
.hero__media .sheet { position: relative; z-index: 1; width: min(100%, 540px); }

/* centered hero variant */
[data-hero="center"] .hero__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
[data-hero="center"] .hero__sub { margin-inline: auto; }
[data-hero="center"] .hero__cta { justify-content: center; }
[data-hero="center"] .hero__media { margin-top: 48px; min-height: unset; }
[data-hero="center"] .hero__circle { width: min(70%, 460px); }

/* ---------- Spreadsheet mock ---------- */
.sheet {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--line);
  font-family: var(--font-body);
}
.sheet__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.sheet__bar .dotrow { display: flex; gap: 6px; }
.sheet__bar .dotrow i { width: 10px; height: 10px; border-radius: 50%; background: #E2E4EE; }
.sheet__bar .dotrow i:nth-child(1) { background: #F7B7A0; }
.sheet__bar .dotrow i:nth-child(2) { background: #FCD9A6; }
.sheet__bar .dotrow i:nth-child(3) { background: #BFE3C4; }
.sheet__title { font-size: 12.5px; font-weight: 600; color: var(--ink); margin-left: 6px; }
.sheet__grid { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.sheet__grid th, .sheet__grid td {
  text-align: left;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  white-space: nowrap;
}
.sheet__grid th { color: var(--muted-2); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; background: #FBFBFE; }
.sheet__grid td:first-child { color: var(--ink); font-weight: 600; }
.sheet__grid .pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.pill--ok { background: #E5F4EA; color: #1F8A5B; }
.pill--warn { background: #FCEEDF; color: #C56A18; }
.pill--due { background: #FBE4E4; color: #C84141; }
.sheet__tabs { display: flex; gap: 4px; padding: 8px 12px; background: #FBFBFE; border-top: 1px solid var(--line-soft); overflow: hidden; }
.sheet__tabs span {
  font-size: 11px; font-weight: 600; color: var(--muted-2);
  padding: 5px 11px; border-radius: 7px; white-space: nowrap;
}
.sheet__tabs span.active { background: var(--accent); color: #fff; }

/* ---------- Film bar (under hero) ---------- */
.filmbar {
  margin-top: clamp(44px, 6vw, 72px);
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  color: #fff;
}
.filmbar__play {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent);
  animation: pulse 2.6s infinite;
}
.filmbar__play svg { margin-left: 3px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); }
  70% { box-shadow: 0 0 0 18px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.filmbar__txt { font-size: clamp(15px, 1.6vw, 17px); color: #C9CAD8; max-width: 60ch; }
.filmbar__txt b { color: #fff; font-weight: 600; }

/* ---------- Placeholder media ---------- */
.ph {
  position: relative;
  border-radius: var(--r-md);
  background-color: #EEF0F7;
  background-image: repeating-linear-gradient(135deg, rgba(21,22,46,.045) 0 2px, transparent 2px 11px);
  border: 1px dashed #C9CCDC;
  display: grid;
  place-items: center;
  min-height: 200px;
  overflow: hidden;
}
.ph__label {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 12px;
  color: #7A7C95;
  letter-spacing: .02em;
  text-align: center;
  padding: 14px 20px;
  max-width: 32ch;
  line-height: 1.5;
}
.ph__label .tag { display: block; font-weight: 700; color: var(--ink); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; }
.ph--film {
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 12px);
  border: 0;
  min-height: clamp(280px, 42vw, 520px);
}
.ph--film .ph__play {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 18px 50px -16px color-mix(in srgb, var(--accent) 70%, transparent);
}
.ph--film .ph__label { color: #B9BAC9; }
.ph--film .ph__label .tag { color: #fff; }

/* ---------- Cards (triada) ---------- */
.triada {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 38px);
  box-shadow: var(--shadow-soft);
  transition: transform .2s cubic-bezier(.3,.7,.4,1), box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent);
  margin-bottom: 22px;
}
.card h3 { font-size: 21px; margin-bottom: 12px; line-height: 1.2; }
.card p { font-size: 16px; }

/* ---------- Generic section header ---------- */
.shead { max-width: 30ch; }
.shead--wide { max-width: 42ch; }
.shead h2 { font-size: clamp(30px, 4vw, 46px); text-wrap: balance; }
@media (min-width: 760px) { .shead h2 { line-height: 1.12; } }
.section__intro { font-size: clamp(17px, 1.8vw, 19px); max-width: 56ch; margin-top: 22px; }

/* Unified editorial section header: title left (wide), intro fills right */
.sec-head { margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head .kicker { margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); text-wrap: balance; line-height: 1.12; max-width: 26ch; }
.sec-head__intro {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--muted);
  line-height: 1.62;
  max-width: 62ch;
  margin-top: 20px;
}
.sec-head--lead .sec-head__intro { color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); }

/* ---------- Problem hook (S2) ---------- */
.problem__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.problem__list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  font-size: 16.5px;
  color: var(--ink-soft);
}
.problem__list .mark {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center; margin-top: 1px;
  background: #FBE4E4; color: #C84141;
}
.problem__close { margin-top: 30px; font-size: clamp(17px, 1.8vw, 19px); color: var(--ink-soft); max-width: 62ch; }

/* ---------- Reframe (S3) ---------- */
.callout {
  margin: 40px 0;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 46px) clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  filter: blur(20px);
}
.callout__label {
  font-family: var(--font-head), system-ui, sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; position: relative;
}
.callout p { font-family: var(--font-head), system-ui, sans-serif; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.32; color: #fff; font-weight: 600; letter-spacing: -.01em; position: relative; }
.reframe__body { font-size: clamp(17px, 1.7vw, 18.5px); max-width: 64ch; }
.reframe__grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(28px, 4vw, 56px); align-items: center; margin: 6px 0 4px; }
.reframe__grid .reframe__body { max-width: none; }
.reframe__ph { min-height: clamp(240px, 30vw, 320px); }
@media (max-width: 860px) { .reframe__grid { grid-template-columns: 1fr; } }
.reframe__body + .reframe__body { margin-top: 22px; }

/* ---------- All in one (S4) ---------- */
.allin {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 72px);
  box-shadow: var(--shadow-soft);
}
.allin__h { font-size: clamp(28px, 3.6vw, 42px); max-width: 26ch; margin-bottom: clamp(28px, 4vw, 40px); text-wrap: balance; }
.allin__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.allin__copy p { font-size: 17px; }
.allin__copy p + p { margin-top: 18px; }
.allin__transition { margin-top: 26px; font-family: var(--font-head), system-ui, sans-serif; font-weight: 600; color: var(--ink); font-size: 18px; }
.allin__mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 20px; display: flex; gap: 13px; align-items: center;
}
.mini svg { color: var(--accent); flex-shrink: 0; }
.mini span { font-size: 14.5px; font-weight: 600; color: var(--ink); font-family: var(--font-head), system-ui, sans-serif; }

/* ---------- Six modules (S5) ---------- */
.modules { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3vw, 44px);
  box-shadow: var(--shadow-soft);
}
.module:nth-child(even) .module__media { order: -1; }
.module__num {
  font-family: var(--font-head), system-ui, sans-serif;
  font-weight: 700; font-size: 14px; color: var(--accent);
  letter-spacing: .04em; margin-bottom: 12px;
}
.module h3 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 8px; }
.module__tag { display: inline-block; font-size: 13px; color: var(--muted-2); font-weight: 600; margin-bottom: 16px; }
.module p { font-size: 16.5px; }
.module .ph { min-height: clamp(220px, 26vw, 300px); }

/* ---------- For whom (S7) ---------- */
.fit { display: grid; gap: 0; }
/* table style */
[data-fit="table"] .fit__cards { display: none; }
[data-fit="cards"] .fit__table { display: none; }

.fit__table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft);
}
.fit__table th { font-family: var(--font-head), system-ui, sans-serif; font-size: 16px; padding: 22px 26px; text-align: left; }
.fit__table th.yes { background: color-mix(in srgb, #1F8A5B 9%, #fff); color: #15694A; border-bottom: 1px solid var(--line); }
.fit__table th.no { background: #FBF1F1; color: #B23A3A; border-bottom: 1px solid var(--line); }
.fit__table td { padding: 18px 26px; font-size: 15.5px; vertical-align: top; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); width: 50%; }
.fit__table tr:last-child td { border-bottom: 0; }
.fit__table td.yes { border-right: 1px solid var(--line); }
.fit__table td .ic { display: inline-flex; margin-right: 9px; vertical-align: -3px; }
.fit__table td.yes .ic { color: #1F8A5B; }
.fit__table td.no .ic { color: #C84141; }

/* cards style */
.fit__cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 26px); }
.fitcard { border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.fitcard--yes { background: color-mix(in srgb, #1F8A5B 6%, #fff); }
.fitcard--no { background: #FBF6F6; }
.fitcard h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.fitcard--yes h3 { color: #15694A; }
.fitcard--no h3 { color: #B23A3A; }
.fitcard ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.fitcard li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-soft); align-items: flex-start; }
.fitcard li svg { flex-shrink: 0; margin-top: 3px; }
.fitcard--yes li svg { color: #1F8A5B; }
.fitcard--no li svg { color: #C84141; }

/* ownership + guarantee blocks */
.assure { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 24px); margin-top: clamp(24px, 3vw, 32px); }
.assure__block { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-soft); }
.assure__block h3 { font-size: 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.assure__block .badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }
.assure__block p { font-size: 15.5px; }
.transparency {
  margin-top: clamp(24px, 3vw, 32px);
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, #fff);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  font-size: 16px; color: var(--ink-soft);
}
.transparency b { color: var(--ink); font-weight: 600; }

/* ---------- CTA + form (S8) ---------- */
.cta {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; left: -10%; top: -30%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 62%);
}
.cta__grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.cta__copy p { color: #C7C8D8; font-size: 17px; margin-top: 20px; }
.cta__copy .close-line { font-family: var(--font-head), system-ui, sans-serif; font-weight: 600; color: #fff; font-size: clamp(20px, 2.4vw, 26px); margin-top: 32px; }
.cta__copy .close-line .dot { color: var(--accent); }

.form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
}
.form h3 { font-size: 21px; margin-bottom: 6px; }
.form__sub { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head), system-ui, sans-serif; font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 15px 16px; font-size: 16px; font-family: var(--font-body);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--bg);
  color: var(--ink); transition: border-color .15s, background .15s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus { outline: none; border-color: var(--accent); background: #fff; }
.form .btn-primary { width: 100%; margin-top: 6px; }
.form__micro { font-size: 12.5px; color: var(--muted-2); margin-top: 16px; line-height: 1.5; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(40px, 5vw, 60px); }
.footer__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.footer .logo { font-size: 21px; }
.footer__tag { font-family: var(--font-head), system-ui, sans-serif; font-weight: 600; color: var(--muted); font-size: 15px; margin-top: 4px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { font-size: 14.5px; color: var(--muted); font-weight: 600; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted-2); }

/* ---------- Hand-drawn accent ---------- */
.handnote { position: relative; display: inline-flex; align-items: center; gap: 8px; font-family: 'Caveat', cursive; font-size: 26px; color: var(--muted-2); transform: rotate(-3deg); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__media { order: -1; min-height: 320px; margin-bottom: 8px; }
  .hero__circle { width: min(80%, 380px); }
  .allin__grid, .cta__grid, .module { grid-template-columns: 1fr; }
  .module:nth-child(even) .module__media { order: 0; }
  .module__media { order: -1; }
  .triada { grid-template-columns: 1fr; }
  .problem__list { grid-template-columns: 1fr; }
  .assure, .fit__cards, .allin__mini { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .fit__table th, .fit__table td { font-size: 13.5px; padding: 14px 16px; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .filmbar { flex-direction: column; align-items: flex-start; }
  .hero__cta { width: 100%; }
  .hero__cta .btn-primary { flex: 1; }
}
