@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eef7f6;
  --bg-alt: rgba(188, 222, 220, 0.22);
  --surface: #ffffff;
  --surface-muted: #f5fbfa;
  --navy: #0a5d58;
  --navy-deep: #073f3d;
  --text: #123735;
  --text-soft: #61727c;
  --line: rgba(10, 93, 88, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #0f7f73;
  --accent-deep: #0a5d58;
  --accent-soft: rgba(15, 127, 115, 0.14);
  --accent-glow: rgba(80, 170, 190, 0.16);
  --border-gold: rgba(15, 127, 115, 0.22);
  --shadow-sm: 0 10px 30px rgba(20, 83, 91, 0.07);
  --shadow-md: 0 18px 50px rgba(20, 83, 91, 0.11);
  --glow-gold: 0 0 0 1px rgba(15, 127, 115, 0.10), 0 12px 34px rgba(80, 170, 190, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --section-space: clamp(72px, 10vw, 132px);
  --transition: 680ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 900ms cubic-bezier(0.22, 1, 0.36, 1);
  --hero-parallax: 0px;
}

@media (min-width: 1024px) {
  :root {
    --section-space: clamp(56px, 6vw, 96px);
  }
}

html {
  background: var(--bg);
  max-width: 100%;
  overflow-x: hidden;
}

body.theme-home {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f6fbfb 0%, #eef7f6 100%);
  font-family: Manrope, sans-serif;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-x: hidden;
}

.top-notice {
  position: relative;
  z-index: 20;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 127, 115, 0.16);
  box-shadow: 0 8px 26px rgba(20, 83, 91, 0.06);
}

.top-notice__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 0;
  padding: 9px 0;
  animation: topNoticeMarquee 24s linear infinite;
  will-change: transform;
}

.top-notice__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 34px;
}

.top-notice__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
} 

.top-notice__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #58b9c7;
  box-shadow: 0 0 0 6px rgba(88, 185, 199, 0.14);
}

.top-notice__link:hover {
  color: #073f3d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-notice__item[aria-hidden="true"] .top-notice__link {
  pointer-events: none;
}

