:root {
  --ink: #111827;
  --muted: #647184;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #edf4fb;
  --line: #d8e3ee;
  --forest: #1f5eff;
  --forest-2: #111827;
  --mint: #18b7c7;
  --cyan: #14a6d8;
  --amber: #f59e0b;
  --blue-soft: #e6f3ff;
  --shadow: 0 22px 56px rgba(17, 24, 39, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
strong,
summary,
button,
input,
select,
textarea {
  word-break: normal;
  hyphens: none;
}

p,
summary,
button,
input,
select,
textarea {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
strong {
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.3vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.28rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 13px clamp(18px, 4vw, 56px);
  background: rgba(15, 23, 42, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1f5eff, #14a6d8);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.04rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(78svh - 74px);
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 16, 30, 0.95) 0%, rgba(10, 16, 30, 0.84) 42%, rgba(10, 16, 30, 0.34) 76%, rgba(10, 16, 30, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 16, 30, 0.32), rgba(10, 16, 30, 0.02) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(830px, 100%);
  padding: clamp(50px, 6vw, 78px) clamp(20px, 7vw, 86px) clamp(118px, 11vw, 145px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #aee8ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-mini span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--surface);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--mint);
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #1f5eff, #14a6d8);
  border-color: #1f5eff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  left: clamp(18px, 4vw, 56px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.hero-proof article {
  min-height: 118px;
  padding: 18px 20px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof article:last-child {
  border-right: 0;
}

.hero-proof span,
.number {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-weight: 950;
}

.hero-proof strong {
  display: block;
  font-size: 1.05rem;
}

.hero-proof p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.problem-band,
.band {
  background: var(--surface-soft);
}

.problem-band {
  padding: clamp(54px, 8vw, 88px) 0;
}

.problem-grid,
.local-grid,
.footer-grid,
.security-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.problem-copy p,
.local-grid p,
.security-intro p,
.section-heading p,
.service-card p,
.scenario-grid p,
.timeline p,
.package-for,
.faq p,
.contact-copy p,
.tech-note {
  color: var(--muted);
}

.problem-copy p:first-child,
.local-grid p:first-child,
.security-intro p {
  margin-top: 0;
}

.offer,
.cockpit,
.process,
.packages,
.faq {
  padding: clamp(66px, 10vw, 120px) 0;
}

.cockpit {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.cockpit-copy p {
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--forest-2);
  font-weight: 800;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "•";
  font-size: 1.35rem;
  line-height: 1;
}

.ops-panel {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(20, 46, 90, 0.96)),
    var(--forest-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
  color: #fff;
}

.ops-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-top span,
.ops-score span,
.restore-card span {
  display: block;
  color: #9bdcff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-top strong {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
}

.ops-top em,
.ops-row em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.88rem;
}

.ops-score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ops-score div {
  min-height: 116px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-score strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.ops-score small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.ops-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 18px;
  padding: 22px;
}

.ops-list {
  display: grid;
  gap: 10px;
}

.ops-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.ops-row > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ops-row.ok > span {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(114, 189, 141, 0.13);
}

.ops-row.warn > span {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(201, 140, 45, 0.14);
}

.ops-row strong,
.ops-row small {
  display: block;
}

.ops-row small {
  color: rgba(255, 255, 255, 0.68);
}

.restore-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100%;
  padding: 18px;
  background: rgba(31, 94, 255, 0.14);
  border: 1px solid rgba(20, 166, 216, 0.28);
  border-radius: var(--radius);
}

.restore-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.restore-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
  max-width: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.scenario-grid article,
.package-card,
.lead-form,
.faq details,
.assurance-list article,
.timeline li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 29, 26, 0.05);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 374px;
  padding: 24px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--forest);
  background: var(--blue-soft);
  border-radius: var(--radius);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before,
.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--forest);
  content: "✓";
  font-weight: 950;
}

