:root {
  --gold: #e99c0e;
  --gold-bright: #ffa40c;
  --teal: #04969d;
  --teal-bright: #11a6ac;
  --navy: #00112c;
  --ink: #041735;
  --travel-header: #eef5fb;
  --travel-mist: #f3f7fb;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: "Playfair Display", Georgia, serif;
}

#stage {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

.panel-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.panel-bg__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#panel-biznes .panel-bg__img {
  object-position: 58% center;
}

#panel-podroze .panel-bg__img {
  object-position: center center;
}

.panel-bg__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-bg__veil--biznes {
  background: linear-gradient(
    90deg,
    rgba(3, 18, 35, 0.72) 0%,
    rgba(3, 18, 35, 0.2) 55%,
    rgba(3, 18, 35, 0) 100%
  );
}

.panel-bg__veil--podroz {
  background: linear-gradient(
    90deg,
    rgba(3, 35, 45, 0.68) 0%,
    rgba(3, 35, 45, 0.22) 55%,
    rgba(3, 35, 45, 0) 100%
  );
}

.panel {
  transition: filter 420ms ease, transform 420ms ease;
}

.panel.is-dim {
  filter: brightness(0.72) saturate(0.9);
}

.panel.is-hot {
  filter: brightness(1.06);
}

.panel-copy {
  --edge: 4.5vw;
  --inner: 16%;
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.panel-copy--left {
  align-items: flex-start;
  text-align: left;
  padding: 0 var(--inner) 0 var(--edge);
}

.panel-copy--right {
  align-items: flex-end;
  text-align: right;
  padding: 0 var(--edge) 0 var(--inner);
}

body:not(.page-inner) #stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.footer-bar {
  background: linear-gradient(
    90deg,
    #00112c 0%,
    #021a3a 28%,
    #0a4060 58%,
    #04969d 100%
  );
}

.footer-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.footer-icon.icon {
  --icon-size: 2rem;
  color: inherit;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease;
  min-height: 0;
}

.footer-item span span:last-child {
  white-space: nowrap;
}

.footer-item.last {
  border-right: 0;
}

.footer-item:hover {
  background: rgba(233, 156, 14, 0.1);
}

.icon-wrap {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

#toast.is-visible {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html:has(body.page-inner) {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

body.page-inner {
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --content-max: 1680px;
  --content-gutter: 4.5vw;
  --about-gap: 20px;
  --header-height: 92px;
  --header-pad-x: max(
    var(--content-gutter),
    calc((100vw - var(--content-max)) / 2 + var(--content-gutter))
  );
  --section-pad: 32px;
  --section-pad-y: var(--section-pad);
  --section-gap: 40px;
  --section-head-gap: var(--space-2);
  --section-desc-gap: var(--space-5);
  --section-content-gap: var(--space-7);
  --section-cta-gap: var(--space-6);
  --content-gap: 20px;
  --radius-sm: 4px;
  --radius-md: 5px;
  --radius-lg: 18px;
  --btn-height: 48px;
  --btn-pad-x: 24px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Source Sans 3", system-ui, sans-serif;
  --font-body: 16px;
  --font-small: 15px;
  --font-h1: clamp(40px, 4.8vw, 68px);
  --font-h2: clamp(32px, 3.2vw, 48px);
  --font-h2-about: clamp(32px, 3.2vw, 48px);
  --font-h3: 19px;
  --font-kicker: 14px;
  font-family: var(--font-ui);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
  scroll-behavior: smooth;
}

.page-inner .font-display,
.page-inner .hero-title,
.page-inner .brand-name,
.page-inner .section-2 h2,
.page-inner .about-copy h2,
.page-inner .steps-head h2 {
  font-family: var(--font-display);
}

#oferta,
#oferta-grid,
#oferta-rynek,
#oferta-partnerstwa,
#oferta-kontakty,
#oferta-handel,
#planowanie,
#o-mnie,
#wspolpraca,
#pierwsze-kroki,
#przed-wyjazdem,
#faq,
#plan-krok,
#kontakt {
  scroll-margin-top: var(--header-height, 92px);
}

.page-travel {
  background: var(--travel-mist);
  --btn-radius: 5px;
  --zone-accent: var(--teal);
  --surface-bridge-height: 100px;
  --surface-hero-bridge: #ddeef4;
  --surface-s2-top: #ddeef4;
  --surface-s2-bottom: #e4f1f5;
  --surface-s3-top: #f5f1e8;
  --surface-s3-bottom: #f7f3ec;
  --surface-s4-top: #f4f9fa;
  --surface-s4-bottom: #edf6f8;
  --surface-footer: #dceaf1;
  --transition-from-s2: var(--surface-hero-bridge);
  --surface-start-s2: var(--surface-s2-top);
  --surface-end-s2: var(--surface-s2-bottom);
  --transition-from-s3: var(--surface-end-s2);
  --surface-start-s3: var(--surface-s3-top);
  --surface-end-s3: var(--surface-s3-bottom);
  --transition-from-s4: var(--surface-end-s3);
  --surface-start-s4: var(--surface-s4-top);
  --surface-end-s4: var(--surface-s4-bottom);
  --transition-from-footer: var(--surface-end-s4);
  --surface-start-footer: var(--surface-footer);
  --surface-s2-radial: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
}

.page-biznes {
  background: var(--navy);
  --btn-radius: 5px;
  --zone-accent: var(--gold);
  --surface-bridge-height: 100px;
  --surface-hero-bridge: #071a33;
  --surface-s2-top: #071a33;
  --surface-s2-bottom: #071a33;
  --surface-s3-top: #102b4c;
  --surface-s3-bottom: #0d2440;
  --surface-s4-top: #04142a;
  --surface-s4-bottom: #030f1f;
  --surface-footer: #020b1a;
  --transition-from-s2: var(--surface-hero-bridge);
  --surface-start-s2: var(--surface-s2-top);
  --surface-end-s2: var(--surface-s2-bottom);
  --transition-from-s3: var(--surface-end-s2);
  --surface-start-s3: var(--surface-s3-top);
  --surface-end-s3: var(--surface-s3-bottom);
  --transition-from-s4: var(--surface-end-s3);
  --surface-start-s4: var(--surface-s4-top);
  --surface-end-s4: var(--surface-s4-bottom);
  --transition-from-footer: var(--surface-end-s4);
  --surface-start-footer: var(--surface-footer);
  --surface-s2-radial: radial-gradient(
    ellipse 70% 50% at 50% 55%,
    rgba(30, 60, 100, 0.18),
    transparent 65%
  );
}