@keyframes topNoticeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 720px) {
  .top-notice__track {
    padding: 8px 0;
    animation-duration: 18s;
  }

  .top-notice__item {
    padding: 0 22px;
  }

  .top-notice__link {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-notice__track {
    animation: none;
  }
}

h1,
h2,
h3,
.hero__brand,
.stat-card__value {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.theme-home main > section:not(.hero) p:not([class]) {
  color: var(--text-soft);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--light {
  background: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.btn--light {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.btn--light:hover {
  background: #fff;
  box-shadow: var(--glow-gold);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

body.theme-home main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home2-highlight-wrap {
  font-family: Manrope, sans-serif;
}

.home2-highlight-wrap > .why-m2l__highlight {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  margin-top: clamp(28px, 5vw, 52px);
}

.eyebrow {
  margin-left: 6px;
  margin-bottom: 6px;
  color: #0f7f73;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
}

.section--hero {
  overflow: hidden;
  background:
  rgba(245,251,250,0.94);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
  min-height: min(620px, 72svh);
}



.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 251, 0.92));
  color: #0b3f3c;
}

.hero__media {
  position: relative;
  background: #dfeaec;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: brightness(1.02) contrast(1.08) saturate(0.95);
  pointer-events: none;
  filter:
  brightness(0.88)
  contrast(1.05)
  saturate(0.85);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    /* lekki wash koloru brandowego */
    linear-gradient(
      180deg,
      rgba(15, 127, 116, 0.277),
      rgba(7, 63, 61, 0.35)
    ),

    /* soft fade od lewej (pod tekst) */
    linear-gradient(
      90deg,
      rgba(238,247,246,0.35) 0%,
      rgba(238,247,246,0.15) 25%,
      transparent 55%
    );

  pointer-events: none;
}

.hero__eyebrow {
  margin-left: 6px;
  margin-bottom: 14px;
  color: rgba(14, 68, 57, 0.85);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(-30px)
}

.hero__headline {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 600;
  color: #073f3d;
  text-shadow: none;
}

.hero .hero__copy .hero__text,
.hero__text {
  color: #536b75;
}

.hero__text,
.why-m2l__highlight-content p {
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
  text-align: justify;
  letter-spacing: -0.4px;
  padding-bottom: 13px;
}

.hero__text {
  max-width: 56ch;
  margin-top: 24px;
}

.hero__text strong {
  color: #0a5d58;
}

.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -150px;
  padding-block: clamp(56px, 6vw, 82px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #f5fbfb 100%) !important;
  color: #123735;

  box-shadow: 0 -22px 60px rgba(20, 83, 91, 0.08);
}

.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card {
  padding: 12px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 127, 115, 0.12);
  box-shadow: 0 18px 42px rgba(20, 83, 91, 0.08);
  backdrop-filter: blur(12px);
}

.stats-section .stats-grid > .stat-card:nth-child(-n + 3) {
  background: rgba(255, 255, 255, 0.88);
}

.stat-card__value {
  display: block;
  flex: 0 0 auto;
  line-height: 1;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.055em;
  background: linear-gradient(180deg, #0a5d58 0%, #168f83 46%, #58b9c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -18px;
  width: 160px;
  height: 54px;
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
}

.stat-card__label {
  display: block;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.section__header {
  margin-bottom: 0;
}

.section-title2 {
  max-width: 23ch;
  margin: 0;
  color: #073f3d;
  font-size: clamp(2.6rem, 3.2vw, 3.55rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-scrolled .hero__eyebrow {
  transform: translateY(14px);
  font-size: 1.3rem;
}

body.is-scrolled .hero__copy {
  transform: none;
}

body.is-scrolled .hero__headline {
  max-width: 14ch;
}

.hero__brand-wrap {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 700px;
  transition: filter 0.6s ease, transform 0.4s ease;
}

.hero__brand-wrap .hero__brand {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  transform: scale(1);
  transform-origin: left center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  will-change: transform;
  filter:
    drop-shadow(0 0 10px rgba(80, 170, 190, 0.35))
    drop-shadow(0 0 26px rgba(15, 127, 115, 0.26))
    drop-shadow(0 0 46px rgba(80, 170, 190, 0.16));
}

body.is-scrolled .hero__brand-wrap {
  transform: translateY(60px);
  margin-bottom: 14px;
  filter: none;
}

body.is-scrolled .hero__brand {
  transform: scale(0.72);
  filter: none;
}

.why-m2l__highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  margin-top: 24px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: calc(var(--radius-lg) + 8px);
  overflow: hidden;
  color: #123735;
  background:
    radial-gradient(circle at 18% 18%, rgba(158, 215, 228, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 248, 248, 0.96) 100%);
  border: 1px solid rgba(15, 127, 115, 0.12);
  box-shadow: 0 24px 60px rgba(20, 83, 91, 0.09);
}

.why-m2l__highlight::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(15, 127, 115, 0.08);
  pointer-events: none;
}

.why-m2l__highlight-content,
.why-m2l__mini-grid {
  position: relative;
  z-index: 1;
}

.why-m2l__highlight-content h3 {
  max-width: 12ch;
  margin: 0;
  color: #073f3d;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.why-m2l__highlight-content p {
  max-width: 58ch;
  margin-top: 18px;
  color: #61727c;
}

.why-m2l__cta {
  margin-top: 28px;
}

.why-m2l__mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.why-m2l__mini {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 127, 115, 0.12);
  box-shadow: 0 14px 34px rgba(20, 83, 91, 0.06);
  backdrop-filter: blur(12px);
}


.why-m2l__mini{
  background-color: (125, 214, 182, 0.11)
}
.why-m2l__mini h4 {
  margin: 0;
  color: #0a5d58;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.why-m2l__mini p {
  margin-top: 8px;
  color: #61727c;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .hero__inner,
  .why-m2l__highlight {
    grid-template-columns: 1fr;
  }

  .why-m2l__highlight-content h3 {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero__brand {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
  }

  .hero__headline {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
}

@media (max-width: 768px) {
  .hero__video {
    object-fit: cover;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }

  .hero__eyebrow {
    transform: none !important;
    margin-bottom: 10px;
  }

  .hero__brand-wrap {
    max-width: min(92vw, 420px);
    width: 100%;
    transform: none !important;
  }

  .hero__brand-wrap .hero__brand {
    transform: none !important;
    width: 100%;
  }

  body.is-scrolled .hero__eyebrow {
    transform: none !important;
  }

  body.is-scrolled .hero__brand-wrap {
    transform: translateY(32px) !important;
    filter: none !important;
  }

  body.is-scrolled .hero__brand-wrap .hero__brand {
    transform: scale(0.82) !important;
    filter: none !important;
  }

  .hero__headline {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
    max-width: 11ch;
  }

  body.is-scrolled .hero__brand {
    transform: translateX(0);
  }

  .why-m2l__highlight {
    margin-top: 18px;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .why-m2l__highlight-content h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .home2-highlight-wrap > .why-m2l__highlight {
    width: min(var(--container), calc(100% - 32px));
  }
}

/* --- m2l-dev „w budowie”: brand tekstowy, lista, footer --- */

.hero__brand-wrap .hero__brand-text {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  transform: translateY(-30px);
  transform-origin: left center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  will-change: transform;
  max-width: 100%;
  overflow-wrap: anywhere;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #dff3f1 32%,
    #9ed7e4 58%,
    rgba(236, 250, 249, 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(80, 170, 190, 0.35))
    drop-shadow(0 0 26px rgba(15, 127, 115, 0.26))
    drop-shadow(0 0 46px rgba(80, 170, 190, 0.16));
}

body.is-scrolled .hero__brand-wrap .hero__brand-text {
  transform: scale(0.82);
  filter: none;
}

.hero__copy .hero__headline {
  max-width: min(28ch, 100%);
}

body.is-scrolled .hero__headline {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.highlight-list {
  margin: 22px 0 0;
  padding: 0;
  max-width: 58ch;
  list-style: none;
}

.highlight-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 1.25em;
  color: #61727c;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dff3f1, #0f7f73);
  box-shadow: 0 0 10px rgba(80, 170, 190, 0.35);
}

.highlight-list li:last-child {
  margin-bottom: 0;
}

.home2-highlight-wrap .why-m2l__highlight-content h3 {
  max-width: min(26ch, 100%);
}

.site-footer {
  padding: clamp(40px, 6vw, 72px) 0;
  background: #073f3d;
  color: rgba(236, 250, 249, 0.66);
  font-family: Manrope, sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer .container {
  max-width: 56ch;
}

.site-footer__line {
  margin: 0;
  color: rgba(236, 250, 249, 0.72);
  font-weight: 500;
}

.site-footer__note {
  margin: 16px 0 0;
  color: rgba(236, 250, 249, 0.58);
  font-size: 0.9rem;
}

.site-footer a {
  color: #9ed7e4;
  text-decoration: underline;
  text-decoration-color: rgba(158, 215, 228, 0.44);
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: #dff3f1;
  text-decoration-color: rgba(223, 243, 241, 0.62);
}

body.theme-home main section.home2-highlight-wrap .why-m2l__highlight-content > p {
  color: #61727c;
}

@media (max-width: 768px) {
  .hero__brand-wrap {
    max-width: min(100%, 92vw);
  }

  .hero__brand-wrap .hero__brand-text {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    transform: none !important;
    filter:
      drop-shadow(0 0 8px rgba(80, 170, 190, 0.28))
      drop-shadow(0 0 20px rgba(15, 127, 115, 0.2));
  }

  body.is-scrolled .hero__brand-wrap .hero__brand-text {
    transform: scale(0.82) !important;
    filter: none !important;
  }

  .hero__copy .hero__headline {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .section--hero {
    height: auto;

  }



  .stats-section {
    margin-top: -32px;
    padding-left: 0;
    padding-block: 44px 54px;
  }
}
/* korekta: stats wyżej pod hero */
@media (min-width: 901px) {
  .hero__inner {
    padding-bottom: 80px;
  }


}

/* ===== TOP NOTICE — UPGRADE ===== */

.top-notice {
  position: relative;
  z-index: 50;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f4fbfb 40%,
    #eef9fb 100%
  );
  border-bottom: 1px solid rgba(15, 127, 115, 0.14);
  box-shadow: 0 6px 24px rgba(20, 83, 91, 0.05);
}

/* glow linia */
.top-notice::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 185, 199, 0.6),
    transparent
  );
}

/* track */
.top-notice__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  animation: topNoticeMarquee 18s linear infinite;
}

/* item */
.top-notice__item {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

/* link */
.top-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a5d58;
  text-decoration: none;
  position: relative;
}

/* pulsująca kropka */
.top-notice__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fb6c4;
  box-shadow:
    0 0 0 0 rgba(47, 182, 196, 0.6);
  animation: pulseDot 1.8s infinite;
}

/* hover */
.top-notice__link:hover {
  color: #073f3d;
}

/* delikatny underline on hover */
.top-notice__link::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15,127,115,0.4),
    rgba(88,185,199,0.8)
  );
  transition: width 0.3s ease;
}

