html {
  scroll-behavior: smooth;
}

body.tourpodpiska-body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(10, 92, 255, 0.12), transparent 34%),
    radial-gradient(circle at top left, rgba(255, 209, 120, 0.18), transparent 28%),
    #f5f7fb;
  color: #0f172a;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tourpodpiska-body * {
  box-sizing: border-box;
}

.tourpodpiska-body a {
  color: inherit;
  text-decoration: none;
}

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

.tp-shell {
  overflow: clip;
}

.tp-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.tp-container--narrow {
  width: min(900px, calc(100% - 32px));
}

.tp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.admin-bar .tp-header {
  top: 32px;
}

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

.tp-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.tp-brand__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.tp-brand__subtitle {
  font-size: 0.78rem;
  color: #5b6477;
}

.tp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #43506a;
  font-size: 0.95rem;
}

.tp-nav a:hover,
.tp-footer a:hover {
  color: #0a5cff;
}

.tp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a5cff 0%, #2972ff 100%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  border: 0;
  box-shadow: 0 14px 34px rgba(10, 92, 255, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.tp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(10, 92, 255, 0.28);
}

.tp-button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.tp-button--light {
  background: #ffffff;
  color: #0a5cff;
  box-shadow: none;
}

.tp-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 92, 255, 0.08);
  color: #0a5cff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tp-eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  color: #dbe7ff;
}

.tp-note {
  color: #5b6477;
  font-size: 0.92rem;
}

.tp-hero {
  padding: 56px 0 40px;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.tp-hero__content h1,
.tp-section__head h2,
.tp-final__card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.tp-hero__content h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.tp-lead,
.tp-section__head p,
.tp-final__card p {
  color: #5b6477;
  line-height: 1.65;
}

.tp-lead {
  margin: 18px 0 0;
  font-size: 1.16rem;
  max-width: 640px;
}

.tp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.tp-checklist {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tp-checklist li,
.tp-list-item,
.tp-fit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tp-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(10, 92, 255, 0.12);
  position: relative;
}

.tp-check::after {
  content: "";
  position: absolute;
  inset: 7px 6px 6px 7px;
  border-right: 2px solid #0a5cff;
  border-bottom: 2px solid #0a5cff;
  transform: rotate(45deg);
}

.tp-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.tp-hero__trust-item {
  padding: 18px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.tp-hero__trust-item + .tp-hero__trust-item {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.tp-card,
.tp-step,
.tp-phone__screen,
.tp-product-card,
.tp-final__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.tp-card {
  border-radius: 32px;
}

.tp-card--benefit {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(10, 92, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.96));
}

.tp-card__label {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(10, 92, 255, 0.08);
  color: #0a5cff;
  font-size: 0.83rem;
  font-weight: 700;
}

.tp-price-row,
.tp-benefit-card__prices div,
.tp-product-prices div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tp-price-row + .tp-price-row,
.tp-benefit-card__prices div + div,
.tp-product-prices div + div {
  margin-top: 18px;
}

.tp-price-old {
  color: #7d879a;
  text-decoration: line-through;
}

.tp-price-current {
  color: #0a5cff;
  font-family: "Manrope", sans-serif;
  font-size: 1.56rem;
  font-weight: 800;
}

.tp-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(22, 163, 74, 0.1);
  color: #0d8f40;
}

.tp-saving strong,
.tp-price-save {
  color: #0d8f40;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.tp-saving strong {
  font-size: 2.1rem;
}

.tp-benefit-caption {
  margin: 20px 0 6px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-align: center;
}

.tp-benefit-meta,
.tp-section__note {
  color: #7d879a;
  font-size: 0.9rem;
  text-align: center;
}

.tp-strip {
  padding: 4px 0 18px;
}

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

.tp-pill {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #1f2937;
  font-weight: 700;
  text-align: center;
}

.tp-section {
  padding: 88px 0;
}

.tp-section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(230, 236, 248, 0.38));
}

.tp-section__head {
  margin: 0 auto 44px;
  max-width: 760px;
  text-align: center;
}

.tp-section__head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.tp-section__head p {
  margin: 14px 0 0;
  font-size: 1.04rem;
}

.tp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tp-step {
  padding: 34px 28px;
  border-radius: 32px;
  text-align: center;
}

.tp-step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a5cff 0%, #2972ff 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.tp-step h3,
.tp-product-meta h3,
.tp-benefit-card__top h3,
.tp-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tp-step p,
.tp-card p,
.tp-product-meta p {
  margin: 0;
  color: #5b6477;
  line-height: 1.6;
}

.tp-search-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px;
}

.tp-search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tp-field {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tp-field__label {
  display: block;
  margin-bottom: 8px;
  color: #7d879a;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tp-field strong {
  font-size: 1rem;
}

.tp-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0 24px;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(10, 92, 255, 0.06);
  border: 1px solid rgba(10, 92, 255, 0.16);
}

.tp-toggle p {
  margin: 6px 0 0;
  color: #5b6477;
  font-size: 0.92rem;
}

.tp-toggle__visual {
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a5cff 0%, #2972ff 100%);
  padding: 4px;
}

.tp-toggle__visual span {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  border-radius: 999px;
  background: #fff;
}

.tp-product-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 34px;
}

.tp-product-card__media {
  position: relative;
  min-height: 380px;
}

.tp-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.tp-badge--soft {
  position: static;
  background: rgba(10, 92, 255, 0.08);
  color: #0a5cff;
  border: 0;
}