.page-inner #stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
  gap: 0;
}

.content-shell {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
}

.page-inner .inner-main {
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: 0;
}

.page-inner .site-footer {
  padding-block: 0;
  padding-inline: 0;
}

.page-inner .section-2,
.page-inner .section-3,
.page-inner .section-4 {
  padding-block: var(--section-pad-y);
  padding-inline: 0;
}

.page-inner .section-2,
.page-inner .section-3,
.page-inner .section-4,
.page-inner .site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-inner .inner-main::before,
.page-inner .section-2::before,
.page-inner .section-3::before,
.page-inner .section-4::before,
.page-inner .site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--section-gradient, var(--surface-top));
}

.page-inner .section-2::after,
.page-inner .section-3::after,
.page-inner .section-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--surface-bridge-height);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--bridge-from, var(--surface-top)),
    var(--surface-top, var(--bridge-from))
  );
}

.page-inner .site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--footer-bridge-height, var(--surface-bridge-height));
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--bridge-from, var(--surface-top)),
    var(--surface-top, var(--bridge-from))
  );
}

.page-biznes .inner-main {
  --section-gradient: transparent;
}

.page-biznes .inner-main .panel-bg__img {
  object-position: 58% center;
}

.page-biznes .inner-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 72px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, var(--surface-hero-bridge), transparent);
}

.page-travel .inner-main {
  --section-gradient: transparent;
}

.page-travel .inner-main .panel-bg__img {
  object-position: center center;
}

.page-travel .inner-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 72px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, var(--surface-hero-bridge), transparent);
}

.page-inner.page-biznes .panel-bg__veil--biznes {
  background: linear-gradient(
    90deg,
    rgba(0, 17, 44, 0.88) 0%,
    rgba(0, 17, 44, 0.52) 35%,
    rgba(0, 17, 44, 0.12) 70%,
    rgba(0, 17, 44, 0) 100%
  );
}

.page-inner.page-travel .panel-bg__veil--podroz {
  background: linear-gradient(
    90deg,
    rgba(4, 38, 48, 0.84) 0%,
    rgba(4, 38, 48, 0.46) 35%,
    rgba(4, 38, 48, 0.1) 70%,
    rgba(4, 38, 48, 0) 100%
  );
}

.hero-title {
  margin: 0;
  font-size: var(--font-h1);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.page-travel .hero-title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 8, 24, 0.45);
}

.page-biznes .hero-title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 8, 24, 0.45);
}

.hero-lead {
  max-width: 28rem;
  margin: 0;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
}

.page-biznes .hero-lead {
  color: #e8edf2;
}

.page-travel .hero-lead {
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  height: var(--header-height, 92px);
  margin: 0;
  padding: 0 var(--header-pad-x, 4.5vw);
  flex-shrink: 0;
  z-index: 40;
  border-radius: 0;
}

.site-header--travel {
  background: linear-gradient(180deg, #f7fbfe 0%, #e4f0f8 100%);
  border-bottom: 1px solid rgba(4, 150, 157, 0.28);
}

.site-header--biznes {
  background: var(--navy);
  border-bottom: 1px solid rgba(233, 156, 14, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  justify-self: start;
}

.brand__logo-wrap {
  display: flex;
  align-items: center;
  height: 56px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo--header {
  width: 124px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-logo--footer {
  max-height: 56px;
  max-width: 240px;
}

.brand-logo--hero {
  max-width: min(360px, 46vw);
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

body:not(.page-inner) .hero-brand {
  position: absolute;
  left: 50%;
  top: 31%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.25rem 1rem;
}

body:not(.page-inner) .hero-brand::before,
body:not(.page-inner) .hero-brand::after {
  display: none;
}

body:not(.page-inner) .hero-brand__mark,
body:not(.page-inner) .hero-brand__title,
body:not(.page-inner) .hero-brand__url {
  position: relative;
  z-index: 1;
}

body:not(.page-inner) .hero-brand__mark {
  display: block;
  width: auto;
  max-width: min(200px, 24vw);
  height: auto;
  object-fit: contain;
}

body:not(.page-inner) .hero-brand__mark--full {
  max-width: min(280px, 26vw);
}

body:not(.page-inner) .hero-brand__title {
  margin: 0.3rem 0 0;
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.4),
    0 1px 8px rgba(255, 255, 255, 0.25);
}

body:not(.page-inner) .hero-brand__url {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.5rem 0 0;
  font-size: clamp(11px, 0.72vw, 12px);
  letter-spacing: 0.05em;
  color: #1a4a6e;
  opacity: 0.82;
}

body:not(.page-inner) .hero-brand__line {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
}

body:not(.page-inner) .hero-brand__line--pl {
  background: #dc143c;
}

body:not(.page-inner) .hero-brand__line--ph {
  background: #0038a8;
}

.brand-logo--hub {
  max-height: 44px;
  max-width: 130px;
  opacity: 0.95;
}

.brand-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-url {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
}

.brand-url::before,
.brand-url::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.site-header--travel .brand-name {
  color: #3e5170;
}
.site-header--travel .brand-url {
  color: var(--gold);
}
.site-header--biznes .brand-name,
.site-header--biznes .brand-url {
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 18px;
  justify-self: center;
}

.nav-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 6px;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 120ms ease;
}

.nav-link::after {
  transition: background-color 180ms ease;
}

.site-header--travel .nav-link {
  color: #3e5170;
}
.site-header--biznes .nav-link {
  color: #fff;
}

.nav-link.is-active {
  font-weight: 600;
}
.site-header--travel .nav-link.is-active {
  color: var(--zone-accent);
}
.site-header--travel .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--zone-accent);
}
.site-header--biznes .nav-link.is-active {
  color: var(--zone-accent);
}
.site-header--biznes .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--zone-accent);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  justify-self: end;
}
.site-header--travel .btn-contact {
  border: 1px solid var(--teal);
  color: var(--teal);
}
.site-header--biznes .btn-contact {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.inner-main {
  position: relative;
  flex: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  height: auto;
  min-height: min(520px, calc(100dvh - var(--header-height, 92px)));
  max-height: none;
}

.inner-main > .panel-bg,
.inner-main > .absolute {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 1;
}

.page-inner .section-2 > .absolute,
.page-inner .section-3 > .absolute,
.page-inner .section-4 > .absolute {
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 10;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-deco {
  position: relative;
  z-index: 8;
  grid-column: 2;
  grid-row: 1;
  min-height: 360px;
  pointer-events: none;
}

.inner-copy {
  position: relative;
  z-index: 2;
  width: min(34rem, 100%);
  padding: 0;
}

.page-inner .inner-copy::before {
  content: none;
  display: none;
}

.feature-strip {
  position: relative;
  z-index: 12;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--content-max));
  margin-inline: auto;
  margin-top: 0;
  min-height: 76px;
  padding-block: var(--space-3) var(--space-4);
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
}

