/* =========================================================================
   Mediacje biznesowe — Piotr Sarota
   Design system: brandbook lvl7.pl (marzec 2026)
   Wygląd wg tokenów brandbooka; mechanika (head/GTM/nav-behavior) wg repo.
   ========================================================================= */

/* ------------------------------- Tokens -------------------------------- */
:root {
  --color-navy: #172356;
  --color-black: #020224;
  --color-teal: #1FA77F; /* deep teal — pattern */
  --color-mint: #5DE4C7; /* akcent/label (system LP) */
  --color-teal-hover: #178F6A; /* hover: wartość sugerowana — do potwierdzenia z lvl7 */
  --color-coral: #E15951; /* KOLOR AKCJI / CTA (system LP) */
  --color-coral-hover: #C94A43;
  --color-coral-light: #F37972;
  --color-purple: #7357A5;
  --color-blue: #478FCD;
  --color-light-blue: #A3AFD8;
  --color-near-white: #F7F8FF;

  --text-primary: #FFFFFF;
  --text-secondary: #E5E7EB;
  --text-muted: #9CA3AF;

  --bg-hero: #020224;
  --bg-section: #172356;

  --font-heading: 'Fustat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 8px;
  --radius-button: 8px;
  --radius-pill: 100px;
  --radius-image: 12px;

  --shadow-card: 0 4px 24px rgba(2, 2, 36, 0.4);
  --shadow-cta: 0 8px 32px rgba(225, 89, 81, 0.3);

  --maxw: 1144px;
  --maxw-narrow: 720px;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-hero);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }

/* ------------------------------ Layout --------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 96px 0; overflow: hidden; }
.section--hero {
  background-color: #020224;
  background-image: url("public/images/right-stripes.svg"), url("public/images/left-stripes.svg"), linear-gradient(135deg, #020224 0%, #172356 100%);
  background-repeat: no-repeat;
  background-position: top right, top left, center;
  background-size: auto, auto, cover;
  padding-top: 124px;
}
@media (max-width: 479px) {
  .section--hero { background-image: url("public/images/mobile-stripes.svg"), linear-gradient(135deg, #020224 0%, #172356 100%); background-position: top center, center; background-size: contain, cover; }
}
.section--navy { background: linear-gradient(180deg, #020224 0%, #172356 16%, #172356 100%); }
.section--black { background: linear-gradient(180deg, #172356 0%, #020224 16%, #020224 100%); }
.narrow { max-width: var(--maxw-narrow); margin-left: auto; margin-right: auto; }

/* ---------------------------- Typography ------------------------------- */
h1, h2, h3 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.15; }
h1 { font-weight: 700; font-size: clamp(40px, 6vw, 64px); line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-weight: 700; font-size: clamp(30px, 4vw, 36px); line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-weight: 600; font-size: 24px; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin: 0 0 16px;
}
.lead {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.7;
  color: var(--text-secondary);
}
.body-text { font-size: 17px; line-height: 1.6; color: var(--text-secondary); }
.body-text + .body-text { margin-top: 20px; }

.grad-text {
  background: linear-gradient(90deg, #F37972, #7357A5, #478FCD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ------------------------------ Buttons -------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  background: var(--color-coral);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn-primary:hover {
  background: var(--color-coral-hover);
  box-shadow: var(--shadow-cta);
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--color-near-white);
  outline-offset: 3px;
}
.btn-primary svg { width: 18px; height: 18px; flex: none; }


