:root {
  --td-font-heading: "Archivo Black", "Archivo", system-ui, sans-serif;
  --td-font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --td-primary: #fb5b1c;
  --td-primary-dark: #d74710;
  --td-bg: #ffffff;
  --td-card: #ffffff;
  --td-muted: #fff4ee;
  --td-text: #1e1e1e;
  --td-body: #4b4b4b;
  --td-surface-cream: #fff0ea;
  --td-surface-ink: #1e1e1e;
  --td-radius: 14px;
  --td-radius-pill: 999px;
  --td-btn-ink: #3c0a1e;
  --td-btn-organic: 2.35rem 0.52rem 2.6rem 0.82rem / 0.78rem 2.1rem 0.65rem 1.95rem;
  --td-btn-organic-hover: 0.78rem 2.45rem 0.88rem 2.35rem / 2.12rem 0.72rem 1.92rem 0.62rem;
  --td-btn-organic-sm: 1.32rem 0.28rem 1.48rem 0.42rem / 0.38rem 1.12rem 0.34rem 1.02rem;
  --td-btn-organic-sm-hover: 0.38rem 1.52rem 0.42rem 1.38rem / 1.18rem 0.4rem 1.05rem 0.36rem;
  --td-badge-shape: var(--td-btn-organic-sm);
  --td-badge-shape-hover: var(--td-btn-organic-sm-hover);
  --td-flat-a: 2.55rem 0.48rem 2.2rem 0.92rem / 0.92rem 2.35rem 0.62rem 2.05rem;
  --td-flat-a-hover: 0.85rem 2.45rem 0.95rem 2.4rem / 2.2rem 0.68rem 2.02rem 0.58rem;
  --td-flat-b: 1.05rem 2.45rem 0.72rem 2.1rem / 2.35rem 0.52rem 2.08rem 0.65rem;
  --td-flat-b-hover: 2.4rem 0.55rem 2.15rem 0.88rem / 0.72rem 2.25rem 0.78rem 1.95rem;
  --td-flat-c: 2.15rem 0.88rem 2.4rem 0.52rem / 0.58rem 2.1rem 1.05rem 2.2rem;
  --td-flat-c-hover: 0.72rem 2.2rem 0.82rem 2.35rem / 2.05rem 0.62rem 1.98rem 0.72rem;
  --td-gh-canvas: #f6f8fa;
  --td-gh-border: #d1d9e0;
  --td-shell-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: clamp(5.25rem, 11vh, 6.75rem);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2rem;
  background: var(--td-bg);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  display: block;
  width: auto;
  height: clamp(56px, 14vw, 88px);
  max-width: min(280px, 72vw);
  object-fit: contain;
  animation: page-loader-pulse 1.15s ease-in-out infinite;
}

@keyframes page-loader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.88;
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition-duration: 0.1s;
  }

  .page-loader__logo {
    animation: none;
  }
}

body {
  margin: 0;
  font-family: var(--td-font-body);
  font-weight: 300;
  background: var(--td-bg);
  color: var(--td-text);
  line-height: 1.6;
}