.top-notice__link:hover::after {
  width: calc(100% - 22px);
}

/* animacje */
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 182, 196, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(47, 182, 196, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 182, 196, 0);
  }
}

@keyframes topNoticeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@media (max-width: 900px) {
  .section--hero {
    min-height: auto;
    padding-block: 32px 72px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy,
  .hero__media {
    min-height: auto;
    border-radius: 28px;
  }

  .hero__copy {
    padding: 34px 26px;
  }

  .hero__media {
    min-height: 360px;
  }

  .hero__headline {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .stats-section {
    margin-top: -38px;
  }
}


.hero .reveal {
  opacity: 1;
  transform: none;
}

.section--hero {
  padding-block: 42px 72px;
}

.hero__inner {
  padding-bottom: 0 !important;
}

@media (min-width: 901px) {
  .section--hero {
    min-height: 78svh;
    padding-block: clamp(64px, 8vw, 110px);
    background:
      radial-gradient(circle at 16% 20%, rgba(88, 185, 199, 0.12), transparent 34%),
      linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%);
  }

  .hero__inner {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
    padding-bottom: 0 !important;
  }

  .hero__copy,
  .hero__media {
    min-height: 560px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .hero__copy {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 72px clamp(56px, 5vw, 96px) 72px 48px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,251,250,0.94));
  }

  .hero__copy > * {
    width: min(520px, 100%);
  }

  .hero__media {
    position: relative;
    background: #dfeaec;
    overflow: hidden;
  }

  .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

}