.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; line-height: 1.2;
  color: var(--color-near-white); background: transparent;
  border: 1.5px solid var(--color-coral); border-radius: var(--radius-pill);
  padding: 13px 28px; cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn-outline:hover { background: var(--color-coral); color: #fff; box-shadow: var(--shadow-cta); transform: translateY(-1px); }
.btn-outline:focus-visible { outline: 3px solid var(--color-near-white); outline-offset: 3px; }
.btn-outline svg { width: 18px; height: 18px; flex: none; }

/* --------------------------- Frosted glass ----------------------------- */
.glass {
  background: rgba(23, 35, 86, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}


/* -------- Brandowy pattern (reużyte assety systemu LP) -------- */
.deco { position: absolute; z-index: 0; pointer-events: none; user-select: none; }
.deco-stripes-r { top: -6%; right: -6%; width: min(720px, 62%); height: auto; }
.deco-stripes-l { bottom: -8%; left: -7%; width: min(600px, 52%); height: auto; transform: scaleX(-1); }
.deco-glow { width: 520px; height: auto; opacity: .85; }
.deco-glow--tr { top: -10%; right: 0; }
.deco-stripes-hl { top: -10%; left: -9%; width: min(560px, 46%); height: auto; }
.hero .deco-glow { width: 660px; opacity: .95; top: -16%; right: -2%; }
@media (max-width: 640px) {
  .deco-stripes-r { width: 90%; right: -20%; top: -2%; }
  .deco-stripes-l { width: 85%; }
  .deco-glow { width: 340px; }
  .deco-stripes-hl { width: 78%; left: -22%; }
}

/* -------------------- Decorative pattern (SVG) ------------------------- */
/* Kierunek zawsze: lewy-dół -> prawy-góra. Opacity 10-30%. */
.pattern { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.section > .container { position: relative; z-index: 1; }

/* ============================ NAVIGATION =============================== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2, 2, 36, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo img { height: 30px; width: auto; }
.nav-groups { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a, .nav-links span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--color-mint); }
.nav-links .is-active {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-mint);
  padding-bottom: 2px;
}
.nav-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }
.nav-cta { padding: 10px 20px; font-size: 15px; }
.burger {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  color: var(--text-primary);
}
.burger svg { width: 24px; height: 24px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-hero);
  padding: 24px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .25s ease, visibility .25s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-top { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.mobile-top img { height: 28px; }
.mobile-close { background: transparent; border: none; color: var(--text-primary); cursor: pointer; width: 44px; height: 44px; padding: 10px; }
.mobile-close svg { width: 24px; height: 24px; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-links a, .mobile-links span {
  font-family: var(--font-heading); font-weight: 600; font-size: 22px;
  color: var(--text-secondary); padding: 12px 0;
}
.mobile-links .is-active { color: var(--color-mint); }
.mobile-menu .btn-primary { margin-top: 24px; align-self: flex-start; }

/* ============================== HERO ================================== */
.hero-content { max-width: 860px; }
.hero h1 { margin-bottom: 24px; }
.hero .hero-sub { max-width: 780px; margin-bottom: 40px; }

.hero-list-label {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 20px;
}
.situations {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 44px;
}
.situation {
  padding: 22px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; line-height: 1.45; color: var(--text-primary);
}
.sit-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-mint); background: rgba(93, 228, 199, 0.10);
  border: 1px solid rgba(93, 228, 199, 0.28);
}
.sit-icon svg { width: 20px; height: 20px; }

/* ============================== INTRO ================================= */
.intro { text-align: left; }
.intro::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 65% at 80% 42%, rgba(115, 87, 165, 0.20), transparent 72%);
}
.intro-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.intro .accent-divider { margin: 0 0 22px; }
.intro-head h2 { margin: 0; font-size: clamp(30px, 3.5vw, 40px); line-height: 1.18; }
.intro-lead { border-left: 1px solid rgba(255, 255, 255, 0.10); padding-left: 44px; }
.intro-lead .body-text { max-width: none; margin: 0; font-size: 18px; line-height: 1.7; }
@media (max-width: 860px) {
  .intro-inner { grid-template-columns: 1fr; gap: 26px; }
  .intro-lead { border-left: none; padding-left: 0; }
}

/* ============================= PROBLEM =============================== */
.problem h2 { margin-bottom: 20px; }
.problem .lead { margin-bottom: 36px; max-width: 820px; }
.problem-body { max-width: 820px; }
.problem-stripes-r { top: -8%; right: -9%; width: min(540px, 42%); }
/* ---- Problem: siatka kart + box zwrotu (redesign) ---- */
.problem-head { max-width: 780px; margin-bottom: 44px; }
.problem-head h2 { margin-bottom: 18px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.problem-card { padding: 30px 30px; }
.problem-card .pc-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-mint); background: rgba(93, 228, 199, 0.10); border: 1px solid rgba(93, 228, 199, 0.28);
}
.problem-card .pc-icon svg { width: 20px; height: 20px; }
.problem-card p { font-size: 16px; line-height: 1.62; color: var(--text-secondary); margin: 0; }
.problem-relief-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 0 0 40px; }
.problem-relief { position: relative; overflow: hidden; margin: 0; padding: 32px 36px; border-left: 4px solid var(--color-mint); }
.problem-relief::after { content: ""; position: absolute; right: -8%; top: -45%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(93,228,199,0.16), transparent 70%); pointer-events: none; }
.problem-relief p { position: relative; font-size: 18px; line-height: 1.66; color: var(--text-primary); }
.problem-relief p + p { margin-top: 14px; }
@media (max-width: 760px) { .problem-grid, .problem-relief-grid { grid-template-columns: 1fr; } }
.highlight-box {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--color-mint);
}
.highlight-box p + p { margin-top: 16px; }
.section-cta { margin-top: 40px; }
.section-cta p { font-size: 18px; color: var(--text-primary); margin-bottom: 20px; }