.crumb {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.page-travel .crumb {
  color: rgba(255, 255, 255, 0.82);
}
.page-biznes .crumb {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  margin: 0 0 var(--space-2);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  opacity: 0.55;
}

.page-travel .breadcrumb,
.page-travel .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.page-biznes .breadcrumb,
.page-biznes .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.rule-short {
  display: block;
  width: 56px;
  height: 2px;
  margin: var(--space-2) 0 var(--space-3);
}
.page-travel .rule-short {
  background: #fff;
}
.page-biznes .rule-short {
  background: var(--zone-accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: var(--btn-height);
  padding: 0 var(--btn-pad-x);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.btn-teal-solid {
  background: var(--teal);
  color: #fff;
}
.btn-teal-ghost {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-gold-solid {
  background: var(--gold-bright);
  color: var(--navy);
}
.btn-gold-ghost {
  border: 1px solid var(--gold);
  color: #fff;
  background: transparent;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  width: var(--icon-size, 24px);
  height: var(--icon-size, 24px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon use {
  stroke: currentColor;
  fill: none;
}

.page-inner .icon {
  overflow: visible;
}

.page-inner .icon use {
  stroke: currentColor;
  fill: none;
}

.btn-contact .icon {
  color: inherit;
}

.icon-sm.icon {
  --icon-size: 18px;
}

.offer-icon.icon {
  --icon-size: 36px;
}

.step-icon.icon {
  --icon-size: 36px;
}

.footer-contact .icon {
  --icon-size: 16px;
  color: var(--footer-accent);
}

.footer-social .icon {
  --icon-size: 16px;
}

.flag-orb {
  display: block;
  object-fit: cover;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  transition:
    background 180ms var(--ease-smooth),
    color 180ms var(--ease-smooth),
    transform 200ms var(--ease-smooth);
}

.feature-link {
  cursor: pointer;
}

.feature-link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.feature-link:focus-visible {
  outline: 2px solid var(--zone-accent);
  outline-offset: 2px;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-orb {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid currentColor;
}

.icon-orb svg,
.icon-orb .icon {
  width: 22px;
  height: 22px;
}

.page-travel .icon-orb {
  color: rgba(255, 255, 255, 0.92);
}
.page-biznes .icon-orb {
  color: var(--zone-accent);
}

.page-travel .feature-strip {
  color: #fff;
  background: rgba(4, 55, 68, 0.65);
}

.page-biznes .feature-strip {
  color: #fff;
  background: rgba(0, 17, 44, 0.82);
}

.page-travel .feature-kicker,
.page-biznes .feature-kicker {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.page-travel .feature-kicker {
  color: #fff;
}

.page-travel .feature-sub {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.page-biznes .feature-kicker {
  color: #fff;
}

.page-biznes .feature-sub {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.feature-sub {
  display: block;
  margin-top: 2px;
  font-size: var(--font-small);
  line-height: 1.5;
  opacity: 1;
}

.hub {
  position: absolute;
  inset: 8% 0 8%;
  width: 100%;
  z-index: 1;
}

.hub-arc {
  position: absolute;
  left: 12%;
  right: 8%;
  top: 0;
  height: 90px;
  opacity: 0.55;
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 16, 32, 0.4);
  border: 1px solid rgba(212, 160, 23, 0.45);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.12);
  opacity: 0.65;
}

.hub--visual-only .hub-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pin-label {
  position: absolute;
  top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  opacity: 0.65;
}
.pin-label--pl {
  left: 14%;
}
.pin-label--ph {
  right: 10%;
}

.flag-dot {
  width: 36px;
  height: 36px;
  margin: 0 auto 6px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.section-2 > .absolute svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-2-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-2 h2,
.about-copy h2,
.steps-head h2 {
  font-size: var(--font-h2);
  font-weight: 600;
  line-height: 1.1;
}

.about-copy h2 {
  font-size: var(--font-h2-about);
}

.section-2 h2 {
  margin: 0;
}

.section-2 .section-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin: var(--space-2) auto var(--section-head-gap);
}

.section-2 .lead {
  max-width: min(960px, 100%);
  margin: 0 auto;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  text-wrap: balance;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
  margin: var(--section-content-gap) 0 0;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-4) var(--space-4);
  min-height: 220px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  transition:
    border-color 200ms var(--ease-smooth),
    transform 200ms var(--ease-smooth),
    box-shadow 200ms var(--ease-smooth);
}

.offer-card h3,
.trust-item h3,
.step-item h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.3;
}

.offer-card h3 {
  margin: 10px 0 6px;
}

.offer-card p {
  margin: 0;
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.6;
  max-width: 18rem;
}

.offer-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

.section-2 .offer-rule {
  display: block;
  width: 36px;
  height: 2px;
  margin: 8px auto 10px;
}

.section-2--travel {
  --s-accent: #2d9299;
  --bridge-from: var(--transition-from-s2);
  --surface-top: var(--surface-start-s2);
  --surface-bottom: var(--surface-end-s2);
  --section-gradient:
    linear-gradient(180deg, var(--surface-top) 0%, var(--surface-bottom) 100%),
    var(--surface-s2-radial);
}

.section-2--travel h2,
.section-2--travel .lead,
.section-2--travel .offer-card h3 {
  color: #081838;
}

.section-2--travel .lead,
.section-2--travel .offer-card p {
  color: #081838;
}

.section-2--travel .offer-card p {
  color: #2f3d4f;
  opacity: 1;
}

.section-2--travel .offer-card {
  background: #f7fbfc;
  border: 1px solid rgba(40, 150, 155, 0.18);
  box-shadow: 0 1px 4px rgba(8, 24, 56, 0.04);
}

.section-2--travel .offer-card:hover {
  border-color: rgba(40, 150, 155, 0.45);
  transform: translateY(-2px);
}

.section-2--travel .offer-icon,
.section-2--travel .offer-rule,
.section-2--travel .section-rule {
  color: #2d9299;
}

.section-2--travel .offer-rule,
.section-2--travel .section-rule {
  background: #2d9299;
}

.section-2--travel .btn-teal-solid {
  background: #2d9299;
  color: #fff;
}

.section-2--biznes {
  --bridge-from: var(--transition-from-s2);
  --surface-top: var(--surface-start-s2);
  --surface-bottom: var(--surface-end-s2);
  --section-gradient:
    linear-gradient(180deg, var(--surface-top) 0%, var(--surface-bottom) 100%),
    var(--surface-s2-radial);
}

.section-2--biznes h2,
.section-2--biznes .lead {
  color: #fff;
}

.section-2--biznes .lead {
  color: #e8edf2;
  opacity: 1;
}

.section-2--biznes .section-rule,
.section-2--biznes .offer-rule {
  background: #c69711;
}

.section-2--biznes .offer-card {
  background: #10243d;
  border: 1px solid rgba(198, 151, 17, 0.34);
  box-shadow: none;
}

.section-2--biznes .offer-card:hover {
  border-color: rgba(198, 151, 17, 0.65);
  transform: translateY(-2px);
}

.section-2--biznes .offer-card h3 {
  color: #fff;
}

.section-2--biznes .offer-card p {
  color: #c8d4e0;
}

.section-2--biznes .offer-icon {
  color: #c69711;
}

@media (min-width: 1280px) {
  .page-inner .section-2 {
    min-height: unset;
    padding-block: var(--section-pad-y);
    box-sizing: border-box;
  }

  .page-inner .section-2-inner {
    display: block;
    min-height: unset;
    padding-block: 0;
  }

  .section-2 .offer-card p {
    text-wrap: balance;
  }
}

.btn-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: var(--btn-height);
  padding: 0 var(--btn-pad-x);
  text-decoration: none;
  font-size: var(--font-body);
  font-weight: 600;
  line-height: 1;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--section-cta-gap);
}

.section-3 {
  position: relative;
  overflow: hidden;
}

.about-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
  gap: var(--content-gap);
  align-items: start;
}

.section-3 .photo-slot {
  margin-top: 0;
}

.about-photo {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-photo .about-byline {
  margin: 0;
}

.about-photo .about-byline__name,
.about-photo .about-byline__role {
  display: block;
}

.about-photo .about-byline__role::before {
  content: none;
}

.about-photo .about-byline__role {
  margin-top: 4px;
}

.photo-slot {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-slot__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 20%;
}

.kicker {
  display: inline-block;
  font-size: var(--font-kicker);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.kicker-rule {
  display: block;
  width: 28px;
  height: 2px;
  margin: var(--space-2) 0;
}

.kicker + .kicker-rule {
  margin-top: var(--space-2);
}

.about-copy h2 {
  margin: 0 0 var(--space-3);
}

.about-byline {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  line-height: 1.3;
}

.about-byline__name {
  display: inline;
  font-weight: 600;
}

.about-byline__role {
  display: inline;
  opacity: 0.82;
}

.about-byline__role::before {
  content: " · ";
}

.page-biznes .about-byline {
  color: #c8d4e0;
}

.page-travel .about-byline {
  color: #3a4a5c;
}

.about-copy > p:not(.about-byline) {
  margin: 0 0 var(--space-3);
  max-width: 36rem;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap);
  margin: var(--space-6) 0 0;
}

.trust-item {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  text-align: left;
}

.trust-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: var(--space-3);
  padding-top: 0;
}

.trust-item {
  padding-top: 0;
}

.trust-item h3 {
  margin: 0 0 6px;
}

.trust-item p {
  margin: 0;
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.5;
}

.section-cta--about {
  justify-content: flex-start;
  margin-top: var(--space-5);
  margin-bottom: 0;
}

.section-3--travel {
  --bridge-from: var(--transition-from-s3);
  --surface-top: var(--surface-start-s3);
  --surface-bottom: var(--surface-end-s3);
  --section-gradient: linear-gradient(
    180deg,
    var(--surface-top) 0%,
    var(--surface-bottom) 100%
  );
}

.section-3--travel .photo-slot {
  background: linear-gradient(180deg, #ebe6dc, #e0dbd2);
  border: 1px solid rgba(40, 150, 155, 0.35);
  box-shadow: 0 8px 24px rgba(8, 37, 64, 0.06);
  min-height: 300px;
  height: auto;
}

.section-3--travel .photo-slot__img {
  min-height: 300px;
  height: auto;
}

.section-3--travel .kicker,
.section-3--travel .about-copy h2,
.section-3--travel .trust-item h3 {
  color: #082540;
}

.section-3--travel .kicker-rule {
  background: rgba(40, 150, 155, 0.5);
}

.section-3--travel .about-copy > p,
.section-3--travel .trust-item p {
  color: #3a4a5c;
}

.section-3--travel .trust-rule {
  background: rgba(4, 150, 157, 0.45);
}

.btn-navy-solid {
  background: #03425f;
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 6px rgba(3, 66, 95, 0.1);
}

.section-3--travel .btn-navy-solid {
  background: #03425f;
  border: 1px solid rgba(40, 150, 155, 0.4);
}

.section-3--travel .section-cta--about .btn-navy-solid {
  box-shadow: 0 2px 6px rgba(3, 66, 95, 0.1);
}

.section-3--biznes {
  --bridge-from: var(--transition-from-s3);
  --surface-top: var(--surface-start-s3);
  --surface-bottom: var(--surface-end-s3);
  --section-gradient: linear-gradient(
    180deg,
    var(--surface-top) 0%,
    var(--surface-bottom) 100%
  );
}

.section-3--biznes .photo-slot {
  background: linear-gradient(180deg, #0c2448, #071530);
  border: 1px solid rgba(233, 170, 49, 0.45);
  min-height: 300px;
  height: auto;
}

.section-3--biznes .photo-slot__img {
  min-height: 300px;
  height: auto;
}

.section-3--biznes .kicker {
  color: #e9aa31;
}

.section-3--biznes .kicker-rule {
  background: #e9aa31;
}

.section-3--biznes .about-copy h2,
.section-3--biznes .trust-item h3 {
  color: #fff;
}

.section-3--biznes .about-copy > p,
.section-3--biznes .trust-item p {
  color: #c8d4e0;
}

.section-3--biznes .trust-rule {
  background: rgba(233, 170, 49, 0.45);
}

.section-4 {
  position: relative;
  overflow: hidden;
}

.section-4--biznes {
  --bridge-from: var(--transition-from-s4);
  --surface-top: var(--surface-start-s4);
  --surface-bottom: var(--surface-end-s4);
  --section-gradient: linear-gradient(
    180deg,
    var(--surface-top) 0%,
    var(--surface-bottom) 100%
  );
}

.section-4--biznes .kicker {
  color: #e39f18;
}

.section-4--biznes .kicker-rule {
  background: #e39f18;
}

.section-4--biznes .steps-head h2 {
  color: #fff;
}

.section-4--biznes .steps-head p {
  color: #c8d4e0;
}

.section-4--biznes .step-node {
  background: #0a1628;
  border-color: #e9aa31;
  color: #e9aa31;
  box-shadow: none;
  z-index: 2;
}

.section-4--biznes .step-item h3 {
  color: #fff;
}

.section-4--biznes .step-item p {
  color: #c8d4e0;
}

.section-4--travel {
  --bridge-from: var(--transition-from-s4);
  --surface-top: var(--surface-start-s4);
  --surface-bottom: var(--surface-end-s4);
  --section-gradient: linear-gradient(
    180deg,
    var(--surface-top) 0%,
    var(--surface-bottom) 100%
  );
}

.page-inner .site-footer::before {
  display: none;
}

.steps-head {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto var(--space-7);
  padding-inline: var(--content-gutter);
  text-align: center;
  box-sizing: border-box;
}

.steps-head .kicker-rule {
  margin-inline: auto;
}

.steps-head h2 {
  margin: 0 0 var(--section-head-gap);
  color: #08193a;
}

.steps-head p {
  margin: 0;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: #4e5977;
}

.section-4--travel .steps-body,
.section-4--biznes .steps-body {
  padding-top: 0;
}

.steps-body {
  position: relative;
  z-index: 2;
}

.steps-body .section-cta {
  margin-top: var(--section-cta-gap);
}

.steps-wrap {
  position: relative;
  margin-bottom: 8px;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
  margin-bottom: 0;
}

.step-item {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(50% + var(--content-gap) / 2 - 26px);
  height: 2px;
  background: rgba(40, 150, 155, 0.35);
  z-index: 0;
  pointer-events: none;
}

.step-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fcfcfd;
  border: 2px solid #28969b;
  color: #28969b;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}

.step-item .step-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: #28969b;
}

.section-4--biznes .step-item .step-icon {
  color: #e9aa31;
}

.step-item h3 {
  margin: 0 0 var(--space-1);
  color: #08193a;
}

.step-item p {
  margin: 0;
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.55;
  color: #4e5977;
}

.section-4--travel .kicker {
  color: #28969b;
}

.section-4--travel .kicker-rule {
  background: #28969b;
}

.section-4--travel .btn-teal-solid {
  background: #189399;
  color: #fff;
}

.page-inner .section-extra,
.page-inner .section-faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: var(--section-pad-y);
  padding-inline: 0;
}

.section-extra h2,
.section-faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-h2);
  line-height: 1.15;
}

.section-extra .lead,
.section-faq .lead {
  max-width: 42rem;
  margin-top: var(--space-4);
  line-height: 1.65;
}

.section-extra--biznes {
  background: linear-gradient(180deg, #0d2440 0%, #04142a 100%);
  color: #fff;
}

.section-extra--biznes .lead,
.section-extra--biznes .steps-list p {
  color: #c8d4e0;
}

.section-extra--biznes .section-rule {
  background: #c69711;
}

.section-extra--travel {
  background: linear-gradient(180deg, #f7f3ec 0%, #f4f9fa 100%);
  color: #081838;
}

.section-extra--travel .lead,
.section-extra--travel .steps-list p {
  color: #2f3d4f;
}

.section-extra--travel .section-rule {
  background: #28969b;
}

.section-faq--biznes {
  background: #04142a;
  color: #fff;
}

.section-faq--biznes .section-rule {
  background: #c69711;
}

.section-faq--biznes .faq-item p,
.section-faq--biznes .faq-note {
  color: #c8d4e0;
}

.section-faq--travel {
  background: #edf6f8;
  color: #081838;
}

.section-faq--travel .section-rule {
  background: #28969b;
}

.section-faq--travel .faq-item p,
.section-faq--travel .faq-note {
  color: #2f3d4f;
}

.steps-list {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: var(--space-5);
}

.steps-list > li {
  counter-increment: steps;
  padding-left: 3rem;
  position: relative;
}

.steps-list > li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.72;
}

.steps-list h3 {
  margin: 0 0 6px;
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.35;
}

.steps-list p {
  margin: 0;
  font-size: var(--font-body);
  line-height: 1.6;
}

.audience-block {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(198, 151, 17, 0.28);
}

.audience-block__title {
  margin: 0 0 var(--space-3);
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.audience-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
  color: #c8d4e0;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

.faq-note {
  margin: var(--space-6) 0 0;
  line-height: 1.6;
}

.section-2--biznes .lead a,
.section-2--travel .lead a,
.section-faq a,
.faq-note a {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 2px;
}

.section-2--biznes .lead a:hover,
.section-2--biznes .lead a:focus-visible,
.section-faq--biznes a:hover,
.section-faq--biznes a:focus-visible {
  color: #e9aa31;
}

.section-2--travel .lead a:hover,
.section-2--travel .lead a:focus-visible,
.section-faq--travel a:hover,
.section-faq--travel a:focus-visible {
  color: #28969b;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --footer-bridge-height: var(--surface-bridge-height);
  --footer-accent: #c6853a;
  --footer-text: #fff;
  --footer-muted: #d1dae6;
  --footer-legal-border: rgba(198, 133, 58, 0.28);
  background: var(--surface-footer);
  color: var(--footer-text);
}

.site-footer--biznes {
  --footer-bridge-height: 56px;
  --surface-start-footer: #020b1a;
  --surface-top: var(--surface-start-footer);
  --bridge-from: var(--transition-from-footer);
  background: var(--surface-footer);
}

.site-footer--travel {
  --footer-accent: #28969b;
  --footer-text: #08193a;
  --footer-muted: #08193a;
  --footer-legal-border: rgba(40, 150, 155, 0.26);
  --surface-top: var(--surface-start-footer);
  --bridge-from: var(--transition-from-footer);
}

.footer-inner.content-shell {
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-inner,
.footer-legal {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr 1.1fr;
  gap: var(--content-gap);
  align-items: start;
}

.footer-brand,
.footer-col {
  margin: 0;
  padding: 0;
  min-width: 0;
}

.footer-brand .brand {
  min-width: 0;
}

.footer-tagline {
  margin: var(--space-3) 0 var(--space-4);
  max-width: 18rem;
  font-size: var(--font-small);
  line-height: 1.65;
  color: var(--footer-muted);
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  text-decoration: none;
  border: 1px solid var(--footer-accent);
  border-radius: 8px;
  color: var(--footer-accent);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.footer-social a.is-fill {
  background: var(--footer-accent);
  color: #000e27;
}

.footer-col h2,
.footer-col-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-text);
  line-height: 1.2;
}

.footer-col .col-rule {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 0 14px;
  background: var(--footer-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  color: var(--footer-text);
  transition: color 0.2s ease;
}

.footer-links a::before {
  content: "›";
  font-size: 16px;
  line-height: 1;
  color: var(--footer-accent);
}

.footer-links a.is-active {
  color: var(--footer-accent);
}

.footer-col--zone.is-zone-active h2,
.footer-col--zone.is-zone-active .footer-col-title {
  color: var(--footer-accent);
}

.footer-col--zone.is-zone-active .col-rule {
  background: var(--footer-accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  color: var(--footer-text);
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--footer-accent);
}

.footer-contact svg,
.footer-contact .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--footer-accent);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social svg,
.footer-social .icon {
  width: 16px;
  height: 16px;
}

.site-footer .brand-name {
  color: var(--footer-text);
}

.site-footer .brand-url {
  color: var(--footer-accent);
}

.site-footer .brand-url::before,
.site-footer .brand-url::after {
  background: var(--footer-accent);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: var(--font-small);
  line-height: 1.5;
  color: var(--footer-text);
  border-top: none;
  position: relative;
}

.footer-legal.content-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--footer-legal-border);
  pointer-events: none;
}

.footer-legal a {
  text-decoration: none;
  color: var(--footer-text);
}

.footer-legal .sep {
  color: var(--footer-accent);
}

.site-footer--biznes .brand-url {
  color: var(--footer-text);
}

.site-footer--biznes .footer-social a:hover,
.site-footer--travel .footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--footer-accent);
}