h1,
h2,
h3,
.hero-title {
  font-family: var(--td-font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
}

strong,
b {
  font-weight: 500;
}

.section-space {
  padding: 6rem 0;
}

.section-flat {
  border-top: none;
  border-bottom: none;
}

.section-flat--white {
  background: #ffffff;
  color: var(--td-text);
}

.section-flat--cream {
  background: var(--td-surface-cream);
  color: var(--td-text);
}

.section-flat--brand {
  background: var(--td-primary);
  color: #ffffff;
}

.section-flat--brand .hero-title,
.section-flat--brand .section-heading h2,
.section-flat--brand h2 {
  color: #ffffff;
}

.section-flat--brand .lead,
.section-flat--brand .section-heading p,
.section-flat--brand .feature-card p {
  color: rgba(255, 255, 255, 0.92);
}

.section-flat--brand .hero-points,
.section-flat--brand .hero-points li {
  color: #ffffff;
}

.section-flat--brand .hero-points li::before {
  color: #ffffff;
}

.section-flat--brand .pill {
  background: #ffffff;
  color: var(--td-primary);
  border: 1px solid #ffffff;
}

.section-flat--brand .btn-primary {
  --bs-btn-bg: var(--td-btn-ink);
  --bs-btn-border-color: var(--td-btn-ink);
  --bs-btn-color: #ffffff;
  --bs-btn-hover-bg: #521428;
  --bs-btn-hover-border-color: #521428;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-bg: #2d0816;
  --bs-btn-active-border-color: #2d0816;
  --bs-btn-active-color: #ffffff;
}

.section-flat--brand .btn-outline-light {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
}

.section-flat--brand .feature-card {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.section-flat--brand .feature-card h3 {
  color: var(--td-text);
}

.section-flat--brand .feature-card p {
  color: #4a4a4a;
}

.section-intro {
  border-top: 2px solid rgba(251, 91, 28, 0.2);
}

.intro-lead {
  max-width: 46rem;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.65;
  color: #3d3d3d;
  font-weight: 300;
}

.intro-lead strong {
  color: var(--td-text);
}

.intro-signup {
  width: 100%;
  max-width: 100%;
}

.intro-signup-label {
  font-family: var(--td-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a4a4a;
}

.intro-signup-input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 2px solid rgba(251, 91, 28, 0.45);
  border-radius: var(--td-radius);
}

.intro-signup-input:focus {
  border-color: var(--td-primary);
  box-shadow: 0 0 0 0.2rem rgba(251, 91, 28, 0.2);
}

.trail-section {
  position: relative;
  overflow: visible;
}

.trail-title {
  font-family: var(--td-font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.trail-lead {
  max-width: 46ch;
  color: #4a4a4a;
  font-weight: 300;
}

.trail-lead--trop {
  max-width: 40rem;
  line-height: 1.55;
}

.trop-section-title {
  line-height: 1.15;
}

.trop-heading-main {
  display: block;
}

.trop-heading-sub {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--td-font-body);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 300;
  color: #5a5a5a;
  letter-spacing: 0;
}

.trop-spacer {
  height: 20vh;
  min-height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.trop-spacer.final {
  height: 22vh;
  min-height: 5.5rem;
}

.trop-main {
  position: relative;
  height: 320vh;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 clamp(0.35rem, 2vw, 1rem);
}

.trop-dash-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

#trop-dash-path {
  opacity: 0.92;
}

.trop-container {
  position: absolute;
  width: min(26rem, calc(100% - 1.5rem));
  max-width: 92%;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  scroll-margin-block: min(22vh, 8rem);
}

.trop-container--initial {
  left: 60%;
  top: 5%;
  width: 112px;
  height: 112px;
  max-width: none;
  z-index: 2;
  border: 2px dashed rgba(251, 91, 28, 0.35);
  align-items: center;
  justify-content: center;
  border-radius: var(--td-btn-organic);
  transition: border-radius 0.22s ease;
}

#trop .box {
  width: 104px;
  height: 104px;
  z-index: 1;
  border-radius: var(--td-btn-organic-sm);
  display: grid;
  place-items: center;
  transform-origin: 50% 50%;
  will-change: transform;
}

.trop-box-img {
  width: 100%;
  height: 100%;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(251, 91, 28, 0.28));
}

.trop-step {
  z-index: 3;
  padding: 0;
  border: none;
  margin: 0;
}

.trop-step--second {
  left: 8%;
  top: 16%;
}

.trop-step--third {
  right: 6%;
  top: 28%;
  left: auto;
}

.trop-step--fourth {
  left: 12%;
  top: 40%;
}

.trop-step--fifth {
  right: 5%;
  top: 52%;
  left: auto;
}

.trop-step--sixth {
  left: 10%;
  top: 64%;
}

.trop-step--seventh {
  right: 6%;
  top: 76%;
  left: auto;
}

.trop-step--eighth {
  left: 50%;
  top: 88%;
  transform: translateX(-50%);
}

.trop-step-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.95rem 1.4rem 1.05rem;
  border-radius: var(--td-btn-organic);
  background: var(--td-primary);
  box-shadow: 0 10px 28px rgba(251, 91, 28, 0.32);
  border: none;
  font-family: var(--td-font-body);
  font-weight: 500;
  cursor: default;
  transition:
    border-radius 0.22s ease,
    box-shadow 0.2s ease,
    transform 0.16s ease;
}

.trop-step-inner:hover,
.trop-step-inner:focus-within {
  border-radius: var(--td-btn-organic-hover);
  box-shadow: 0 12px 34px rgba(251, 91, 28, 0.38);
}

.trop-step-inner:active {
  transform: scale(0.99);
}

.trop-step-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--td-btn-organic-sm);
  display: grid;
  place-items: center;
  font-family: var(--td-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.55);
  transform: none;
  transition:
    border-radius 0.22s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.trop-step-inner:hover .trop-step-num,