/* ============================ SOLUTION =============================== */
.solution .lead { margin-bottom: 48px; max-width: 760px; }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.solution-card { padding: 32px 30px; position: relative; }
.solution-card .sc-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.solution-card .sc-icon svg { width: 23px; height: 23px; }
.solution-card .sc-num {
  position: absolute; top: 28px; right: 30px;
  font-family: var(--font-heading); font-weight: 700; font-size: 26px; line-height: 1; opacity: .55;
}
.solution-card p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.sc-1 { background: rgba(31, 167, 127, 0.10); border-color: rgba(31, 167, 127, 0.30); }
.sc-1 .sc-icon { background: rgba(31, 167, 127, 0.18); color: #5DE4C7; }
.sc-1 .sc-num { color: #5DE4C7; }
.sc-2 { background: rgba(115, 87, 165, 0.14); border-color: rgba(115, 87, 165, 0.34); }
.sc-2 .sc-icon { background: rgba(115, 87, 165, 0.24); color: #B69BE0; }
.sc-2 .sc-num { color: #B69BE0; }
.sc-3 { background: rgba(225, 89, 81, 0.10); border-color: rgba(225, 89, 81, 0.30); }
.sc-3 .sc-icon { background: rgba(225, 89, 81, 0.18); color: #F37972; }
.sc-3 .sc-num { color: #F37972; }
.accent-wrap { text-align: center; }
.solution-stripes { top: -8%; right: -9%; width: min(540px, 42%); }
.intro-stripes { top: -12%; right: -10%; width: min(460px, 38%); }
.solution .accent-wrap { text-align: left; }
.solution .accent-wrap .accent-divider { margin: 0 0 22px; }
.solution .accent-line { margin: 0; max-width: 860px; }
.accent-divider {
  display: inline-block; width: 56px; height: 4px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #F37972, #7357A5, #478FCD); margin-bottom: 24px;
}
.accent-line {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.35;
  color: var(--text-primary); max-width: 820px; margin: 0 auto;
}

/* ============================ PROCESS =============================== */
/* ---- Proces: jasny panel „przełamania" (wzorzec EXEC note-elm3) ---- */
.process--light {
  position: relative; z-index: 2; margin-top: -74px; overflow: hidden;
  background-color: #E6EEF9;
  background-image: url("public/images/process-bg.svg");
  background-repeat: no-repeat; background-position: center top; background-size: 160%;
  border-radius: 56px;
  padding-top: 150px; padding-bottom: 132px;
}
.process--light h2 { color: #020224; margin-bottom: 24px; }
.process--light .process-intro { color: #3C4257; }
.process--light .process-steps { border-top-color: rgba(2, 2, 36, 0.12); }
.process--light .process-step { border-bottom-color: rgba(2, 2, 36, 0.12); }
.process--light .step-num { color: #6B7394; }
.process--light .step-title { color: #020224; }
.process--light .process-step summary::after { color: #178F6A; }
.process--light .process-step summary:focus-visible { outline-color: #172356; }
.process--light .step-body p { color: #3C4257; }
.process--light .process-note { color: #6B7280 !important; border-left-color: rgba(23, 143, 106, 0.45); }
.process--light .chip { color: #178F6A; border-color: rgba(23, 143, 106, 0.45); }
.process--light .process-outro { color: #3C4257; }


.process-intro { max-width: 820px; margin-bottom: 40px; }
.process-steps { list-style: none; margin: 0 0 34px; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.10); position: relative; z-index: 1; }
.process-step { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.process-step summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 22px; padding: 26px 6px; }
.process-step summary::-webkit-details-marker { display: none; }
.step-num { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-mint); flex: none; letter-spacing: 0.04em; }
.step-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(18px, 2.1vw, 21px); line-height: 1.3; color: var(--text-primary); margin: 0; flex: 1; }
.process-step summary::after { content: "+"; font-family: var(--font-heading); font-weight: 400; font-size: 26px; line-height: 1; color: var(--color-mint); flex: none; }
.process-step[open] summary::after { content: "\2212"; }
.process-step summary:focus-visible { outline: 3px solid var(--color-near-white); outline-offset: 3px; border-radius: 6px; }
.step-body { padding: 0 6px 30px 54px; }
.step-body p { font-size: 16px; line-height: 1.65; color: var(--text-secondary); margin: 0; }
.step-body p + p { margin-top: 14px; }
.process-note { padding-left: 16px; border-left: 3px solid rgba(93, 228, 199, 0.5); color: var(--text-muted) !important; }
.step-tags { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font-family: var(--font-heading); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-mint); border: 1px solid rgba(93, 228, 199, 0.40); border-radius: 100px; padding: 5px 14px; }
.process-outro { font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 860px; }

/* ============================== ABOUT =============================== */
.about { position: relative; }
.about::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(38% 55% at 10% 42%, rgba(115, 87, 165, 0.22), transparent 70%);
}
.about-grid { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-beam {
  position: absolute; top: -16%; right: -6%; width: 300px; height: 560px; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(93, 228, 199, 0.55) 0%, rgba(31, 167, 127, 0.12) 50%, transparent 80%);
  transform: rotate(26deg); filter: blur(34px); border-radius: 120px;
}
.about-photo {
  position: relative; z-index: 1; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, rgba(71, 143, 205, 0.16), rgba(115, 87, 165, 0.16));
  box-shadow: var(--shadow-card);
}
.about-photo img { width: 100%; height: auto; display: block; }
.about-text h2 { margin-bottom: 24px; }
.about-text .body-text + .body-text { margin-top: 18px; }
.credentials {
  margin-top: 28px; padding: 18px 24px;
  border-left: 3px solid var(--color-mint);
  font-size: 17px; line-height: 1.6; color: var(--text-primary);
}
.badges { display: flex; align-items: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.badges img { width: auto; display: block; }
.badge-pcc { height: 66px; }
.badge-gallup { height: 66px; }
.trust-strip {
  margin-top: 28px; font-family: var(--font-heading); font-weight: 600;
  font-size: 15px; line-height: 1.8; color: var(--text-secondary);
}


/* ============================== OFFER =============================== */
.offer { position: relative; }
.offer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(36% 50% at 8% 46%, rgba(115, 87, 165, 0.20), transparent 70%);
}
.offer-stripes { top: -6%; right: -9%; width: min(520px, 42%); }
.offer-head { margin-bottom: 44px; }
.offer-head .accent-divider { margin: 0 0 20px; }
.offer-head h2 { margin: 0; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.offer-left { display: flex; flex-direction: column; align-items: flex-start; }
.offer-cta { margin-top: 38px; }
.checklist { display: flex; flex-direction: column; gap: 20px; }
.checklist li {
  position: relative; padding-left: 40px; font-size: 17px; line-height: 1.5; color: var(--text-primary);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: var(--radius-pill);
  background: rgba(31, 167, 127, 0.15); border: 1px solid rgba(31, 167, 127, 0.5);
}
.checklist li::after {
  content: ""; position: absolute; left: 8px; top: 7px;
  width: 10px; height: 6px; border-left: 2px solid var(--color-mint); border-bottom: 2px solid var(--color-mint);
  transform: rotate(-45deg);
}
.pricing-card {
  padding: 32px 34px 26px;
  background: linear-gradient(160deg, rgba(115, 87, 165, 0.22) 0%, rgba(23, 35, 86, 0.6) 60%);
  border: 1px solid rgba(179, 155, 224, 0.28);
}
.pricing { width: 100%; border-collapse: collapse; }
.pricing th, .pricing td { text-align: left; padding: 17px 4px; }
.pricing thead th {
  font-family: var(--font-heading); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-mint);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing tbody td { border-bottom: 1px solid rgba(255, 255, 255, 0.09); color: var(--text-secondary); font-size: 16px; }
.pricing tbody td:first-child { color: var(--text-primary); font-weight: 500; }
.pricing tbody tr:last-child td { border-bottom: none; }
.pricing td:last-child, .pricing th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pricing tbody td:last-child { font-family: var(--font-heading); font-weight: 700; font-size: 21px; color: var(--text-primary); }
.pricing .row-free td:last-child { color: var(--color-mint); }
.pricing-note { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-top: 16px; }
.pricing-vat { margin-top: 8px; }

/* ============================ FINAL CTA (dwukolumna wg EXEC) ========= */
.final-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.final-left .eyebrow { color: var(--color-mint); }
.final-left h2 { margin-bottom: 20px; }
.final-lead { max-width: 520px; margin: 0 0 12px; }
.final-note { text-align: left; margin: 6px 0 34px; }
.final-note .accent-divider { margin: 0 0 18px; }
.final-note .accent-line { text-align: left; max-width: none; margin: 0; font-size: clamp(20px, 2.3vw, 25px); }
.final-contact-block { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--text-primary); transition: color .18s ease; }
.contact-row:hover { color: var(--color-mint); }
.contact-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--color-mint); background: rgba(93, 228, 199, 0.12); border: 1px solid rgba(93, 228, 199, 0.30); }
.contact-ic svg { width: 20px; height: 20px; }

.final-card-wrap { position: relative; }
.card-bar { position: absolute; border-radius: 100px; z-index: 0; }
.card-bar--tr { top: -22px; right: -34px; width: 170px; height: 58px; transform: rotate(-42deg); background: linear-gradient(90deg, #5DE4C7, #7357A5); }
.card-bar--bl { bottom: -24px; left: -34px; width: 150px; height: 54px; transform: rotate(-42deg); background: linear-gradient(90deg, #478FCD, #E15951); }
.final-card { position: relative; z-index: 1; overflow: hidden; background: #F7F8FF; border-radius: 24px; padding: 44px 44px 40px; box-shadow: 0 24px 64px rgba(2, 2, 36, 0.55); }
.final-card .final-sub { margin: 0 0 28px; max-width: none; color: #3C4257; font-size: 19px; line-height: 1.6; }
.final-card .btn-primary { width: 100%; justify-content: center; font-size: 17px; }
.final-card .low-threshold { margin-top: 20px; font-size: 15px; color: #4B5266; }
.final-card .low-threshold a { color: var(--color-coral); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Formularz kontaktowy (design EXEC, mailto) ---- */
.form-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(23px, 2.5vw, 29px); line-height: 1.2; color: #020224; margin: 0 0 26px; }
.contact-form .field { margin-bottom: 22px; }
.contact-form label { display: block; font-size: 14px; color: #5A6178; margin-bottom: 8px; }
.contact-form .req { color: var(--color-coral); }
.contact-form input, .contact-form textarea {
  width: 100%; box-sizing: border-box; background: transparent; border: none;
  border-bottom: 1.5px solid rgba(2, 2, 36, 0.18); padding: 8px 2px;
  font-family: var(--font-body); font-size: 16px; color: #020224;
  transition: border-color .18s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--color-coral); }
.contact-form textarea { resize: vertical; min-height: 74px; }
.form-consent { font-size: 12.5px; line-height: 1.5; color: #6B7280; margin: 6px 0 22px; }
.form-consent a { color: var(--color-coral); text-decoration: underline; text-underline-offset: 2px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: #fff;
  background: #172356; border: 1.5px solid var(--color-coral); border-radius: var(--radius-pill);
  padding: 14px 30px; transition: transform .2s ease, box-shadow .2s ease;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(2, 2, 36, 0.35); }
.btn-submit:focus-visible { outline: 3px solid var(--color-coral); outline-offset: 3px; }
.btn-submit svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .final-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================== FAQ =============================== */
.faq .container > h2 { margin-bottom: 40px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { padding: 0 26px; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 18px; line-height: 1.4;
  color: var(--text-primary); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; margin-top: 6px;
  width: 12px; height: 12px; border-right: 2px solid var(--color-mint); border-bottom: 2px solid var(--color-mint);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 0 24px; }
.faq-answer p { font-size: 16px; line-height: 1.65; color: var(--text-secondary); max-width: 62ch; }
.faq-item summary:focus-visible { outline: 3px solid var(--color-near-white); outline-offset: 4px; border-radius: 4px; }

/* ============================== FOOTER ============================= */
.site-footer {
  /* płynne przejście z sekcji FAQ (#172356) do ciemnej stopki — bez poziomego szwu */
  background: linear-gradient(180deg, #172356 0%, #0b1038 46%, #020224 150px, #020224 100%);
  padding: 76px 0 56px;
}
.footer-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  height: 30px;
  width: auto;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color .18s ease;
}
.footer-social a:hover {
  color: var(--color-coral);
}
.footer-social svg {
  width: 22px;
  height: 22px;
}
.footer-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-copy a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copy a:hover {
  color: var(--color-coral);
}
.footer-company {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-company-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .nav-links, .nav-sep, .nav-cta { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .situations { grid-template-columns: repeat(2, 1fr); }
  .solution-cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-media { order: -1; max-width: 420px; }
  .about-beam { display: none; }
  .offer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .situations { grid-template-columns: 1fr; }
  .highlight-box { padding: 24px; }
}


@media (max-width: 560px) {
  .process--light { border-radius: 40px; padding-top: 120px; padding-bottom: 104px; margin-top: -56px;
    background-image: url("public/images/process-mobile.svg"); background-size: 200%; }
}

/* Dostępność: redukcja ruchu */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