.site-footer--travel .footer-social a:hover {
  background: rgba(40, 150, 155, 0.12);
}

.site-footer--biznes .footer-links a:hover,
.site-footer--biznes .footer-legal a:hover {
  color: var(--footer-accent);
}

.site-footer--travel .footer-links a:hover,
.site-footer--travel .footer-legal a:hover {
  color: var(--footer-accent);
}

/* Interaction states — page-inner */
.page-inner .btn-hero,
.page-inner .btn-section,
.page-inner .btn-contact {
  border-radius: var(--btn-radius);
  transition:
    background 200ms var(--ease-smooth),
    border-color 200ms var(--ease-smooth),
    color 200ms var(--ease-smooth),
    transform 200ms var(--ease-smooth),
    filter 200ms var(--ease-smooth);
}

.page-inner .btn-contact {
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  box-sizing: border-box;
}

.page-inner .nav-link {
  transition: opacity 160ms var(--ease-smooth), color 160ms var(--ease-smooth);
}

.page-inner a:not(.btn-hero):not(.btn-section):not(.btn-contact):not(.feature-link) {
  transition: color 160ms var(--ease-smooth);
}

@media (prefers-reduced-motion: reduce) {
  .page-inner *,
  .page-inner *::before,
  .page-inner *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.page-inner .btn-gold-solid:hover {
  background: #ffb52e;
}

.page-inner .btn-gold-solid:active {
  transform: translateY(1px);
  filter: brightness(0.92);
}

.page-inner .btn-gold-ghost:hover {
  background: rgba(233, 156, 14, 0.12);
  border-color: #ffb52e;
}

.page-inner .btn-gold-ghost:active {
  transform: translateY(1px);
  background: rgba(233, 156, 14, 0.2);
}

.page-inner .btn-teal-solid:hover {
  background: var(--teal-bright);
}

.page-inner .btn-teal-solid:active {
  transform: translateY(1px);
  filter: brightness(0.92);
}

.page-travel .hero-shell .btn-teal-ghost {
  color: #fff;
  border-color: rgba(140, 230, 230, 0.85);
  background: rgba(0, 18, 28, 0.38);
}

.page-travel .hero-shell .btn-teal-ghost:hover {
  background: rgba(0, 28, 40, 0.52);
  border-color: #b8f0f0;
}

.page-inner .btn-teal-ghost:hover {
  background: rgba(4, 150, 157, 0.08);
  border-color: var(--teal-bright);
}

.page-inner .btn-teal-ghost:active {
  transform: translateY(1px);
  background: rgba(4, 150, 157, 0.14);
}

.page-biznes .btn-hero:focus-visible,
.page-biznes .btn-section:focus-visible,
.page-biznes .btn-contact:focus-visible,
.page-biznes .nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.page-travel .btn-hero:focus-visible,
.page-travel .btn-section:focus-visible,
.page-travel .btn-contact:focus-visible,
.page-travel .nav-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.page-inner .nav-link:hover {
  opacity: 0.85;
}

.page-inner .nav-link:active {
  transform: scale(0.98);
}

.page-inner .btn-contact:hover {
  background: rgba(255, 255, 255, 0.06);
}

.page-inner .btn-contact:active {
  transform: translateY(1px);
}

.page-biznes .footer-links a:visited,
.page-biznes .footer-legal a:visited {
  color: #9bb4d0;
}

.page-travel .footer-links a:visited,
.page-travel .footer-legal a:visited {
  color: #4a6a7a;
}

.page-inner .footer-links a:focus-visible,
.page-inner .footer-legal a:focus-visible,
.page-inner .footer-social a:focus-visible {
  outline: 2px solid var(--footer-accent);
  outline-offset: 2px;
}

.page-inner [data-soon],
.page-inner .is-soon {
  cursor: not-allowed;
}

.page-inner .nav-link.is-soon,
.page-inner .btn-hero.is-soon {
  opacity: 1;
  text-decoration: none;
}

.page-inner .footer-links a.is-soon,
.page-inner .footer-legal a.is-soon,
.page-inner .footer-social a.is-soon {
  opacity: 0.7;
  text-decoration: none;
}

.page-inner a.is-soon:not(.nav-link):not(.btn-hero):not(.btn-section) {
  text-decoration: none;
}

.soon-badge {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  vertical-align: middle;
  line-height: 1.35;
  font-family: var(--font-ui);
  opacity: 0.85;
}

.site-nav .soon-badge {
  margin-left: 4px;
  padding: 1px 4px;
  font-size: 8px;
  opacity: 0.72;
}

.page-biznes .soon-badge {
  color: var(--gold);
  background: rgba(233, 156, 14, 0.14);
  border: 1px solid rgba(233, 156, 14, 0.35);
}

.page-travel .soon-badge {
  color: var(--teal);
  background: rgba(4, 150, 157, 0.1);
  border: 1px solid rgba(4, 150, 157, 0.35);
}

.soon-badge--inline {
  margin-left: 4px;
}

.page-inner .btn-hero.is-soon,
.page-inner .btn-section.is-soon {
  filter: none;
}

.page-inner .btn-hero.is-soon:hover,
.page-inner .btn-section.is-soon:hover {
  transform: none;
}

@media (min-width: 981px) {
  .inner-main {
    height: auto;
    min-height: min(520px, calc(100dvh - var(--header-height, 92px)));
    max-height: none;
  }

  .page-travel .inner-main,
  .page-biznes .inner-main {
    grid-template-columns: 1fr;
  }

  .page-travel .hero-shell,
  .page-biznes .hero-shell {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1280px) {
  body.page-inner {
    --content-max: 1700px;
    --content-gutter: clamp(80px, 5.2vw, 100px);
    --content-gap: 24px;
    --about-gap: 52px;
    --section-pad-y: 80px;
    --font-body: 17px;
    --font-small: 16px;
    --font-h1: clamp(40px, 3.75vw, 72px);
    --font-h2: clamp(32px, 3.4vw, 52px);
    --font-h2-about: clamp(32px, 3.1vw, 48px);
    --font-kicker: 13px;
    --header-height: 84px;
  }

  .page-inner .section-2,
  .page-inner .section-3,
  .page-inner .section-4,
  .page-inner .section-extra,
  .page-inner .section-faq {
    padding-block: var(--section-pad-y);
  }

  .site-header {
    position: sticky;
    display: block;
  }

  .site-header .brand {
    position: absolute;
    left: var(--header-pad-x);
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
  }

  .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    flex-wrap: nowrap;
    gap: 28px;
    transform: translate(-50%, -50%);
  }

  .site-header .btn-contact {
    position: absolute;
    right: var(--header-pad-x);
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
  }

  .brand__logo-wrap {
    height: auto;
  }

  .brand-logo--header {
    width: 124px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transform: none;
  }

  .inner-main {
    height: min(calc(100dvh - var(--header-height)), 760px);
  }

  .about-wrap {
    grid-template-columns: 42fr 58fr;
    gap: var(--about-gap);
  }

  .section-3--biznes .photo-slot,
  .section-3--biznes .photo-slot__img,
  .section-3--travel .photo-slot,
  .section-3--travel .photo-slot__img {
    min-height: 360px;
    height: 360px;
  }

  .page-inner .section-3,
  .page-inner .section-4 {
    min-height: unset;
    box-sizing: border-box;
  }

  .section-4 .steps-head {
    max-width: 56rem;
    margin-bottom: var(--space-7);
  }

  .section-4 .steps-body .section-cta {
    margin-top: var(--section-cta-gap);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .steps-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    left: calc((100% - 3 * var(--content-gap)) / 8 + 26px);
    right: calc((100% - 3 * var(--content-gap)) / 8 + 26px);
    height: 2px;
    background: rgba(40, 150, 155, 0.35);
    z-index: 0;
    pointer-events: none;
  }

  .section-4--biznes .steps-grid::before {
    background: rgba(233, 170, 49, 0.35);
  }

  .brand-logo--footer {
    width: 130px;
    max-width: none;
    max-height: none;
    height: auto;
  }

  .footer-grid {
    grid-template-columns:
      minmax(260px, 1.15fr)
      minmax(150px, 0.7fr)
      minmax(260px, 1.1fr)
      minmax(260px, 1fr);
    gap: clamp(40px, 3vw, 56px);
    align-items: start;
  }

  .footer-col h2,
  .footer-col-title {
    margin-top: 0;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .inner-main {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .hero-shell,
  .hero-deco {
    grid-column: 1;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item + .feature-item {
    border-left: none;
  }

  .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-deco {
    display: none;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-item:nth-child(2n)::after,
  .step-item:last-child::after {
    display: none;
  }

  .site-footer--biznes .footer-brand::before,
  .site-footer--biznes .footer-brand::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .feature-strip {
    grid-template-columns: 1fr;
    padding-block: 12px 16px;
  }

  .feature-item {
    padding: 12px 14px;
  }

  .feature-item:nth-child(odd) {
    border-right: none;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: none;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cta-row {
    gap: 10px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }
}

/* === Landing homepage === */

.landing-page {
  font-family: "Source Sans 3", system-ui, sans-serif;
}

.landing-split {
  display: flex;
  width: 100%;
  height: 100%;
}

.landing-panel {
  --landing-pad-x: clamp(1.5rem, 4.5vw, 4rem);
  --landing-gap-title-accent: 18px;
  --landing-gap-accent-lead: 32px;
  --landing-gap-lead-cta: clamp(28px, 2vw, 34px);
  --landing-content-max: 28rem;
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  outline: none;
  transition: flex-basis 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-panel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: -4px;
}

.landing-panel .panel-bg__img {
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-panel .panel-bg__veil {
  transition: opacity 450ms ease;
}

.landing-panel__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--landing-content-max);
  width: 100%;
}

.panel-copy--left.landing-panel__content {
  align-items: flex-start;
  text-align: left;
  padding: 0 clamp(2rem, 8vw, 6rem) 0 var(--landing-pad-x);
  margin-right: auto;
}

.panel-copy--right.landing-panel__content {
  align-items: flex-end;
  text-align: right;
  padding: 0 var(--landing-pad-x) 0 clamp(2rem, 8vw, 6rem);
  margin-left: auto;
}

@media (min-width: 768px) {
  .panel-copy--right.landing-panel__content > * {
    align-self: flex-end;
    max-width: 100%;
  }

  .panel-copy--right .landing-panel__accent {
    width: 4rem;
  }
}

.landing-panel__title {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
}

.landing-panel__accent {
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: var(--landing-gap-title-accent);
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-panel__accent--biznes {
  background: var(--gold);
}

.landing-panel__accent--podroz {
  background: var(--teal-bright);
}

.landing-panel__lead {
  margin: var(--landing-gap-accent-lead) 0 0;
  max-width: var(--landing-content-max);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.cta-zone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: var(--landing-gap-lead-cta);
  padding: 0.65rem 1.5rem;
  border: 1px solid;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-zone--biznes {
  border-color: var(--gold);
  color: var(--gold);
}

.cta-zone--podroz {
  border-color: var(--teal-bright);
  color: #fff;
}

.landing-panel.is-active .panel-bg__veil--biznes,
.landing-panel--biznes:hover .panel-bg__veil--biznes {
  opacity: 1;
  background: linear-gradient(
    90deg,
    rgba(3, 18, 35, 0.8) 0%,
    rgba(3, 18, 35, 0.26) 55%,
    rgba(3, 18, 35, 0) 100%
  );
}

.landing-panel.is-active .panel-bg__veil--podroz,
.landing-panel--podroz:hover .panel-bg__veil--podroz {
  opacity: 1;
  background: linear-gradient(
    270deg,
    rgba(3, 35, 45, 0.68) 0%,
    rgba(3, 35, 45, 0.14) 55%,
    rgba(3, 35, 45, 0) 100%
  );
}

.landing-panel.is-dim .panel-bg__veil {
  opacity: 1;
}

.landing-panel.is-dim .panel-bg__veil--biznes {
  background: linear-gradient(
    90deg,
    rgba(3, 18, 35, 0.88) 0%,
    rgba(3, 18, 35, 0.42) 55%,
    rgba(3, 18, 35, 0.12) 100%
  );
}

.landing-panel.is-dim .panel-bg__veil--podroz {
  background: linear-gradient(
    270deg,
    rgba(3, 35, 45, 0.82) 0%,
    rgba(3, 35, 45, 0.36) 55%,
    rgba(3, 35, 45, 0.1) 100%
  );
}

.landing-panel.is-dim .panel-bg__img {
  transform: scale(1);
}

.landing-panel--biznes.is-active .cta-zone--biznes,
.landing-panel--biznes:hover .cta-zone--biznes {
  background: rgba(233, 156, 14, 0.12);
}

.landing-panel--podroz.is-active .cta-zone--podroz,
.landing-panel--podroz:hover .cta-zone--podroz {
  background: rgba(4, 150, 157, 0.18);
}

.landing-panel:hover .landing-panel__accent {
  width: 5.5rem;
}

.landing-panel:hover .panel-bg__img {
  transform: scale(1.02);
}

.landing-page .panel.is-dim,
.landing-page .panel.is-hot {
  filter: none;
}

.landing-footer__nav {
  align-items: center;
}

.landing-footer .footer-item__title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  color: #fff;
}

.landing-footer .footer-item__sub {
  display: block;
  margin-top: 2px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.landing-footer .footer-item--biznes:hover,
.landing-footer .footer-item--partnerstwa:hover {
  background: rgba(233, 156, 14, 0.08);
}

.landing-footer .footer-item--travel:hover,
.landing-footer .footer-item--porady:hover {
  background: rgba(4, 150, 157, 0.12);
}

.landing-footer .footer-item--bridge {
  opacity: 0.78;
}

.landing-footer .footer-item--bridge .footer-icon {
  --icon-size: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.landing-footer .footer-item--bridge .footer-item__title {
  font-size: 15px;
}

.landing-footer .footer-item--bridge .footer-item__sub {
  font-size: 11px;
}

.landing-footer .footer-item--bridge:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) and (hover: hover) {
  .landing-split:has(.landing-panel--biznes:hover) .landing-panel--biznes {
    flex-basis: 53%;
  }

  .landing-split:has(.landing-panel--biznes:hover) .landing-panel--podroz {
    flex-basis: 47%;
  }

  .landing-split:has(.landing-panel--podroz:hover) .landing-panel--podroz {
    flex-basis: 53%;
  }

  .landing-split:has(.landing-panel--podroz:hover) .landing-panel--biznes {
    flex-basis: 47%;
  }
}

@media (max-width: 1023px) {
  .landing-panel__title {
    font-size: clamp(36px, 6vw, 56px);
  }

  body:not(.page-inner) .hero-brand__mark {
    max-width: min(180px, 28vw);
  }

  body:not(.page-inner) .hero-brand__mark--full {
    max-width: min(240px, 34vw);
  }
}

@media (max-width: 767px) {
  .landing-split {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .landing-panel {
    flex: 1 1 50vh;
    width: 100%;
    min-height: 50vh;
  }

  .landing-main {
    overflow-y: auto;
    overflow-x: hidden;
  }

  body.landing-page {
    overflow-y: auto;
    overflow-x: hidden;
  }

  body:not(.page-inner) .hero-brand {
    top: 40%;
    padding: 0.5rem 1rem;
  }

  body:not(.page-inner) .hero-brand__mark {
    max-width: min(160px, 42vw);
  }

  body:not(.page-inner) .hero-brand__mark--full {
    max-width: min(220px, 58vw);
  }

  .panel-copy--left.landing-panel__content,
  .panel-copy--right.landing-panel__content {
    padding: 1.5rem var(--landing-pad-x);
    margin: 0;
    max-width: 100%;
  }

  .panel-copy--right.landing-panel__content {
    align-items: flex-start;
    text-align: left;
  }

  .landing-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .landing-footer .footer-item {
    scroll-snap-align: start;
    min-width: 0;
  }

  .landing-footer .footer-item__sub {
    white-space: normal;
  }

  .cta-zone {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-panel,
  .landing-panel .panel-bg__img,
  .landing-panel .panel-bg__veil,
  .landing-panel__accent,
  .cta-zone {
    transition: none;
  }

  .landing-panel:hover .panel-bg__img {
    transform: none;
  }

  @media (min-width: 1024px) and (hover: hover) {
    .landing-split:has(.landing-panel--biznes:hover) .landing-panel--biznes,
    .landing-split:has(.landing-panel--biznes:hover) .landing-panel--podroz,
    .landing-split:has(.landing-panel--podroz:hover) .landing-panel--podroz,
    .landing-split:has(.landing-panel--podroz:hover) .landing-panel--biznes {
      flex-basis: 50%;
    }
  }
}