.trop-step-inner:focus-within .trop-step-num {
  border-radius: var(--td-btn-organic-sm-hover);
}

.trop-step-body {
  width: 100%;
  max-width: 19rem;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: opacity 0.3s ease;
}

.trop-step-title {
  margin: 0 0 0.45rem;
  font-family: var(--td-font-heading);
  font-size: clamp(1.35rem, 3.2vw + 0.35rem, 2.05rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.trop-step-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.trop-step-text--label {
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trop-step-text + .trop-step-text {
  margin-top: 0.45rem;
}

.trop-step-title + .trop-step-text {
  margin-top: 0.05rem;
}

.trop-step-title + .trop-step-text--label {
  margin-top: 0.35rem;
}

.trop-step-text--label + .trop-step-list {
  margin-top: 0.3rem;
}

.trop-step-list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

.trop-step-list--plain li + li {
  margin-top: 0.2rem;
}

@media (max-width: 576px) {
  .trop-container--initial {
    left: 50%;
    transform: translateX(-50%);
  }

  .trop-step--second,
  .trop-step--fourth,
  .trop-step--sixth {
    left: 3%;
  }

  .trop-step--third,
  .trop-step--fifth {
    right: 3%;
  }

  .trop-step--seventh {
    right: 3%;
  }

  .trop-step--eighth {
    left: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trop-step-num {
    transform: none;
  }
}

.section-flat--ink {
  background: var(--td-surface-ink);
  color: #ffffff;
}

.section-flat--ink .section-heading h2,
.section-flat--ink h2 {
  color: #ffffff;
}

.section-flat--ink .cta-copy {
  color: rgba(255, 255, 255, 0.88);
}

.section-flat--ink .pill {
  background: var(--td-primary);
  border: none;
  color: #ffffff;
}

.td-watermark-band {
  margin: 0;
  padding: 0.75rem 1rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--td-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.td-watermark-band__img {
  display: block;
  width: auto;
  max-width: min(200px, 38vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

.section-flat--ink .btn-outline-light {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1030;
  background: transparent;
  padding: 0.75rem clamp(1.1rem, 4.5vw, 2.5rem) 0;
  pointer-events: none;
  box-sizing: border-box;
}

.site-header .site-header-nav {
  pointer-events: auto;
  --bs-navbar-bg: transparent;
  --bs-navbar-border-color: transparent;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  padding-left: clamp(1.25rem, 4vw, 2.25rem);
  padding-right: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--td-btn-organic);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 36px rgba(30, 30, 30, 0.1),
    0 2px 12px rgba(30, 30, 30, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  isolation: isolate;
  transition:
    border-radius 0.22s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .site-header .site-header-nav {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(200%) blur(22px);
    backdrop-filter: saturate(200%) blur(22px);
  }
}

.site-header .site-header-nav:hover,
.site-header .site-header-nav:focus-within {
  border-radius: var(--td-btn-organic-hover);
  box-shadow:
    0 12px 44px rgba(30, 30, 30, 0.12),
    0 3px 14px rgba(30, 30, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header .site-header-nav {
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header .site-header-nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
}

.navbar-brand {
  color: #1a1a1a;
  font-family: var(--td-font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.navbar-brand--with-motto {
  flex-wrap: wrap;
  row-gap: 0.35rem;
  column-gap: 0.75rem;
  max-width: min(100%, 52vw);
}

@media (min-width: 992px) {
  .navbar-brand--with-motto {
    flex-wrap: nowrap;
    max-width: none;
  }
}

.navbar-motto {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--td-font-body);
  font-size: clamp(0.72rem, 1.25vw, 0.95rem);
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.25;
  letter-spacing: 0.01em;
  transform: translateY(5px);
}

.navbar-motto-typed {
  display: inline-block;
  min-height: 1.25em;
}

.navbar-motto-cursor {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.12em;
  background: var(--td-primary);
  border-radius: 1px;
  animation: navbar-motto-cursor-blink 1s step-end infinite;
}

@keyframes navbar-motto-cursor-blink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-motto-cursor {
    animation: none;
    opacity: 0.85;
  }
}

.brand-logo {
  width: auto;
  height: 56px;
  border-radius: var(--td-radius);
  object-fit: contain;
}

.nav-link {
  color: #3c3c3c;
  font-family: var(--td-font-body);
  font-weight: 400;
}

.nav-link:hover {
  color: var(--td-primary);
}

.site-header-nav .btn.btn-primary {
  font-family: var(--td-font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.btn-primary {
  --bs-btn-bg: var(--td-primary);
  --bs-btn-border-color: var(--td-primary);
  --bs-btn-hover-bg: var(--td-primary-dark);
  --bs-btn-hover-border-color: var(--td-primary-dark);
  --bs-btn-active-bg: var(--td-primary-dark);
  --bs-btn-active-border-color: var(--td-primary-dark);
  font-family: var(--td-font-body);
  font-weight: 600;
}

.btn-outline-light {
  --bs-btn-color: var(--td-primary);
  --bs-btn-border-color: var(--td-primary);
  --bs-btn-hover-bg: var(--td-primary);
  --bs-btn-hover-border-color: var(--td-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--td-primary-dark);
  --bs-btn-active-border-color: var(--td-primary-dark);
  --bs-btn-active-color: #fff;
  border-width: 2px;
  font-family: var(--td-font-body);
  font-weight: 600;
}

.btn {
  --bs-btn-border-radius: var(--td-btn-organic);
  border-radius: var(--td-btn-organic);
  transition:
    border-radius 0.22s ease,
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.16s ease;
}

.btn:hover,
.btn:focus-visible {
  border-radius: var(--td-btn-organic-hover);
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  --bs-btn-border-radius: var(--td-btn-organic-sm);
  border-radius: var(--td-btn-organic-sm);
}

.btn-sm:hover,
.btn-sm:focus-visible {
  border-radius: var(--td-btn-organic-sm-hover);
}

.btn-lg::after {
  content: "\203A";
  display: inline-block;
  margin-left: 0.4em;
  font-weight: 900;
  font-size: 1.05em;
  line-height: 0;
  vertical-align: -0.06em;
}

.intro-signup .btn-lg::after {
  content: none;
  margin-left: 0;
}

.pill {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.95rem;
  border-radius: var(--td-badge-shape);
  background: var(--td-primary);
  border: 1px solid var(--td-primary);
  color: #ffffff;
  font-family: var(--td-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill.alt {
  background: var(--td-surface-ink);
  color: #ffffff;
  border: none;
}

.pill,
.co-daje-badge,
.audience-chip {
  border-radius: var(--td-badge-shape);
  transition:
    border-radius 0.22s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

@media (hover: hover) {
  .pill:hover,
  .co-daje-badge:hover,
  .audience-chip:hover {
    border-radius: var(--td-badge-shape-hover);
    transform: translateY(-1px);
  }
}

.hero.section-space {
  padding-top: clamp(7.5rem, 12vw, 10.5rem);
  padding-bottom: 6rem;
}

.hero.hero--modern.section-space {
  padding-top: clamp(8.5rem, 15vw, 12.5rem);
  padding-bottom: clamp(6rem, 14vw, 9.5rem);
}

.hero--modern.section-flat--brand {
  background:
    radial-gradient(ellipse 85% 60% at 50% -15%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 35%, rgba(255, 200, 170, 0.35), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 55%, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(168deg, #ff732e 0%, var(--td-primary) 42%, var(--td-primary-dark) 100%);
}

.hero--modern {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.hero-watermark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  padding-left: clamp(0.5rem, 4vw, 3rem);
}

.hero-watermark-bg img {
  width: min(46vw, 620px);
  height: auto;
  object-fit: contain;
  opacity: 0.1;
  filter: blur(0.4px);
  user-select: none;
}

.hero-modern-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.2rem);
}

.hero-modern-content {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.1rem);
}

.hero-modern-showcase {
  width: 100%;
}

@media (min-width: 992px) {
  .hero-modern-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.hero-modern-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 46rem;
}

.hero--modern .hero-modern-stack > .pill {
  margin-bottom: 0;
}

.hero--modern .hero-modern-stack .lead.lead--hero-modern,
.hero--modern .hero-modern-stack .hero-modern-cta {
  margin-top: 0 !important;
}

.lead--hero-modern {
  max-width: 42rem;
  text-wrap: pretty;
}

.hero-points--modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.8vw, 1rem);
  max-width: 44rem;
  text-align: left;
}

.hero--modern .hero-points--modern {
  margin-top: 0 !important;
}

.hero-points--modern li {
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1rem, 2.3vw, 1.2rem);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-points--modern li::before {
  content: none;
}

@supports not (backdrop-filter: blur(1px)) {
  .hero-points--modern li {
    background: rgba(255, 255, 255, 0.18);
  }
}

.hero-modern-visual {
  width: 100%;
  max-width: min(100%, var(--td-shell-max, 1280px));
  margin-inline: auto;
}

.hero--modern .hero-modern-visual {
  margin-top: clamp(2.75rem, 7vw, 4.5rem) !important;
}

.hero-diagram-wrap--modern {
  width: 100%;
  max-width: 100%;
}

.hero--modern .hero-diagram {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: min(100%, var(--td-shell-max, 1280px));
}

.hero--modern .hero-diagram-img {
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(12px, 2vw, 18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 24px 56px rgba(0, 0, 0, 0.22),
    0 0 100px rgba(255, 255, 255, 0.12);
}

.hero-visual-tagline--modern {
  max-width: 36rem;
  margin-top: clamp(1.1rem, 2.5vw, 1.65rem);
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  max-width: 18ch;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  font-weight: 400;
}

.hero-title.hero-title--modern {
  max-width: 16ch;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-title--banner.hero-title--modern {
  width: 100%;
  max-width: 100%;
}

.hero-banner-flip {
  display: block;
  width: 100%;
  max-width: 100%;
  perspective: 780px;
  transform-style: preserve-3d;
  min-height: clamp(3.1rem, 12vw, 5rem);
}

.hero-banner-flip__text {
  display: block;
  width: 100%;
  max-width: 100%;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-slider {
  --hero-slider-height: clamp(21rem, 38vw, 30rem);
  position: relative;
  width: 100%;
  min-height: var(--hero-slider-height);
  padding: clamp(0.65rem, 1.5vw, 0.8rem);
  border-radius: clamp(14px, 2.6vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-slider-track {
  position: relative;
  height: var(--hero-slider-height);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(0.6rem, 1.6vw, 0.9rem);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slide .hero-diagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(12px, 2vw, 16px);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-slide-caption {
  margin: 0;
  padding: 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(0.65rem, 2vw, 0.95rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 3;
}

.hero-slider-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.hero-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.18);
}

.hero-slider-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.lead {
  max-width: 58ch;
  color: #4f4f4f;
  font-family: var(--td-font-body);
  font-weight: 300;
  font-size: 1.08rem;
}

.lead.lead--hero-modern {
  max-width: 46rem;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  font-family: var(--td-font-body);
  font-size: 1.02rem;
  font-weight: 400;
}

.hero-points li::before {
  content: "-> ";
  color: var(--td-primary);
  font-weight: 600;
}

.hero-points li strong {
  font-weight: 600;
}

.hero-card,
.flat-card,
.step-card,
.compare-card {
  background: var(--td-card);
  border: 2px solid rgba(251, 91, 28, 0.35);
  box-shadow: none;
  border-radius: var(--td-radius);
  padding: 1.5rem;
}

.hero-figure {
  margin: 0;
}

.hero-diagram-wrap {
  max-width: 100%;
}

.hero-diagram {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: min(100%, 1400px);
  margin-inline: auto;
  line-height: 0;
}

@media (min-width: 992px) {
  .hero:not(.hero--modern) .hero-diagram {
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-diagram-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--td-radius);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

@media (min-width: 992px) {
  .hero:not(.hero--modern) .hero-diagram-img {
    margin-right: 0;
    margin-left: auto;
  }
}

.hero-visual-tagline {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding-top: 0.25rem;
  max-width: min(100%, 36rem);
}

.section-flat--brand .hero-visual-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--td-font-body);
  font-weight: 300;
}

.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--td-radius);
  border: 2px solid rgba(251, 91, 28, 0.45);
  box-shadow: none;
}

.hero-figure figcaption {
  padding-left: 0.15rem;
}

.section-illustration {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--td-radius);
  border: 2px solid rgba(251, 91, 28, 0.35);
  box-shadow: none;
}

.process-figure {
  margin: 0;
}

.section-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(251, 91, 28, 0.35);
  box-shadow: none;
  border-radius: var(--td-radius);
}

.section-heading h2 {
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: #565656;
  max-width: 68ch;
  margin: 0 auto;
  font-weight: 300;
}

.flat-card h3,
.step-card h3 {
  font-size: 1.12rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.flat-card p,
.step-card p {
  color: #555555;
  margin: 0;
  font-weight: 300;
}

.co-robi-lead {
  max-width: 48ch;
  margin-top: 1rem;
  color: #4a4a4a;
}

.co-robi-lead strong {
  color: var(--td-text);
  font-weight: 600;
}

#co-robi .feature-card--flat {
  --fc-radius: var(--td-flat-a);
  --fc-radius-hover: var(--td-flat-a-hover);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.65rem 1.55rem;
  background: var(--td-primary);
  color: #ffffff;
  border: none;
  box-shadow: none;
  border-radius: var(--fc-radius);
  transition:
    border-radius 0.22s ease,
    transform 0.16s ease;
}

#co-robi .feature-card--flat-b {
  --fc-radius: var(--td-flat-b);
  --fc-radius-hover: var(--td-flat-b-hover);
}

#co-robi .feature-card--flat-c {
  --fc-radius: var(--td-flat-c);
  --fc-radius-hover: var(--td-flat-c-hover);
}

@media (hover: hover) {
  #co-robi .feature-card--flat:hover {
    border-radius: var(--fc-radius-hover);
  }
}

#co-robi .feature-card--flat:active {
  transform: scale(0.985);
}

#co-robi .feature-card--flat h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

#co-robi .feature-card--flat p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.94);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

.workflow-step {
  background: #fff;
  border: 1px solid rgba(251, 91, 28, 0.24);
  border-radius: var(--td-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  min-height: 102px;
  height: 100%;
  line-height: 1.35;
}

.workflow-step span {
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--td-primary);
  color: #fff;
  font-size: 0.82rem;
  margin-right: 0.45rem;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--td-primary);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}

.result-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-strip div {
  background: var(--td-surface-cream);
  border: 2px solid var(--td-primary);
  border-radius: var(--td-radius);
  padding: 0.9rem;
  text-align: center;
}

.result-strip strong {
  display: block;
  font-family: var(--td-font-heading);
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 400;
}

.result-strip span {
  color: #656565;
  font-size: 0.92rem;
  font-weight: 300;
}

.check-item {
  background: #fff9f6;
  border: 1px dashed rgba(251, 91, 28, 0.65);
  border-radius: var(--td-radius);
  padding: 1rem 1.1rem;
  font-weight: 600;
}

.check-item::before {
  content: "✔ ";
  color: var(--td-primary);
  font-weight: 800;
}

.step-card {
  height: 100%;
  position: relative;
}

.step-no {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--td-primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.compare-list {
  display: grid;
  gap: 0.65rem;
}

.compare-list li {
  background: #fff7f2;
  border-radius: var(--td-radius);
  padding: 0.75rem 0.9rem;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefits-grid div {
  background: var(--td-surface-cream);
  border: 2px solid var(--td-primary);
  border-radius: var(--td-radius);
  padding: 1rem;
  font-weight: 700;
}

.audience-section--centered .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
  text-wrap: balance;
}

.audience-section-inner {
  max-width: 64rem;
  margin-inline: auto;
}

.audience-preview {
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}

.audience-preview img {
  width: 100%;
}

.pricing-section .section-heading h2 {
  max-width: 24ch;
}

.pricing-lead {
  max-width: 58ch;
  color: #4a4a4a;
  font-weight: 300;
}

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

.pricing-plan {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(251, 91, 28, 0.22);
  border-radius: var(--td-flat-c);
  padding: 1.2rem 1.1rem 1.1rem;
  box-shadow: 0 12px 34px rgba(30, 30, 30, 0.05);
}

.pricing-plan--featured {
  border: 2px solid var(--td-primary);
  box-shadow: 0 18px 42px rgba(251, 91, 28, 0.16);
  transform: translateY(-4px);
}

.pricing-plan__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--td-primary);
  border-radius: var(--td-badge-shape);
}

.pricing-plan__name {
  margin: 0 0 0.4rem;
  font-size: 1.16rem;
  color: var(--td-text);
}

.pricing-plan__price {
  margin: 0;
  font-family: var(--td-font-heading);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
  color: var(--td-primary);
}

.pricing-plan__price span {
  font-family: var(--td-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #5a5a5a;
}

.pricing-plan__setup {
  margin: 0.6rem 0 0.75rem;
  font-size: 0.9rem;
  color: #4a4a4a;
  font-weight: 400;
}

.pricing-plan__list {
  display: grid;
  gap: 0.5rem;
}

.pricing-plan__list li {
  position: relative;
  padding-left: 1.25rem;
  color: #373737;
  font-size: 0.94rem;
  line-height: 1.45;
}

.pricing-plan__list li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  top: -0.02rem;
  color: var(--td-primary);
  font-size: 1.1em;
}

.pricing-matrix-wrap {
  background: #ffffff;
  border: 1px solid rgba(251, 91, 28, 0.2);
  border-radius: clamp(14px, 2.5vw, 20px);
  overflow: auto;
  box-shadow: 0 14px 40px rgba(30, 30, 30, 0.05);
}

.pricing-matrix {
  min-width: 740px;
  margin: 0;
  color: #2f2f2f;
}

.pricing-matrix thead th {
  border-bottom: 1px solid rgba(251, 91, 28, 0.2);
  padding: 0.9rem 0.95rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4a4a4a;
  background: rgba(251, 91, 28, 0.08);
}

.pricing-matrix tbody th,
.pricing-matrix tbody td {
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid rgba(251, 91, 28, 0.12);
  font-size: 0.93rem;
  vertical-align: middle;
}

.pricing-matrix tbody th {
  width: 33%;
  font-weight: 500;
  color: var(--td-text);
}

.pricing-matrix tbody tr:last-child th,
.pricing-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 300;
}

.audience-lead {
  margin: 1rem 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--td-font-body);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.6;
}

.audience-chip-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--td-font-body);
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.audience-chips--centered {
  justify-content: center;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  font-family: var(--td-font-body);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--td-primary);
  background: #ffffff;
  border: 1px solid #ffffff;
}

@media (hover: hover) {
  .audience-chip:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--td-primary-dark);
    border-color: #ffffff;
  }
}