/* === MINI TIMELINE (zielony) === */

.process-mini {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 52px;
}

/* linia */
.process-mini::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(15,127,115,0.25),
    rgba(15,127,115,0.08)
  );
}

/* item */
.process-mini__item {
  position: relative;
}

/* kropka */
.process-mini__dot {
  position: absolute;
  left: -30px;
  top: 28px;

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: var(--accent);
  box-shadow:
    0 0 0 6px rgba(15,127,115,0.14),
    0 0 18px rgba(88,185,199,0.35);
}

/* upgrade kafla */
.process-mini .why-m2l__mini {
  padding: 22px 24px;
  border-radius: 22px;

  background: rgba(18, 235, 157, 0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(25, 114, 105, 0.014);
  box-shadow: 0 14px 34px rgba(20,83,91,0.06);

  transition: all 0.35s ease;
}

.process-mini .why-m2l__mini:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(20,83,91,0.12),
    0 0 0 1px rgba(15,127,115,0.18);
}

@media (max-width: 768px) {
  .process-mini {
    padding-left: 34px;
  }

  .process-mini::before {
    left: 14px;
  }

  .process-mini__dot {
    left: -20px;
    top: 22px;
    width: 10px;
    height: 10px;
  }
}
/* === HERO FIX: mniej dziury, stats nie wchodzi na hero, kostka na MP4 === */