.tp-product-card__content {
  padding: 34px 30px;
  background: rgba(248, 250, 255, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tp-product-meta p + p {
  margin-top: 6px;
}

.tp-product-prices {
  margin: 28px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.tp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tp-benefit-card {
  padding: 28px;
}

.tp-benefit-card__top p {
  margin-top: 6px;
}

.tp-benefit-card__prices {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.tp-table-wrap {
  overflow-x: auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.tp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.tp-table th,
.tp-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.tp-table th:first-child,
.tp-table td:first-child {
  text-align: left;
}

.tp-table thead th {
  background: rgba(10, 92, 255, 0.06);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.tp-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}

.tp-phone {
  display: flex;
  justify-content: center;
}

.tp-phone__screen {
  width: 280px;
  min-height: 560px;
  padding: 28px 22px;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
}

.tp-phone__screen strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.tp-phone__screen span,
.tp-phone__screen p {
  color: #5b6477;
}

.tp-phone__screen--main,
.tp-phone__screen--results,
.tp-phone__screen--paywall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 243, 253, 0.92));
}

.tp-phone__field,
.tp-mini-card {
  border-radius: 18px;
  background: rgba(10, 92, 255, 0.1);
}

.tp-phone__field {
  height: 60px;
  margin-top: 16px;
}

.tp-phone__cta {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a5cff 0%, #2972ff 100%);
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-align: center;
}

.tp-mini-card {
  height: 118px;
  margin-top: 16px;
}

.tp-phone__saving {
  margin-top: 18px;
  padding: 24px 18px;
  border-radius: 22px;
  background: rgba(22, 163, 74, 0.1);
  color: #0d8f40 !important;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
}

.tp-destinations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tp-destination {
  position: relative;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.08);
}

.tp-destination::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(5, 15, 35, 0.7) 100%);
}

.tp-destination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tp-destination span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.tp-destination:hover img {
  transform: scale(1.05);
}

.tp-list-grid,
.tp-fit-grid,
.tp-trust-grid {
  display: grid;
  gap: 18px;
}

.tp-list-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tp-fit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tp-fit-card {
  padding: 24px;
}

.tp-fit-card p {
  color: #0f172a;
}

.tp-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tp-trust-grid .tp-card,
.tp-faq__item {
  padding: 28px;
}

.tp-faq {
  display: grid;
  gap: 18px;
}

.tp-faq__item p {
  margin-top: 10px;
}

.tp-final {
  padding: 0 0 88px;
}

.tp-final__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 120, 0.24), transparent 24%),
    linear-gradient(135deg, #0b4de8 0%, #0a5cff 52%, #1d73ff 100%);
}

.tp-final__card h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-top: 12px;
}

.tp-final__card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.tp-footer {
  padding: 34px 0 24px;
  background: rgba(5, 15, 35, 0.98);
  color: #d5dded;
}

.tp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.tp-brand--footer .tp-brand__title,
.tp-footer h3 {
  color: #fff;
}

.tp-footer h3 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
}

.tp-footer p,
.tp-footer span,
.tp-footer a {
  color: #9caccc;
  display: block;
  line-height: 1.7;
}

.tp-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  transform: translateY(120%);
  transition: transform 220ms ease;
  pointer-events: none;
}

.tp-sticky-cta.is-visible {
  transform: translateY(0);
}

.tp-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  pointer-events: auto;
}

.tp-sticky-cta strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.tp-sticky-cta span {
  display: block;
  margin-top: 4px;
  color: #5b6477;
  font-size: 0.88rem;
}

.tp-sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.tp-close:hover {
  background: rgba(15, 23, 42, 0.1);
}

@media (max-width: 1100px) {
  .tp-destinations {
    grid-template-columns: repeat(3, 1fr);
  }

  .tp-phones {
    grid-template-columns: 1fr;
  }

  .tp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.admin-bar .tp-header {
    top: 46px;
  }

  .tp-header__inner,
  .tp-nav {
    flex-wrap: wrap;
  }

  .tp-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-bottom: 12px;
  }

  .tp-hero__grid,
  .tp-product-card,
  .tp-benefit-grid,
  .tp-trust-grid,
  .tp-steps,
  .tp-strip__grid,
  .tp-list-grid,
  .tp-fit-grid,
  .tp-footer__grid,
  .tp-final__card {
    grid-template-columns: 1fr;
  }

  .tp-final__card {
    display: grid;
  }

  .tp-search-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .tp-container {
    width: min(100% - 20px, 1200px);
  }

  .tp-header__inner {
    min-height: 70px;
  }

  .tp-nav {
    display: none;
  }

  .tp-hero {
    padding-top: 36px;
  }

  .tp-hero__trust {
    grid-template-columns: 1fr;
  }

  .tp-hero__trust-item + .tp-hero__trust-item {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .tp-card--benefit,
  .tp-search-card,
  .tp-trust-grid .tp-card,
  .tp-faq__item,
  .tp-step,
  .tp-benefit-card {
    padding: 22px;
    border-radius: 26px;
  }

  .tp-strip__grid,
  .tp-destinations,
  .tp-list-grid,
  .tp-fit-grid {
    grid-template-columns: 1fr;
  }

  .tp-destination {
    min-height: 180px;
  }

  .tp-final__card {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .tp-footer__grid {
    grid-template-columns: 1fr;
  }

  .tp-sticky-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-sticky-cta__actions {
    justify-content: space-between;
  }
}