.co-daje-lead {
  max-width: 48ch;
  color: #4a4a4a;
  font-weight: 300;
}

.co-daje-typing-wrap {
  width: 100%;
  margin: 0 0 2.75rem;
  padding: 1.25rem clamp(1rem, 4vw, 3.5rem) 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid rgba(251, 91, 28, 0.12);
}

.co-daje-typing-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.co-daje-typing {
  margin: 0;
  width: 100%;
  min-height: clamp(8rem, 21vw, 11.5rem);
  display: grid;
  place-items: center;
  padding-block: 0.35rem;
  text-align: center;
  font-family: var(--td-font-heading);
  font-size: clamp(1.28rem, 3.1vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--td-text);
  text-wrap: balance;
}

.co-daje-typing-line {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.co-daje-typing-prefix {
  color: #2f2f2f;
  font-weight: 400;
}

.co-daje-typing-phrase {
  color: var(--td-primary);
  font-weight: 400;
}

.co-daje-points {
  max-width: 40rem;
  display: grid;
  gap: 0.7rem;
  padding: 0;
}

.co-daje-points li {
  position: relative;
  padding-left: 2.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3d3d3d;
  font-weight: 300;
}

.co-daje-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("img/water-mark-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.82;
}

.co-daje-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 54rem;
  margin: 0 auto 1.8rem;
}