.section--hero {
  min-height: auto;
  padding-block: clamp(24px, 3.5vw, 48px) clamp(52px, 6vw, 82px);
}

@media (min-width: 901px) {
  .section--hero {
    min-height: auto !important;
    padding-block: clamp(28px, 4vw, 54px) clamp(64px, 7vw, 96px) !important;
  }

  .hero__inner {
    min-height: 560px;
  }

  .hero__copy,
  .hero__media {
    min-height: 560px;
  }
}

.stats-section {
  margin-top: 0 !important;
  padding-block: clamp(58px, 6vw, 88px);
}

/* przyciemnienie MP4 ze smakiem */
.hero__media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 63, 61, 0.14), rgba(7, 63, 61, 0.34)),
    radial-gradient(circle at 50% 42%, transparent 0%, rgba(7, 63, 61, 0.22) 72%);
}

/* kostka na video */
.hero__status-card {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;

  padding: 16px 18px;
  min-width: min(440px, calc(100% - 44px));

  border-radius: 22px;
  border: 1px solid rgba(223, 243, 241, 0.28);
  background: rgba(7, 63, 61, 0.48);
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__status-dot {
  grid-row: 1 / span 2;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #58b9c7;
  box-shadow: 0 0 0 7px rgba(88, 185, 199, 0.18);
  animation: heroStatusPulse 1.6s ease-in-out infinite;
}

.hero__status-card strong {
  color: #f6fbfb;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero__status-card small {
  color: rgba(223, 243, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

@keyframes heroStatusPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(88, 185, 199, 0.18);
  }

  50% {
    transform: scale(0.88);
    box-shadow: 0 0 0 12px rgba(88, 185, 199, 0);
  }
}

@media (max-width: 900px) {
  .section--hero {
    padding-block: 24px 52px !important;
  }

  .stats-section {
    margin-top: 0 !important;
  }

  .hero__status-card {
    left: 18px;
    bottom: 18px;
    min-width: calc(100% - 36px);
    padding: 14px 15px;
    border-radius: 18px;
  }
}
.hero__media {
  position: relative;
  background: #dfeaec;

  border-radius: 32px; /* 🔥 to robi robotę */
  overflow: hidden;

  box-shadow:
    0 24px 70px rgba(20, 83, 91, 0.12),
    0 0 0 1px rgba(15, 127, 115, 0.08);

  isolation: isolate;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  pointer-events: none;
  z-index: 2;

  /* delikatna ramka + światło */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    inset 0 20px 40px rgba(255,255,255,0.06),
    inset 0 -20px 40px rgba(0,0,0,0.12);
}
.hero__media {
  transform: translateY(-6px);
}
/* === MOBILE FIX: status card na MP4 === */

@media (max-width: 900px) {
  .hero__status-card {
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    bottom: 18px !important;
    transform: translateX(-50%) !important;

    width: calc(100% - 36px);
    min-width: 0 !important;
    max-width: none;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);

    padding: 13px 14px;
    border-radius: 18px;
  }

  .hero__status-card strong,
  .hero__status-card small {
    min-width: 0;
    white-space: normal;
    overflow: visible;
  }

  .hero__status-card strong {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .hero__status-card small {
    font-size: 0.72rem;
  }

  .hero__status-dot {
    width: 9px;
    height: 9px;
  }
}