.recovery {
  padding: clamp(64px, 9vw, 108px) 0;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scenario-grid article {
  min-height: 220px;
  padding: 24px;
}

.scenario-grid strong {
  display: block;
  margin-bottom: 42px;
  font-size: 1.15rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 270px;
  padding: 24px;
}

.timeline li::before {
  position: absolute;
  right: 22px;
  top: 18px;
  color: #e2e9e4;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 42px;
  padding: 7px 10px;
  color: #6a4208;
  background: #fff0d2;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.18rem;
}

.timeline p {
  position: relative;
  z-index: 1;
}

.infrastructure {
  padding: clamp(64px, 10vw, 118px) 0;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.infra-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #101827;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.infra-media::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(310px, calc(100% - 36px));
  padding: 16px;
  color: #fff;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  content: "Serwery, szybki magazyn danych, firewall i monitoring kopii w jednym procesie opieki.";
  font-weight: 850;
  line-height: 1.35;
}

.infra-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.infra-copy p {
  color: var(--muted);
}

.infra-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.infra-list article {
  min-height: 148px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.infra-list strong,
.infra-list span {
  display: block;
}

.infra-list strong {
  color: var(--forest-2);
  font-size: 1.02rem;
}

.infra-list span {
  margin-top: 10px;
  color: var(--muted);
}

.infra-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: #fff7e8;
  border: 1px solid #f7d391;
  border-radius: var(--radius);
}

.security {
  padding: clamp(64px, 10vw, 118px) 0;
}

.security-intro {
  position: sticky;
  top: 104px;
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.assurance-list article {
  min-height: 230px;
  padding: 24px;
}

.assurance-list span,
.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  color: #6a4208;
  background: #fff0d2;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
}

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

.package-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 470px;
  padding: 26px;
}

.package-card.featured {
  border-color: rgba(20, 59, 51, 0.5);
  box-shadow: var(--shadow);
}

.package-card h3 {
  font-size: 2rem;
}

.package-button {
  align-self: end;
  margin-top: 10px;
}

.local {
  padding: clamp(58px, 9vw, 96px) 0;
}

.tech-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--forest-2);
  cursor: pointer;
  font-weight: 900;
}

.faq summary::marker {
  color: var(--amber);
}

.faq p {
  margin-bottom: 0;
}

.contact {
  padding: clamp(66px, 10vw, 120px) 0;
  background: #edf4fb;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-options a {
  padding: 10px 12px;
  color: var(--forest);
  background: #e6f3ff;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--forest-2);
  font-weight: 850;
}

.lead-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(114, 189, 141, 0.28);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--forest-2);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-grid div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: end;
}

@media (max-width: 1080px) {
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle span {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 16, 30, 0.94), rgba(10, 16, 30, 0.8)),
      linear-gradient(0deg, rgba(10, 16, 30, 0.2), rgba(10, 16, 30, 0.2));
  }

  .hero-content {
    padding: 34px 18px 24px;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: none;
    gap: 10px;
    width: calc(100% - 28px);
    margin: 14px auto 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-type: none;
  }

  .hero-proof article {
    min-width: 0;
    min-height: 0;
    padding: 13px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    scroll-snap-align: none;
  }

  .hero-proof article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .hero-proof strong {
    color: #fff;
  }

  .problem-grid,
  .cockpit,
  .infrastructure-grid,
  .local-grid,
  .footer-grid,
  .security-grid,
  .contact-grid,
  .section-heading.split,
  .lead-form,
  .faq-grid,
  .assurance-list {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .scenario-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .scenario-grid article,
  .timeline li {
    min-height: 0;
  }

  .security-intro,
  .contact-copy {
    position: static;
  }

  .lead-form .full {
    grid-column: auto;
  }

  .ops-panel {
    width: 100%;
  }

  .ops-top,
  .ops-main {
    grid-template-columns: 1fr;
  }

  .ops-score {
    grid-template-columns: 1fr;
  }

  .infra-media,
  .infra-media img {
    min-height: 360px;
  }

  .infra-list {
    grid-template-columns: 1fr;
  }

  .footer-grid div:last-child {
    justify-content: start;
  }
}

@media (min-width: 781px) and (max-width: 980px) {
  h1 {
    font-size: clamp(3.1rem, 8vw, 4.7rem);
  }

  .hero-content {
    padding: 46px 32px 32px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 112px);
    margin: 18px 56px 0;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .hero-proof article {
    min-height: 124px;
    padding: 16px 18px;
    color: #fff;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
  }

  .hero-proof article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .hero-proof p {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-mini {
    display: flex;
  }

  .hero-mini span {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.08rem, 9.3vw, 2.55rem);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-mini {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-mini span {
    padding: 6px 9px;
    font-size: 0.78rem;
    white-space: normal;
  }
}
