@font-face {
  font-family: "Manrope";
  src: url("fonty/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --forest-950: #14231f;
  --forest-900: #1c312b;
  --forest-800: #29453d;
  --forest-700: #3d6257;
  --forest-600: #557c70;
  --sage-300: #b8cac2;
  --sage-200: #d5e0db;
  --sage-100: #e5ece8;
  --paper: #f2eee5;
  --paper-light: #f8f5ee;
  --ivory: #fffdf8;
  --sand: #d6c4a2;
  --copper: #b06d4d;
  --ink: #1c2723;
  --muted: #68716c;
  --line: rgba(41, 69, 61, 0.15);
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --shadow-soft: 0 20px 60px rgba(28, 49, 43, 0.09);
  --shadow-deep: 0 36px 100px rgba(16, 31, 27, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 5%, rgba(214, 196, 162, 0.28), transparent 31rem),
    linear-gradient(180deg, var(--paper) 0, var(--paper-light) 38%, var(--paper) 100%);
  font-family: var(--sans);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ivory);
  background: var(--forest-700);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest-950);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 46px);
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(41, 69, 61, 0.1);
  background: rgba(242, 238, 229, 0.88);
  backdrop-filter: blur(18px) saturate(130%);
}

.topbar__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topbar__brand {
  flex: 0 0 auto;
}

.topbar__logo {
  width: 132px;
  height: 35px;
  object-fit: contain;
  object-position: left center;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}

.topbar__nav > a:not(.btn) {
  position: relative;
  color: var(--forest-800);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.topbar__nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--forest-700);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.topbar__nav > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.topbar__nav a:focus-visible,
.text-link:focus-visible,
.hero__intro a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(176, 109, 77, 0.38);
  outline-offset: 4px;
}

.btn--primary {
  color: #fff;
  background: var(--forest-900);
  box-shadow: 0 12px 28px rgba(20, 35, 31, 0.2);
}

.btn--primary:hover {
  background: var(--forest-950);
  box-shadow: 0 16px 36px rgba(20, 35, 31, 0.26);
}

.btn--small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 12px;
}

.btn--light {
  color: var(--forest-950);
  background: var(--ivory);
  box-shadow: 0 14px 32px rgba(8, 20, 16, 0.22);
}

.btn--light:hover {
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 20, 16, 0.3);
}

.btn--glass {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.btn--outline {
  border-color: rgba(41, 69, 61, 0.25);
  color: var(--forest-900);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--forest-700);
  background: rgba(229, 236, 232, 0.55);
}

.hero {
  padding: clamp(18px, 2.7vw, 34px) 0 clamp(66px, 8vw, 112px);
}

.hero__panel {
  position: relative;
  display: flex;
  min-height: clamp(610px, 72vh, 760px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(24px, 3.8vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px 4px 58px 4px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 22, 18, 0.93) 0%, rgba(14, 28, 23, 0.78) 43%, rgba(10, 21, 18, 0.14) 78%),
    linear-gradient(180deg, rgba(13, 26, 22, 0.08), rgba(10, 21, 18, 0.44)),
    url("zdjecia/hero-agencja.webp") center center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}

.hero__panel::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.hero__top,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 24, 19, 0.35);
  backdrop-filter: blur(14px);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e1b28f;
  box-shadow: 0 0 0 4px rgba(225, 178, 143, 0.15);
}

.hero__signal {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__content {
  display: grid;
  align-items: end;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.62fr);
}

.hero__copy {
  max-width: 760px;
}

.hero__kicker {
  margin: 0 0 18px;
  color: #d9c5a2;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 6.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.27);
  text-wrap: balance;
}

.hero__copy > p:not(.hero__kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 470;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.hero__card {
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(13, 29, 24, 0.55);
  backdrop-filter: blur(15px);
}

.hero__card-label {
  margin: 0 0 10px;
  color: #d9c5a2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__card li {
  display: grid;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 13px;
  grid-template-columns: auto 1fr;
}

.hero__card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero__mini-icon {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  place-items: center;
}

.hero__mini-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #d9c5a2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero__card strong,
.hero__card small {
  display: block;
}

.hero__card strong {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 750;
}

.hero__card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.hero__intro {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px) clamp(3px, 1vw, 12px) 0;
  grid-template-columns: 0.45fr 1.45fr auto;
}