.co-daje-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--td-primary);
  background: var(--td-primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
}

@media (hover: hover) {
  .co-daje-badge:hover {
    background: var(--td-primary-dark);
    border-color: var(--td-primary-dark);
    color: #ffffff;
  }
}

.co-daje-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 64rem;
  margin: 0 auto;
}

.co-daje-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(251, 91, 28, 0.2);
  border-radius: var(--td-flat-c);
  padding: 1rem 1rem 1.05rem;
}

.co-daje-box h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--td-text);
}

.co-daje-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
  color: #3f3f3f;
}

.illustration-showcase-section .section-heading h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.illustration-showcase-heading {
  text-wrap: balance;
}

.illustration-showcase-lead {
  max-width: 48ch;
  margin-top: 1rem;
  color: #4a4a4a;
  font-weight: 300;
}

.illustration-showcase-lead strong {
  color: var(--td-text);
  font-weight: 600;
}

.cta-copy {
  max-width: 52ch;
  color: #5a5a5a;
  font-weight: 300;
}

.site-footer.td-footer {
  --td-footer-bg: var(--td-primary);
  --td-footer-muted: rgba(255, 255, 255, 0.82);
  --td-footer-line: rgba(255, 255, 255, 0.26);
  background: var(--td-footer-bg);
  color: #ffffff;
  border-top: 1px solid var(--td-footer-line);
  padding: 3.25rem 0 2.5rem;
  font-family: var(--td-font-body);
}