.hero__intro-label {
  margin: 0;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__intro > p:nth-child(2) {
  margin: 0;
  color: var(--forest-800);
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero__intro a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.hero__intro a span,
.text-link span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.hero__intro a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  scroll-margin-top: 92px;
}

.section__head {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section__head--split {
  display: grid;
  align-items: end;
  gap: clamp(30px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.65fr);
}

.section__eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__head h2,
.safety h2,
.closing h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(36px, 4.9vw, 62px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.section__head--split > p,
.section__head--pricing > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 480;
  line-height: 1.75;
  text-wrap: pretty;
}

.section--features {
  position: relative;
  padding-top: clamp(60px, 7vw, 90px);
}

.features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.feature {
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 40px rgba(28, 49, 43, 0.045);
  gap: 30px;
  grid-column: span 4;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.feature:hover {
  border-color: rgba(41, 69, 61, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.feature--lead {
  grid-column: span 5;
}

.feature:nth-child(2) {
  grid-column: span 7;
}

.feature:nth-child(3) {
  grid-column: span 7;
}

.feature--dark {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 224, 219, 0.13), transparent 18rem),
    var(--forest-900);
  grid-column: span 5;
}

.feature--wide {
  min-height: 260px;
  grid-column: span 12;
}

.feature__icon {
  display: grid;
  width: 48px;
  height: 48px;
  align-self: start;
  border: 1px solid rgba(61, 98, 87, 0.18);
  border-radius: 50%;
  background: var(--sage-100);
  place-items: center;
}

.feature--dark .feature__icon {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--forest-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.feature--dark .feature__icon svg {
  stroke: #d5e0db;
}

.feature > div:last-child {
  align-self: end;
}

.feature h3 {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(23px, 2.6vw, 31px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.feature--dark h3 {
  color: #fff;
}

.feature p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 480;
  line-height: 1.72;
  text-wrap: pretty;
}

.feature--dark p {
  color: rgba(255, 255, 255, 0.66);
}

.section--product {
  position: relative;
  padding-top: clamp(34px, 5vw, 70px);
}

.section--product::before {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 0;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  border-radius: 50%;
  background: rgba(184, 202, 194, 0.22);
  filter: blur(2px);
  content: "";
  transform: translateX(38%);
}

.app-gallery {
  display: grid;
  align-items: start;
  gap: clamp(18px, 2.4vw, 30px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-shot {
  min-width: 0;
  margin: 0;
}

.app-shot__frame {
  display: grid;
  overflow: hidden;
  padding: clamp(6px, 0.7vw, 10px);
  border: 1px solid rgba(41, 69, 61, 0.16);
  border-radius: 4px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
  place-items: center;
}

.app-shot__frame img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(41, 69, 61, 0.08);
  border-radius: 2px;
  object-fit: contain;
}

.app-shot figcaption {
  display: grid;
  align-items: start;
  padding: 18px 4px 0;
  gap: 13px;
  grid-template-columns: auto minmax(0, 1fr);
}

.app-shot__icon {
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(61, 98, 87, 0.18);
  border-radius: 50%;
  background: var(--sage-100);
  place-items: center;
}

.app-shot__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--forest-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.app-shot figcaption strong,
.app-shot figcaption small {
  display: block;
}

.app-shot figcaption strong {
  margin: 1px 0 4px;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.app-shot figcaption small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.app-gallery__note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
  line-height: 1.6;
}

.section--safety {
  padding-top: clamp(30px, 4vw, 60px);
}

.safety {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  border-radius: 4px 4px 54px 4px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(13, 28, 23, 0.97) 20%, rgba(18, 39, 32, 0.88) 54%, rgba(18, 38, 32, 0.64)),
    url("zdjecia/gora.jpg") center 35% / cover no-repeat;
  box-shadow: var(--shadow-deep);
  gap: clamp(40px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
}

.safety::after {
  position: absolute;
  top: -170px;
  left: 46%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.safety__content,
.safety__list {
  position: relative;
  z-index: 1;
}

.section__eyebrow--light {
  color: #d9c5a2;
}

.safety h2,
.closing h2 {
  color: #fff;
}

.safety__content > p:not(.section__eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.78;
  text-wrap: pretty;
}

.text-link--light {
  margin-top: 26px;
  color: #fff;
}

.safety__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.safety__list li {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 16px;
  grid-template-columns: auto 1fr;
}

.safety__icon {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  place-items: center;
}

.safety__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #d9c5a2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.safety__list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.safety__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
  line-height: 1.65;
}

.section--pricing {
  padding-bottom: clamp(74px, 9vw, 126px);
}

.section__head--pricing {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__head--pricing > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
}

.pricing {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan {
  display: flex;
  min-height: 550px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 48px rgba(28, 49, 43, 0.055);
}

.plan--accent {
  border-color: rgba(41, 69, 61, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 224, 219, 0.6), transparent 21rem),
    var(--ivory);
  box-shadow: var(--shadow-soft);
}

.plan__top {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plan__eyebrow {
  margin: 0 0 7px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plan__name {
  margin: 0;
  color: var(--forest-950);
  font-size: 14px;
  font-weight: 750;
}

.plan__save {
  padding: 7px 10px;
  border: 1px solid rgba(61, 98, 87, 0.16);
  border-radius: 999px;
  color: var(--forest-700);
  background: rgba(229, 236, 232, 0.9);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.plan__price {
  margin: 30px 0 0;
}

.plan__amount {
  display: block;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.plan__price > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 700;
}

.plan__gross {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 520;
}

.plan__list {
  display: grid;
  margin: 32px 0 36px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  gap: 15px;
  list-style: none;
}

.plan__list li {
  position: relative;
  padding-left: 25px;
  color: var(--forest-800);
  font-size: 12px;
  font-weight: 570;
  line-height: 1.55;
}

.plan__list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  width: 14px;
  height: 7px;
  border-bottom: 1.7px solid var(--forest-600);
  border-left: 1.7px solid var(--forest-600);
  content: "";
  transform: rotate(-45deg);
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.pricing__note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 520;
  line-height: 1.65;
  text-align: center;
}

.closing {
  padding: 0 0 clamp(72px, 8vw, 110px);
}

.closing__panel {
  display: grid;
  padding: clamp(40px, 6vw, 72px);
  border-radius: 4px 4px 52px 4px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(184, 202, 194, 0.15), transparent 26rem),
    var(--forest-900);
  box-shadow: 0 30px 80px rgba(20, 35, 31, 0.18);
  gap: clamp(34px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.7fr);
}

.closing h2 {
  font-size: clamp(33px, 4.4vw, 54px);
}

.closing__action {
  align-self: end;
}

.closing__action p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.72;
}

.footer {
  padding: 42px 0 34px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  align-items: end;
  gap: 32px;
  grid-template-columns: 1fr auto;
}

.footer__brand {
  max-width: 330px;
}

.footer__logo {
  width: 118px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand p,
.footer__legal {
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
  line-height: 1.6;
}

.footer__brand p {
  margin: 13px 0 0;
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.3vw, 28px);
  flex-wrap: wrap;
}

.footer__meta a {
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.footer__meta a:hover {
  color: var(--forest-950);
}

.footer__legal {
  margin: 0;
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__card {
    display: none;
  }

  .hero__copy {
    max-width: 720px;
  }

  .section__head--split,
  .safety,
  .closing__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__head--split {
    align-items: start;
  }

  .section__head--split > p {
    max-width: 620px;
  }

  .feature,
  .feature--lead,
  .feature:nth-child(2),
  .feature:nth-child(3),
  .feature--dark,
  .feature--wide {
    grid-column: span 6;
  }

  .feature--wide {
    grid-column: 4 / span 6;
  }

  .safety__content {
    max-width: 720px;
  }

  .app-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .closing__action {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    min-height: 68px;
  }

  .topbar__logo {
    width: 112px;
    height: 31px;
  }

  .topbar__nav > a:not(.btn) {
    display: none;
  }

  .topbar__nav .btn {
    min-height: 39px;
    padding: 10px 14px;
  }

  .hero__panel {
    min-height: 650px;
    padding: 22px;
    border-radius: 3px 3px 38px 3px;
    background:
      linear-gradient(180deg, rgba(10, 22, 18, 0.26) 0%, rgba(10, 22, 18, 0.2) 28%, rgba(10, 22, 18, 0.94) 78%),
      url("zdjecia/hero-agencja-mobile.webp") center 42% / cover no-repeat;
  }

  .hero__signal {
    display: none;
  }

  .badge {
    padding: 9px 11px;
    font-size: 8px;
  }

  .hero__copy h1 {
    font-size: clamp(40px, 12.7vw, 58px);
    line-height: 0.97;
  }

  .hero__copy h1 br {
    display: none;
  }

  .hero__copy > p:not(.hero__kicker) {
    margin-top: 19px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__intro {
    align-items: start;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__intro a {
    margin-top: 5px;
  }

  .features {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature,
  .feature--lead,
  .feature:nth-child(2),
  .feature:nth-child(3),
  .feature--dark,
  .feature--wide {
    min-height: 290px;
    grid-column: auto;
  }

  .safety {
    padding: 38px 25px;
    border-radius: 3px 3px 38px 3px;
  }

  .pricing {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan {
    min-height: auto;
  }

  .closing__panel {
    padding: 38px 25px;
    border-radius: 3px 3px 38px 3px;
  }

  .closing__action .btn {
    width: 100%;
  }

  .footer__inner {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__meta {
    justify-content: flex-start;
  }

  .footer__legal {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .topbar__nav .btn {
    font-size: 10px;
  }

  .plan__top {
    min-height: auto;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