@media (min-width: 992px) {
  .site-footer.td-footer {
    padding: 4rem 0 2.75rem;
  }
}

.td-footer__inner {
  max-width: 72rem;
}

.td-footer__grid {
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .td-footer__grid {
    padding-bottom: 2.5rem;
  }
}

.td-footer__title {
  font-family: var(--td-font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1.15rem;
}

.td-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.td-footer__link {
  display: inline-block;
  color: var(--td-footer-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  max-width: 100%;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.td-footer__link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.td-footer__link:focus-visible {
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .td-footer__link:hover {
    transform: none;
  }
}

.td-footer__anchors {
  padding: 1.75rem 0 0;
  margin-top: 0.25rem;
  border-top: 1px solid var(--td-footer-line);
}

.td-footer__anchor {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.td-footer__anchor:hover {
  color: #ffffff;
}

.td-footer__bottom {
  text-align: center;
  padding-top: 2.25rem;
}

.td-footer__divider {
  margin: 0 auto 1.75rem;
  max-width: 48rem;
  border: 0;
  border-top: 1px solid var(--td-footer-line);
  opacity: 1;
}

.td-footer__tagline {
  font-family: var(--td-font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.td-footer__subline {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--td-footer-muted);
  margin: 0 0 1.25rem;
}

.td-footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .section-space {
    padding: 4.5rem 0;
  }

  .hero.section-space {
    padding-top: clamp(6.25rem, 11vw, 8.5rem);
    padding-bottom: 4.5rem;
  }

  .hero-title:not(.hero-title--modern) {
    max-width: none;
  }

  .hero-title--modern {
    max-width: none;
  }

  .hero-modern-layout {
    gap: clamp(2.2rem, 5.5vw, 3.1rem);
  }

  .hero-modern-content,
  .hero-modern-stack {
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero--modern .hero-modern-cta {
    justify-content: center !important;
  }

  .hero-points--modern {
    max-width: 52rem;
  }

  .hero-watermark-bg img {
    width: min(72vw, 560px);
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    line-height: 1;
    padding: 0.15rem 0;
  }

  .result-strip {
    grid-template-columns: 1fr;
  }

  .co-daje-box-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-plan--featured {
    transform: none;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    height: 46px;
  }

  .co-daje-badge {
    font-size: 0.8rem;
  }

  .co-daje-box-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Nowoczesny układ sekcji (hero stack + rytm + karty) */
.section-band.section-space {
  padding-block: clamp(4rem, 9vw, 6.75rem);
}

.section-heading--modern h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-flat--cream .section-heading--modern h2,
.section-flat--white .section-heading--modern h2 {
  color: var(--td-text);
}

.section-flat--brand .section-heading--modern h2 {
  color: #ffffff;
}

.trail-section--modern .trail-header--modern .trail-title {
  font-size: clamp(1.95rem, 4vw, 2.85rem);
}

.trail-section--modern .trail-lead--trop {
  max-width: 44rem;
}

.section-intro--modern {
  border-top-width: 0;
}

.intro-lead--modern {
  max-width: 42rem;
  font-size: clamp(1.02rem, 2.2vw, 1.14rem);
}

.intro-signup--modern {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.35rem, 5vw, 2.75rem) clamp(1.5rem, 3.5vw, 1.95rem);
  border-radius: clamp(14px, 2.5vw, 20px);
  border: 1px solid rgba(209, 217, 224, 0.9);
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
}

.intro-signup--modern .intro-signup-fields {
  width: 100%;
  min-width: 0;
}

.intro-signup--modern .intro-signup-input {
  border-radius: var(--td-radius);
}

.intro-signup--modern .intro-signup-submit {
  --bs-btn-border-radius: var(--td-radius);
  border-radius: var(--td-radius);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.intro-signup--modern .intro-signup-submit:hover,
.intro-signup--modern .intro-signup-submit:focus-visible {
  border-radius: var(--td-radius);
}

.co-daje-typing-wrap--modern {
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(251, 91, 28, 0.16);
  box-shadow: 0 18px 52px rgba(30, 30, 30, 0.07);
}

.kontakt-section__title {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* Układ strony w stylu GitHub: canvas, stała szerokość kolumny, obramowania sekcji */
body.td-page-shell {
  background: var(--td-gh-canvas);
}

body.td-page-shell .container,
body.td-page-shell .container-sm,
body.td-page-shell .container-md,
body.td-page-shell .container-lg,
body.td-page-shell .container-xl,
body.td-page-shell .container-xxl {
  max-width: var(--td-shell-max);
}

body.td-page-shell .td-footer__inner {
  max-width: var(--td-shell-max);
}

body.td-page-shell main .section-flat--white {
  background: #ffffff;
}

body.td-page-shell main .section-flat--cream {
  background: var(--td-gh-canvas);
}

body.td-page-shell main > section {
  border-bottom: 1px solid var(--td-gh-border);
}

body.td-page-shell main > section:last-of-type {
  border-bottom: none;
}

body.td-page-shell .td-watermark-band {
  border-bottom: 1px solid var(--td-gh-border);
}
