:root {
  --blue: #1a3673;
  --blue-deep: #12264f;
  --orange: #f7a631;
  --orange-hot: #e8941a;
  --sky: #b8d4ef;
  --sky-soft: #e8f2fb;
  --white: #ffffff;
  --text: #15233f;
  --muted: #5a6a84;
  --line: rgba(26, 54, 115, 0.12);
  --shadow: 0 18px 50px rgba(18, 38, 79, 0.14);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --header-h: 84px;
  --bottom-nav-h: 62px;
  --page-bg: linear-gradient(180deg, #f7fbff 0%, #ffffff 28%, #f4f8fc 100%);
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-muted: #f8fafc;
  --header-bg: rgba(255, 255, 255, 0.88);
  --header-bg-compact: rgba(255, 255, 255, 0.96);
  --nav-mobile-bg: #ffffff;
  --bottom-nav-bg: rgba(255, 255, 255, 0.94);
  --nav-link: var(--blue);
  --input-bg: #ffffff;
  --input-border: rgba(26, 54, 115, 0.12);
  --sky-wash-a: rgba(247, 166, 49, 0.18);
  --sky-wash-b: rgba(184, 212, 239, 0.55);
  --heading: #1a3673;
  --hero-search-bg: rgba(255, 255, 255, 0.97);
  --hero-search-border: rgba(255, 255, 255, 0.55);
  --hero-search-shadow: 0 18px 50px rgba(10, 24, 55, 0.35);
  --catalog-filters-bg: linear-gradient(160deg, #f3f8fd 0%, #ffffff 70%);
  --card-shadow: 0 8px 24px rgba(18, 38, 79, 0.05);
  --card-shadow-hover: 0 18px 40px rgba(18, 38, 79, 0.12);
  --select-arrow: %231a3673;
  --map-sea: #e8f2fb;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --text: #e8eef8;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --sky-soft: #1e3055;
  --page-bg: linear-gradient(180deg, #080f1f 0%, #0c1528 28%, #0a1222 100%);
  --surface: #141e33;
  --surface-soft: #1a2640;
  --surface-muted: #1e2d4a;
  --header-bg: rgba(12, 20, 38, 0.92);
  --header-bg-compact: rgba(12, 20, 38, 0.96);
  --nav-mobile-bg: #141e33;
  --bottom-nav-bg: rgba(14, 22, 40, 0.94);
  --nav-link: #c5d9f5;
  --input-bg: #1a2640;
  --input-border: rgba(255, 255, 255, 0.12);
  --sky-wash-a: rgba(247, 166, 49, 0.1);
  --sky-wash-b: rgba(26, 54, 115, 0.35);
  --heading: #ffffff;
  --hero-search-bg: rgba(20, 30, 51, 0.98);
  --hero-search-border: rgba(255, 255, 255, 0.1);
  --hero-search-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --catalog-filters-bg: linear-gradient(160deg, #1a2640 0%, #141e33 70%);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  --card-shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.38);
  --select-arrow: %23c5d9f5;
  --map-sea: #121c30;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  min-height: 100vh;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--orange-hot);
}

.sky-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 40% at 80% -10%, var(--sky-wash-a), transparent 55%),
    radial-gradient(ellipse 60% 35% at 10% 0%, var(--sky-wash-b), transparent 50%);
  z-index: -1;
}

.yt-embed {
  position: relative;
  isolation: isolate;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
}

.yt-embed .sky-wash {
  position: absolute;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-compact {
  background: var(--header-bg-compact);
  box-shadow: 0 8px 24px rgba(18, 38, 79, 0.08);
}

html[data-theme="dark"] .site-header.is-compact {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Stała wysokość - NIE używaj --header-h (to offset sticky elementów;
     pomiar wysokości + min-height: var(--header-h) = pętla wzrostu). */
  min-height: 84px;
  gap: 1rem;
  transition: min-height 0.22s ease;
}

.site-header.is-compact .header-inner {
  min-height: 56px;
}

.brand-logo {
  height: 62px;
  width: auto;
  max-width: min(300px, 48vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  transition: height 0.22s ease, max-width 0.22s ease;
}

.site-header.is-compact .brand-logo {
  height: 40px;
  max-width: min(200px, 42vw);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 54, 115, 0.08);
  color: var(--blue);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.theme-toggle:hover {
  background: rgba(26, 54, 115, 0.14);
  color: var(--orange-hot);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.theme-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffc04d;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nav-link);
  padding: 0.35rem 0.15rem;
}

.site-nav a.is-active:not(.btn-nav-cta) {
  color: var(--orange-hot);
}

.nav-short {
  display: none;
}

.site-nav .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.62rem 1.2rem;
  border-radius: 12px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  border: 0;
  box-shadow: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav .btn-nav-cta:hover {
  background: var(--blue-deep);
  color: #fff !important;
}

.site-nav .btn-nav-cta.is-active,
.site-nav .btn-nav-cta.active {
  background: var(--blue-deep);
  color: #fff !important;
  box-shadow: inset 0 0 0 2px var(--orange);
}

@media (max-width: 1280px) {
  .site-nav {
    gap: 0.2rem 0.7rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .site-nav .nav-full {
    display: none;
  }

  .site-nav .nav-short {
    display: inline;
  }

  .site-nav .btn-nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
  }
}

.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 54, 115, 0.22);
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--blue-deep);
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
  transition: width 0.22s ease, height 0.22s ease, padding 0.22s ease, background 0.15s ease;
}

.site-header.is-compact .nav-toggle {
  width: 40px;
  height: 40px;
  padding: 9px 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 12px;
  padding: 0.72rem 1.25rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

a.btn {
  color: inherit;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--blue-deep);
  box-shadow: 0 6px 16px rgba(247, 166, 49, 0.28);
}

.btn-primary:hover {
  background: var(--orange-hot);
  color: var(--blue-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.app {
  min-height: calc(100vh - 220px);
}

.hero {
  position: relative;
  min-height: min(48vh, 420px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-slides {
  position: absolute;
  inset: -6%;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.35s ease, transform 8s ease;
}

.hero-slides img.is-active {
  opacity: 1;
  transform: scale(1.1);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(18, 38, 79, 0.55) 0%, rgba(18, 38, 79, 0.62) 45%, rgba(18, 38, 79, 0.82) 100%);
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 1.5rem 0 2.4rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-search {
  text-align: left;
  background: var(--hero-search-bg);
  color: var(--text);
  border-radius: 18px;
  box-shadow: var(--hero-search-shadow);
  padding: 0.85rem;
  border: 1px solid var(--hero-search-border);
  position: relative;
  z-index: 4;
}

.hero-search-summary {
  display: none;
}

.hero-search-panel-top {
  display: none;
}

.hero-search-summary-hint {
  display: none;
}

.hero-search-panel-inner {
  min-width: 0;
}

.hero-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  padding: 0.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-tabs::-webkit-scrollbar {
  display: none;
}

.hero-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-tab-short {
  display: none;
}

.hero-tab:hover {
  background: rgba(26, 54, 115, 0.06);
  color: var(--blue);
}

.hero-tab.is-active {
  background: var(--blue);
  color: var(--white);
}

.hero-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
  background: var(--surface-soft);
  border-radius: 14px;
  overflow: hidden;
}

.hero-search.has-country .hero-search-row {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 0.95fr) auto;
}

.hero-field-kraj[hidden] {
  display: none !important;
}

.hero-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.95rem;
  border-right: 1px solid rgba(26, 54, 115, 0.1);
  min-width: 0;
  position: relative;
}

.hero-field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.hero-field input,
.hero-field select {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text);
  padding: 0.15rem 0;
  outline: none;
  min-width: 0;
}

.hero-field select {
  cursor: pointer;
}

.hero-combo input {
  padding-right: 1.15rem;
  background:
    transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a3673' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    right 0.1rem center / 10px no-repeat;
}

.hero-search-btn {
  align-self: center;
  margin: 0.45rem;
  padding-inline: 1.35rem;
  min-height: 2.75rem;
  border-radius: 12px;
  white-space: nowrap;
}

.hero-suggest {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  top: calc(100% + 6px);
  z-index: 12;
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 260px;
  overflow: auto;
  text-align: left;
}

.hero-suggest li {
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.hero-suggest li.is-active,
.hero-suggest li:hover {
  background: var(--sky-soft);
}

.hero-links {
  margin: 0.6rem 0 0;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-links a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-links a:hover {
  color: var(--orange);
}

.section {
  padding: 2.75rem 0 0;
}

.section:last-child {
  padding-bottom: 2.75rem;
}

.catalog-results {
  padding-top: 2.75rem;
}

.catalog-results-head {
  margin-bottom: 1.25rem;
}

.catalog-count {
  margin: 0.65rem 0 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-eyebrow {
  color: var(--orange-hot);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin: 0 0 0.4rem;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--heading);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.65rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.dirs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dir-tile {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.dir-tile:hover {
  transform: translateY(-4px);
  color: var(--white);
}

.dir-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.dir-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(18, 38, 79, 0.85) 100%);
  z-index: -1;
}

.dir-tile span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  font-weight: 800;
  font-size: 1.35rem;
}

.dir-label-short {
  display: none;
}

.featured-extra {
  display: contents;
}

.featured-extra[hidden] {
  display: none;
}

.cards .card.catalog-card-hidden {
  display: none;
}

.featured-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.featured-more-wrap .btn {
  min-width: min(100%, 220px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--sky-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.catalog-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 1rem;
  padding: 0;
  background: var(--catalog-filters-bg);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.catalog-filters-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--blue);
}

.catalog-filters-toggle:hover {
  background: rgba(26, 54, 115, 0.04);
}

.catalog-filters-toggle-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.catalog-filters-toggle-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.catalog-filters-toggle-meta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-filters.has-active .catalog-filters-toggle-meta {
  color: var(--blue);
}

.catalog-filters-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.catalog-filters.is-open .catalog-filters-chevron {
  transform: rotate(225deg);
  margin-top: 0.25rem;
}

.catalog-filters-panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(26, 54, 115, 0.08);
}

.catalog-filters-panel[hidden] {
  display: none !important;
}

.catalog-filters-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0 0.55rem;
}

.catalog-filters-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.catalog-filters-active {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--orange);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.catalog-filters-clear {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog-filters-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.65rem;
  align-items: end;
}

.catalog-filters.has-country .catalog-filters-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.catalog-filter-field {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.catalog-filter-field select {
  width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: var(--surface);
  color: var(--text);
}

.catalog-filters-submit {
  white-space: nowrap;
  min-height: 2.85rem;
}

.catalog-count {
  margin: 0 0 1rem;
}

@media (max-width: 900px) {
  .catalog-filters-toggle {
    padding: 0.8rem 0.9rem;
  }

  .catalog-filters-panel {
    padding: 0 0.9rem 0.9rem;
  }

  .catalog-filters-row,
  .catalog-filters.has-country .catalog-filters-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .catalog-filters:not(.has-country) .catalog-filters-row {
    grid-template-columns: 1fr;
  }

  .catalog-filters.has-country .catalog-filters-submit {
    grid-column: 1 / -1;
  }

  .catalog-filters-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .catalog-filters.has-country .catalog-filters-row {
    grid-template-columns: 1fr;
  }
}

.filters label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.filters select,
.filters input,
.form-grid input,
.form-grid textarea,
.form-grid select {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  background: var(--input-bg);
  color: var(--text);
  min-width: 140px;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-navy {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.btn-navy:hover {
  background: var(--blue-deep);
  color: #fff;
}

a.btn-navy {
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.card-media-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--sky);
}

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

.card:hover .card-media {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: calc(100% - 1.5rem);
  z-index: 1;
  pointer-events: none;
}

.card-badge {
  background: rgba(18, 38, 79, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.chip-orange {
  background: rgba(247, 166, 49, 0.2);
  color: var(--blue-deep);
}

.card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--heading);
  line-height: 1.25;
}

.card h3 a {
  color: inherit;
}

.card h3 a:hover {
  color: var(--orange-hot);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.45rem;
}

.card-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
}

.card-actions .btn-navy {
  box-shadow: none;
}

.card-actions .btn-navy:hover {
  transform: none;
}

.card-actions .btn-primary:hover {
  transform: none;
}

.empty {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.card-custom {
  border: 1px dashed rgba(26, 54, 115, 0.28);
  background: linear-gradient(180deg, #fff 0%, rgba(232, 241, 252, 0.55) 100%);
}

.card-custom .card-media {
  filter: saturate(0.92);
}

.offer-page {
  --offer-chrome-h: 58px;
  padding: 0 0 3.5rem;
}

.offer-page-body {
  padding-top: 1.25rem;
}

.offer-chrome {
  position: sticky;
  top: var(--header-h);
  z-index: 45;
  background: var(--header-bg-compact);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(18, 38, 79, 0.04);
}

.offer-chrome-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--offer-chrome-h);
  padding: 0.45rem 0;
}

.offer-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0 0.85rem 0 0.55rem;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.offer-back-btn:hover {
  background: var(--surface);
  border-color: rgba(26, 54, 115, 0.18);
  color: var(--blue-deep);
}

.offer-back-btn svg {
  flex-shrink: 0;
}

.offer-chrome-mid {
  min-width: 0;
}

.offer-chrome-crumb {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange-hot);
  line-height: 1.2;
}

.offer-chrome-name {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.offer-related-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 54, 115, 0.16);
  background: var(--surface);
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.offer-related-toggle:hover,
.offer-related-toggle-link:hover {
  border-color: rgba(26, 54, 115, 0.28);
  box-shadow: 0 6px 16px rgba(18, 38, 79, 0.08);
  color: var(--blue);
}

.offer-related-toggle-link {
  text-decoration: none;
}

.offer-related-chevron {
  transition: transform 0.2s ease;
}

.offer-chrome.is-related-open .offer-related-chevron {
  transform: rotate(180deg);
}

.offer-related-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 45;
  border-top: 1px solid var(--line);
  background: rgba(247, 251, 255, 0.98);
  box-shadow: 0 18px 36px rgba(18, 38, 79, 0.12);
}

.offer-related-inner {
  padding: 0.85rem 0 1rem;
}

.offer-related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.offer-related-head p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.offer-related-head a {
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 38, 79, 0.35) rgba(18, 38, 79, 0.08);
}

.offer-related-track::-webkit-scrollbar {
  height: 8px;
}

.offer-related-track::-webkit-scrollbar-track {
  background: rgba(18, 38, 79, 0.08);
  border-radius: 999px;
}

.offer-related-track::-webkit-scrollbar-thumb {
  background: rgba(18, 38, 79, 0.32);
  border-radius: 999px;
}

.offer-related-track::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.offer-related-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: inherit;
  scroll-snap-align: start;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.offer-related-item:hover {
  border-color: rgba(26, 54, 115, 0.28);
  box-shadow: 0 8px 20px rgba(18, 38, 79, 0.08);
  color: inherit;
}

.offer-related-item img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--sky);
}

.offer-related-item strong {
  display: block;
  font-size: 0.86rem;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.offer-related-item em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-areas:
    "photo aside"
    "body aside";
  gap: 1.5rem 1.75rem;
  align-items: start;
}

.offer-photo {
  grid-area: photo;
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sky);
}

.offer-col {
  grid-area: body;
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.offer-aside {
  grid-area: aside;
  position: sticky;
  top: calc(var(--header-h) + var(--offer-chrome-h, 58px) + 12px);
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: 0 16px 40px rgba(18, 38, 79, 0.08);
}

.offer-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.offer-aside h1 {
  margin: 0.55rem 0 0.7rem;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.offer-intro {
  margin: 0 0 1.1rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.offer-facts {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.offer-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.offer-facts dd {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: right;
}

.offer-aside-cta {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.1rem;
}

.offer-aside-note {
  margin: 0.7rem 0 0;
  text-align: center;
}

.offer-block h2,
.offer-block h3 {
  margin: 0 0 0.85rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.offer-block h2 {
  font-size: 1.45rem;
}

.offer-block h3 {
  font-size: 1.12rem;
}

.offer-program {
  padding-top: 0.25rem;
}

.offer-day {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange-hot);
}

.offer-day:first-of-type {
  margin-top: 0.15rem;
}

.offer-plan {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.offer-plan li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.95rem;
  padding: 0 0 1.35rem;
  position: relative;
  border: 0;
}

.offer-plan li:last-child {
  padding-bottom: 0.2rem;
}

.offer-plan li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 2.3rem;
  bottom: 0.15rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(26, 54, 115, 0.28), rgba(26, 54, 115, 0.08));
}

.offer-plan-n {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--surface);
}

.offer-plan-body strong {
  display: block;
  color: var(--blue);
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.offer-plan-body p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.offer-inclexcl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  background: rgba(18, 38, 79, 0.04);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.06);
  overflow: hidden;
}

.offer-incl,
.offer-excl {
  border: 0;
  border-radius: 0;
  padding: 1rem 1.05rem 1.1rem;
  background: transparent;
}

.offer-incl {
  border-right: 1px solid rgba(18, 38, 79, 0.08);
}

.offer-incl h3,
.offer-excl h3 {
  margin: 0 0 0.65rem;
  color: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.offer-ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.offer-ticks li {
  position: relative;
  padding: 0.1rem 0 0.1rem 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.42;
}

.offer-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(26, 54, 115, 0.12);
  box-shadow: none;
}

.offer-ticks li::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.52rem;
  width: 0.36rem;
  height: 0.2rem;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.offer-ticks-out li::before {
  background: rgba(90, 106, 132, 0.12);
  box-shadow: none;
}

.offer-ticks-out li::after {
  border: 0;
  width: 0.46rem;
  height: 0;
  border-top: 2px solid var(--muted);
  left: 0.27rem;
  top: 0.68rem;
  transform: none;
}

.offer-sticky-cta {
  display: none;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.25rem;
  align-items: stretch;
}

.map-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--map-sea);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-svg .map-sea {
  fill: var(--map-sea);
}

.map-svg {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: auto;
  display: block;
  vertical-align: top;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-caption {
  margin: 0;
  padding: 0.65rem 0.85rem 0.85rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.map-tip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  background: rgba(18, 38, 79, 0.94);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(18, 38, 79, 0.25);
  white-space: nowrap;
}

.map-tip[hidden] {
  display: none !important;
}

.map-tip-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.map-tip strong {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.map-tip .flag-code,
.flag-code {
  font-variant: all-small-caps;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.map-svg .country {
  fill: #c5d6ea;
  stroke: #ffffff;
  stroke-width: 0.8;
  cursor: default;
  transition: fill 0.15s ease, stroke-width 0.15s ease;
}

.map-svg .country.muted {
  fill: #9aadc2;
  stroke: #eef4fa;
  stroke-width: 0.85;
  cursor: pointer;
}

.map-svg .country.muted:hover,
.map-svg .country.muted.is-active {
  fill: #7f94ac;
  stroke: #ffffff;
  stroke-width: 1.15;
  filter: drop-shadow(0 0 5px rgba(26, 54, 115, 0.28));
}

.map-svg .country.visited {
  fill: var(--blue);
  cursor: pointer;
}

.map-svg .country.visited:hover,
.map-svg .country.visited.is-active {
  fill: var(--orange);
  stroke: #ffffff;
  stroke-width: 1.2;
  filter: drop-shadow(0 0 6px rgba(247, 166, 49, 0.45));
}

.flag-list-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flag-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow: auto;
  padding: 0.65rem;
  align-content: start;
}

.flag-list-more {
  display: none;
  flex-shrink: 0;
  margin: 0 0.65rem 0.65rem;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  border: 0;
  background: rgba(18, 38, 79, 0.04);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.06);
  border-radius: 11px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--text);
}

.flag-item:hover,
.flag-item.is-active {
  box-shadow: inset 0 0 0 1px rgba(247, 166, 49, 0.45);
  background: rgba(247, 166, 49, 0.12);
}

.flag-item:hover .flag-item-name,
.flag-item.is-active .flag-item-name,
.flag-item:hover .flag-code,
.flag-item.is-active .flag-code {
  color: var(--blue-deep);
}

.flag-item-name {
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--blue);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.flag-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

.flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(18, 38, 79, 0.12);
  flex-shrink: 0;
}

.flag-item .flag-code {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 1.35rem;
  flex-shrink: 0;
}

.flag-item-other {
  border-style: none;
  background: rgba(18, 38, 79, 0.025);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.05);
}

.flag-item-other .flag-item-name,
.flag-item-other .flag-code {
  color: var(--muted);
}

.flag-item-other:hover,
.flag-item-other.is-active {
  border-style: solid;
}

.flag-item-other:hover .flag-item-name,
.flag-item-other.is-active .flag-item-name,
.flag-item-other:hover .flag-code,
.flag-item-other.is-active .flag-code {
  color: var(--heading);
}

/* -- Sheet / modal (full-height; tracks visualViewport via --app-height) -- */
.yt-sheet[hidden] {
  display: none !important;
}

.yt-sheet {
  position: fixed;
  top: var(--vv-top, 0px);
  left: var(--vv-left, 0px);
  right: auto;
  bottom: auto;
  width: var(--vv-width, 100%);
  z-index: 220;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  height: var(--app-height, 100dvh);
  max-height: var(--app-height, 100dvh);
}

.yt-sheet.is-open {
  pointer-events: auto;
}

.yt-sheet-map-offer {
  z-index: 260;
}

.yt-sheet-countries {
  z-index: 240;
}

.yt-sheet-countries .flag-list {
  max-height: min(380px, 46vh);
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 0.35rem;
  scrollbar-gutter: stable;
}

.yt-sheet-countries .flag-list-more {
  display: flex;
  width: auto;
  align-self: stretch;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin: 0 0.65rem 0.65rem;
  justify-content: center;
  background: var(--surface);
}

.yt-sheet-countries .flag-item {
  align-items: flex-start;
  padding: 0.5rem 0.55rem;
}

.yt-sheet-countries .flag-item .flag-img {
  margin-top: 0.15rem;
}

.yt-sheet-countries .flag-item .flag-code {
  margin-top: 0.12rem;
}

.yt-sheet-countries .countries-map-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1.15rem 1.25rem;
  display: block;
}

.countries-map-head {
  margin: 0 0 1rem;
  padding-right: 2.25rem;
}

.countries-map-head .section-eyebrow {
  margin-bottom: 0.35rem;
}

.countries-map-head h2 {
  margin: 0 0 0.4rem;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.countries-map-head .muted {
  margin: 0;
}

@media (max-width: 900px) {
  .yt-sheet-countries .map-wrap {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .yt-sheet-countries .yt-sheet-panel {
    width: min(960px, calc(100vw - 2.5rem));
    max-width: min(960px, calc(100vw - 2.5rem));
    max-height: min(92vh, 900px);
  }

  .yt-sheet-countries.is-open .yt-sheet-panel {
    opacity: 1;
    transform: none;
  }
}

.yt-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 48, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.yt-sheet.is-open .yt-sheet-backdrop {
  opacity: 1;
}

.yt-sheet-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 0;
  box-shadow: none;
  transform: translate3d(0, 110%, 0);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 0 0 env(safe-area-inset-bottom, 0);
  overflow: hidden;
}

.yt-sheet.is-open .yt-sheet-panel {
  transform: translate3d(0, 0, 0);
}

.yt-sheet-panel.is-dragging {
  transition: none;
}

.yt-sheet-grabber {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
}

.yt-sheet-grabber span {
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: rgba(18, 38, 79, 0.18);
}

.yt-sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 38, 79, 0.06);
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.yt-sheet-close:hover {
  background: rgba(18, 38, 79, 0.12);
}

.yt-sheet-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.yt-sheet-quote .yt-sheet-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  padding: 0 1.05rem 0;
  min-height: 0;
}

.yt-sheet-quote .quote-head {
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  flex-shrink: 0;
  padding-top: 0.25rem;
  padding-right: 2.5rem;
  margin-bottom: 0.75rem;
}

.yt-sheet-quote .quote-head h2 {
  margin: 0.1rem 0 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.yt-sheet-quote .quote-phones {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.yt-sheet-quote .success-box {
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  overflow: auto;
}

.quote-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}

.quote-head {
  margin-bottom: 0.35rem;
}

.yt-sheet-quote .quote-head {
  padding-bottom: 0.15rem;
}

.yt-sheet-quote .quote-head h2 {
  margin: 0.1rem 0 0.35rem;
  letter-spacing: -0.03em;
}

.quote-phones {
  margin: 0;
  font-size: 0.86rem;
}

.quote-phones a {
  font-weight: 700;
  color: var(--blue);
}

.quote-progress {
  flex-shrink: 0;
  margin: 0.85rem 0 0.55rem;
}

.quote-progress-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 54, 115, 0.1);
  overflow: hidden;
}

.quote-progress-bar span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange-hot));
  transition: width 0.28s ease;
}

.quote-stepper {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  flex-shrink: 0;
}

.quote-stepper li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(18, 38, 79, 0.04);
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.quote-stepper li.is-active {
  color: #fff;
  background: var(--blue);
}

.quote-stepper li.is-done {
  color: var(--blue);
  background: rgba(247, 166, 49, 0.14);
}

.quote-step-num {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}

.quote-stepper li:not(.is-active) .quote-step-num {
  background: rgba(18, 38, 79, 0.08);
}

.quote-stepper li.is-active .quote-step-num {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.quote-stepper li.is-done .quote-step-num {
  background: rgba(247, 166, 49, 0.25);
  color: var(--orange-hot);
}

.quote-step-text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.quote-step-text strong {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.quote-step-text em {
  display: none;
}

.quote-offer-card {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(18, 38, 79, 0.045);
  border: 1px solid rgba(18, 38, 79, 0.14);
  box-shadow: none;
  overflow: hidden;
}

.quote-offer-card-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  cursor: pointer;
  list-style: none;
  min-width: 0;
  user-select: none;
}

.quote-offer-card-summary::-webkit-details-marker,
.quote-offer-card-summary::marker {
  display: none;
  content: "";
}

.quote-offer-card-copy {
  min-width: 0;
}

.quote-offer-card-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-offer-card-title {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1.25;
}

.quote-offer-card-meta {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

.quote-offer-card-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
}

.quote-offer-card-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.quote-offer-card[open] .quote-offer-card-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.quote-offer-card-body {
  display: grid;
  gap: 0.7rem;
  padding: 0 0.95rem 0.9rem;
  border-top: 1px solid rgba(18, 38, 79, 0.08);
  padding-top: 0.75rem;
  min-width: 0;
}

.quote-offer-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  width: fit-content;
}

.quote-offer-card-link:hover {
  color: var(--orange-hot);
}

.quote-offer-card-params {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.55rem 0.65rem;
  min-width: 0;
}

.quote-offer-card-params label {
  font-size: 0.74rem;
  min-width: 0;
}

.quote-offer-card-params select {
  padding: 0.55rem 0.65rem;
  font-size: 0.88rem;
  max-width: 100%;
}

.quote-pane-title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.quote-pane-lead {
  margin: 0 0 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.quote-fields {
  display: grid;
  gap: 0.75rem;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.quote-fields label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-fields input,
.quote-fields textarea,
.quote-fields select {
  font: inherit;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: rgba(18, 38, 79, 0.05);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.06);
  color: var(--text);
  width: 100%;
  min-width: 0;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}

.quote-fields input:hover,
.quote-fields textarea:hover,
.quote-fields select:hover {
  background: rgba(18, 38, 79, 0.07);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.1);
}

.quote-fields input:focus,
.quote-fields textarea:focus,
.quote-fields select:focus {
  outline: none;
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px rgba(247, 166, 49, 0.45);
}

.quote-fields textarea {
  min-height: 72px;
  resize: vertical;
}

.quote-panes {
  flex: 1;
  min-height: 0;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin-inline: 0;
  scrollbar-gutter: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 38, 79, 0.28) transparent;
}

.quote-panes::-webkit-scrollbar {
  width: 6px;
}

.quote-panes::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 0.25rem;
}

.quote-panes::-webkit-scrollbar-thumb {
  background: rgba(18, 38, 79, 0.22);
  border-radius: 999px;
}

.quote-pane {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 0.45rem 0.75rem 0.05rem;
}

.quote-fields {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
}

.quote-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  min-width: 0;
}

.quote-recap {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(18, 38, 79, 0.04);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.07);
  border: 0;
}

.quote-recap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.quote-recap li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
}

.quote-recap span {
  color: var(--muted);
}

.quote-recap strong {
  color: var(--blue);
  text-align: right;
  font-weight: 600;
}

.quote-fields {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  max-width: 100%;
}

.quote-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
  min-width: 0;
}

.quote-fields label {
  display: grid;
  gap: 0.28rem;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--blue);
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-fields input,
.quote-fields textarea,
.quote-fields select {
  font: inherit;
  border: 1px solid rgba(26, 54, 115, 0.12);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: var(--surface);
  color: var(--text);
  width: 100%;
  min-width: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-fields input:hover,
.quote-fields textarea:hover,
.quote-fields select:hover {
  border-color: rgba(26, 54, 115, 0.22);
}

.quote-fields input:focus,
.quote-fields textarea:focus,
.quote-fields select:focus {
  outline: none;
  border-color: rgba(26, 54, 115, 0.4);
  box-shadow: 0 0 0 3px rgba(26, 54, 115, 0.08);
}

.quote-fields textarea {
  min-height: 56px;
  resize: vertical;
}

.quote-actions {
  flex-shrink: 0;
  padding: 0.85rem 0 0.95rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.quote-actions-row {
  display: flex;
  gap: 0.55rem;
}

.quote-actions-row .btn[hidden] {
  display: none !important;
}

.quote-actions-row .btn {
  flex: 1;
  justify-content: center;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  min-height: 2.85rem;
}

.quote-back {
  flex: 0 0 auto !important;
  min-width: 6.5rem;
}

.quote-submit {
  box-shadow: 0 8px 20px rgba(247, 166, 49, 0.28);
}

.quote-actions .small {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.78rem;
}

.quote-summary {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.quote-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26, 54, 115, 0.1);
  font-size: 0.92rem;
}

.quote-summary span {
  color: var(--muted);
}

.quote-summary strong {
  color: var(--blue);
  text-align: right;
}

.yt-sheet-head {
  padding: 4px 20px 12px;
  flex-shrink: 0;
  touch-action: none;
}

.yt-sheet-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-right: 2.5rem;
}

.yt-sheet-flag {
  width: 44px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(18, 38, 79, 0.1), 0 6px 16px rgba(18, 38, 79, 0.12);
}

.yt-sheet-code {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.yt-sheet-head h2 {
  margin: 0.1rem 0 0;
  color: var(--blue);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.yt-sheet-sub {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.yt-sheet-filters {
  display: grid;
  gap: 0.55rem;
  padding: 0 16px 10px;
  flex-shrink: 0;
}

.yt-sheet-filters[hidden] {
  display: none !important;
}

.yt-sheet-search input,
.yt-sheet-filter-row select {
  width: 100%;
  font: inherit;
  border: 0;
  border-radius: 11px;
  padding: 0.68rem 0.85rem;
  background: rgba(18, 38, 79, 0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.05);
}

.yt-sheet-search input:focus,
.yt-sheet-filter-row select:focus {
  outline: none;
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px rgba(247, 166, 49, 0.45);
}

.yt-sheet-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.yt-sheet-clear {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.15rem 0;
  text-align: left;
}

.yt-sheet-clear:hover {
  color: var(--orange-hot);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yt-sheet-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0 16px 8px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.yt-sheet-offer-group {
  border-radius: 14px;
  background: rgba(18, 38, 79, 0.04);
  overflow: hidden;
}

.yt-sheet-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.82rem 0.9rem;
  margin: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 38, 79, 0.08);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease;
}

.yt-sheet-offer:last-child {
  border-bottom: 0;
}

.yt-sheet-offer:hover {
  background: rgba(18, 38, 79, 0.05);
  color: var(--text);
  transform: none;
}

.yt-sheet-offer-main {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.yt-sheet-offer-main strong {
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.3;
}

.yt-sheet-offer-main .muted {
  font-size: 0.78rem;
}

.yt-sheet-offer-chevron {
  display: grid;
  place-items: center;
  color: rgba(18, 38, 79, 0.28);
  flex-shrink: 0;
}

.yt-sheet-offer-chevron svg {
  display: block;
}

.yt-sheet-empty {
  padding: 1.25rem 0.75rem;
  text-align: center;
}

.yt-sheet-empty p {
  margin: 0.35rem 0;
  line-height: 1.5;
  color: var(--blue);
}

.yt-sheet-empty .muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.yt-sheet-empty strong {
  color: var(--blue);
}

.yt-sheet-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(18, 38, 79, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.yt-sheet-foot .btn-outline {
  background: rgba(18, 38, 79, 0.04);
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.08);
}

.yt-sheet-foot .btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 0.75rem;
  font-size: 0.92rem;
}

.map-tip-flag-img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

html.yt-modal-open,
body.yt-modal-open {
  overflow: hidden;
}

html.yt-scroll-locked,
body.yt-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.yt-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .yt-sheet {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: auto;
    max-height: none;
  }

  .yt-sheet-panel {
    width: min(560px, 100%);
    height: auto;
    max-height: min(90vh, 860px);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(18, 38, 79, 0.28);
    transform: translate3d(0, 18px, 0) scale(0.97);
    opacity: 0;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease;
  }

  .yt-sheet.is-open .yt-sheet-panel {
    transform: none;
    opacity: 1;
  }

  .yt-sheet-grabber {
    display: none;
  }

  .yt-sheet-close {
    top: 16px;
    right: 16px;
  }

  .yt-sheet-quote .yt-sheet-body {
    padding: 1.15rem 1.45rem 0;
  }

  .yt-sheet-quote .yt-sheet-panel {
    height: min(88vh, 680px);
  }
}

.about-grid,
.process,
.values {
  display: grid;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.process {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.process-step b {
  display: block;
  color: var(--orange-hot);
  margin-bottom: 0.35rem;
}

.values {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.value {
  padding: 1rem;
  border-left: 4px solid var(--orange);
  background: var(--sky-soft);
  border-radius: 0 14px 14px 0;
}

.page-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.page-band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(18, 38, 79, 0.72) 0%, rgba(18, 38, 79, 0.88) 100%),
    center / cover no-repeat url("media/hero.jpg");
}

.page-band-inner {
  position: relative;
  z-index: 1;
  padding: 2.4rem 0 2.6rem;
  max-width: 720px;
}

.page-band-eyebrow {
  color: var(--orange);
}

.page-band-inner h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-band-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.about-page {
  padding-top: 2.75rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: start;
  margin-bottom: 2.75rem;
}

.about-intro-copy p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-tagline {
  color: var(--heading) !important;
  font-weight: 600;
  font-size: 1.12rem !important;
}

.about-intro-copy .btn {
  margin-top: 0.5rem;
}

.about-intro-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--sky-soft);
}

.about-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values-6 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  border: 0;
  padding: 0;
}

.about-value {
  padding: 0.35rem 0.25rem;
}

.about-value-num {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange-hot);
  margin-bottom: 0.45rem;
}

.about-value strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-block {
  margin-bottom: 3rem;
}

.about-block .section-head {
  margin-bottom: 1.25rem;
}

.about-service-grid,
.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.about-service,
.about-diff {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.about-service strong,
.about-diff strong {
  display: block;
  color: var(--blue);
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.about-service p,
.about-diff p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-pills-extra {
  margin-top: 0.85rem;
}

.about-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.25rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(232, 242, 251, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
}

.about-why-copy h2 {
  margin: 0.2rem 0 0.75rem;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.about-why-copy p:last-child {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.about-ensure {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.about-ensure li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 2rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
}

.about-ensure li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.9rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.about-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-bottom: 3rem;
}

.about-lists h2 {
  margin: 0.2rem 0 0.45rem;
  color: var(--blue);
  font-size: 1.35rem;
}

.about-pills {
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.about-office {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-office h2 {
  margin: 0.2rem 0 0.85rem;
  color: var(--heading);
  font-size: 1.35rem;
}

.about-office p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 0.5rem;
}

.about-legal {
  margin: 0.5rem 0 1.15rem !important;
}

.about-faq-cta {
  margin: 1.15rem 0 0;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(18, 38, 79, 0.04);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.07);
}

.about-faq-cta-lead {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.about-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-faq-cta-actions .btn {
  transform: none;
}

.about-faq-cta-actions .btn:hover {
  transform: none;
}

.about-process {
  margin-bottom: 3rem;
}

.process-timeline-rich {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}

.process-timeline-rich .process-timeline-item {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.process-timeline-rich .process-timeline-item:not(:last-child)::after {
  display: none;
}

.process-timeline-rich .process-timeline-copy p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
}

.about-iban {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--blue);
  font-weight: 600;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
  counter-reset: none;
}

.process-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  position: relative;
  padding-top: 0.15rem;
}

.process-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 2.15rem;
  right: -0.75rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 166, 49, 0.55), rgba(26, 54, 115, 0.12));
}

.process-timeline-num {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.process-timeline-label {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-faq .section-head {
  margin-bottom: 1.15rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 0.55rem;
}

.faq details[open] {
  border-color: var(--line);
  box-shadow: var(--card-shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--heading);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--heading);
  border-bottom: 2px solid var(--heading);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.15s ease;
  opacity: 0.55;
  margin-top: -0.2rem;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
}

.faq details p {
  margin: 0.7rem 0 0.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.docs-list {
  display: grid;
  gap: 0.65rem;
}

.doc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-error {
  color: #b42318;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.success-box {
  max-width: 560px;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(247, 166, 49, 0.18), rgba(184, 212, 239, 0.35));
  border: 1px solid var(--line);
}

.success-box h2 {
  margin-top: 0;
  color: var(--blue);
}

.note-banner {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
}

.note-banner a {
  color: var(--orange);
  font-weight: 700;
}

.note-banner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #152a5c 0%, var(--blue) 55%, #243f82 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(18, 38, 79, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.note-banner-cta:hover,
.note-banner-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 166, 49, 0.55);
  box-shadow: 0 14px 34px rgba(18, 38, 79, 0.24);
  outline: none;
}

.note-banner-cta:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.note-banner-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.note-banner-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(247, 166, 49, 0.95);
}

.note-banner-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

.note-banner-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--blue-deep, #12264f);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 16px rgba(247, 166, 49, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.note-banner-cta:hover .note-banner-action,
.note-banner-cta:focus-visible .note-banner-action {
  transform: translateX(2px);
  background: #ffb44a;
}

@media (max-width: 700px) {
  .note-banner-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.05rem 1.05rem 1.1rem;
  }

  .note-banner-action {
    justify-content: center;
    width: 100%;
  }
}

.site-footer {
  margin-top: 4rem;
  background: var(--surface);
  color: var(--text);
  border-top: 1px solid var(--line);
}

.footer-contact {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  padding: 2.75rem 0 3rem;
}

.footer-contact-head {
  margin-bottom: 1.75rem;
}

.footer-contact-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-contact-lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  backdrop-filter: none;
}

.footer-contact-card:last-child {
  border-right: 0;
}

.footer-contact-card-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-icon {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky);
}

.footer-contact-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 1.75;
}

.footer-contact-card-head strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.footer-contact-card-head span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.footer-pill:hover {
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-pill-muted {
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
}

.footer-pill-accent {
  background: var(--orange);
  color: #1a1a1a;
}

.footer-pill-accent:hover {
  color: #1a1a1a;
  background: #ffc04d;
}

.footer-main {
  padding: 2.75rem 0 0;
  background: var(--surface);
}

.footer-main-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.75rem;
  align-items: center;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--orange-hot);
  letter-spacing: -0.03em;
}

.footer-brand span {
  color: var(--blue);
}

.footer-tagline {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 20rem;
  line-height: 1.45;
}

.footer-trust {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.footer-social {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.footer-social-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--blue);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.footer-social-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-social-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
}

.footer-col a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
  width: fit-content;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--orange-hot);
}

.footer-legal {
  background: var(--surface);
  border-top: 0;
  padding: 1.1rem 0 1.35rem;
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-disclaimer {
  margin: 0.4rem auto 0;
  width: min(1120px, calc(100% - 2rem));
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(90, 106, 132, 0.85);
  text-align: left;
}

.about-teaser-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-teaser-copy h2 {
  margin: 0.1rem 0 0.55rem;
  color: var(--heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-teaser-lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.5;
}

.about-teaser-stats {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
}

.about-teaser-stats li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
}

.about-teaser-stats li:not(:first-child)::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  margin: 0 0.45rem;
  flex-shrink: 0;
}

.about-teaser-stats strong {
  font-weight: 600;
  color: var(--heading);
}

.about-teaser-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  max-height: 240px;
  position: relative;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--sky-soft);
}

.about-gallery-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.about-gallery-track {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

.about-gallery-track::-webkit-scrollbar {
  display: none;
}

.about-gallery-slide {
  flex: 0 0 calc((100% - 0.9rem) / 2.55);
  scroll-snap-align: start;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-gallery-slide:first-child {
  margin-left: 0;
}

.about-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.25rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  z-index: 2;
  pointer-events: none;
}

.about-gallery-dot {
  pointer-events: auto;
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(18, 38, 79, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.about-gallery-dot.is-active {
  width: 1.05rem;
  background: #fff;
  transform: scale(1.05);
}

@media (min-width: 901px) {
  .about-gallery-track {
    display: block;
    overflow: hidden;
    position: absolute;
    inset: 0;
    scroll-snap-type: none;
  }

  .about-gallery-slide {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.1s ease, transform 7s ease;
    pointer-events: none;
  }

  .about-gallery-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
    pointer-events: auto;
    z-index: 1;
  }

  .about-gallery-dots {
    bottom: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-gallery-track {
    scroll-behavior: auto;
  }

  .about-gallery-slide {
    transition: none;
  }
}

.about-teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-teaser-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  padding: 1.1rem 0 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: none;
}

.about-teaser-pillar strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.about-teaser-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.about-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-teaser-actions .btn-outline {
  background: var(--surface);
  border-color: var(--line);
  font-weight: 600;
}

.mobile-bottom-nav {
  display: none;
}

.mob-dirs-sheet {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.55s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .about-values {
    grid-template-columns: 1fr 1fr;
  }

  .about-values-6 {
    grid-template-columns: 1fr 1fr;
  }

  .about-lists,
  .about-why,
  .about-office-grid,
  .about-service-grid,
  .about-diff-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.25rem;
  }

  .process-timeline-rich {
    grid-template-columns: 1fr;
  }

  .process-timeline-item:not(:last-child)::after {
    display: none;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-card {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-contact-card:nth-child(2n) {
    border-right: 0;
  }

  .footer-contact-card:nth-child(n + 3) {
    border-bottom: 0;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding-top: 2.25rem;
  }

  .section:last-child {
    padding-bottom: 2.25rem;
  }

  .hero {
    min-height: 0;
    align-items: start;
  }

  .hero-content {
    padding: 0.55rem 0 0.7rem;
  }

  .hero-links {
    margin-top: 0.4rem;
    font-size: 0.88rem;
    gap: 0.5rem;
  }

  /* Rozwinięta wyszukiwarka: trochę więcej powietrza */
  .hero:has(.hero-search.is-open) .hero-content {
    padding: 0.75rem 0 1rem;
  }

  .hero-search {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    transition: padding 0.32s ease, background 0.32s ease, border-radius 0.32s ease, box-shadow 0.32s ease;
  }

  .hero-search-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0.65rem 0.7rem 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 40px rgba(10, 24, 55, 0.32);
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
    max-height: 4.25rem;
    opacity: 1;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.28s ease, max-height 0.32s ease, padding 0.32s ease, margin 0.32s ease, border-width 0.2s ease;
  }

  .hero-search-summary:active {
    transform: scale(0.985);
  }

  .hero-search-summary-text {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 0.45rem;
    row-gap: 0.1rem;
    min-width: 0;
    flex: 1;
  }

  .hero-search-summary-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-search-summary-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

  .hero-search-summary-hint {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0;
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--orange-hot);
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero-search-summary-hint svg {
    flex-shrink: 0;
  }

  .hero-search-summary-action {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--blue-deep);
    box-shadow: 0 6px 16px rgba(247, 166, 49, 0.45);
  }

  .hero-search-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  }

  .hero-search-panel-inner {
    overflow: hidden;
    min-height: 0;
  }

  .hero-search.is-open {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(10, 24, 55, 0.4);
  }

  .hero-search.is-open .hero-search-summary {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border-width: 0;
    pointer-events: none;
  }

  .hero-search.is-open .hero-search-panel {
    max-height: 42rem;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-search.is-open .hero-search-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
    padding: 0 0.15rem;
  }

  .hero-search.is-pinned-open .hero-search-summary,
  .hero-search.is-pinned-open .hero-search-panel-top {
    display: none;
  }

  .hero-search.is-pinned-open .hero-search-summary {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .hero-search-panel-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--muted);
  }

  .hero-search-shrink {
    appearance: none;
    border: 0;
    background: rgba(26, 54, 115, 0.08);
    color: var(--blue);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
  }

  .hero-search-shrink:active {
    background: rgba(26, 54, 115, 0.14);
  }

  .hero-tabs {
    gap: 0.15rem;
    margin-bottom: 0.65rem;
  }

  .hero-tab {
    font-size: 0.82rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-tab-full {
    display: none;
  }

  .hero-tab-short {
    display: inline;
  }

  .hero-search-row,
  .hero-search.has-country .hero-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-search:not(.has-country) .hero-search-row {
    grid-template-columns: 1fr;
  }

  .hero-field {
    border-right: 0;
    border-bottom: 1px solid rgba(26, 54, 115, 0.1);
    padding: 0.65rem 0.85rem;
  }

  .hero-search.has-country .hero-field:nth-child(odd) {
    border-right: 1px solid rgba(26, 54, 115, 0.1);
  }

  .hero-search.has-country .hero-field:nth-child(even) {
    border-right: 0;
  }

  .hero-search-btn {
    grid-column: 1 / -1;
    margin: 0.55rem;
    width: calc(100% - 1.1rem);
  }

  @media (max-width: 420px) {
    .hero-search.has-country .hero-search-row {
      grid-template-columns: 1fr;
    }

    .hero-search.has-country .hero-field:nth-child(odd) {
      border-right: 0;
    }
  }

  .offer-inclexcl {
    grid-template-columns: 1fr;
  }

  .offer-incl {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 38, 79, 0.08);
  }

  .offer-ticks li {
    font-size: 0.86rem;
  }

  .trust,
  .map-wrap,
  .about-grid,
  .about-intro,
  .offer-inclexcl,
  .footer-main-inner,
  .footer-nav-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .dirs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .dir-tile {
    min-height: 0;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  .dir-tile:hover {
    transform: none;
  }

  .dir-tile span {
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.5rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .dir-label-full {
    display: none;
  }

  .dir-label-short {
    display: inline;
  }

  .card:hover {
    transform: none;
  }

  .offer-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "aside"
      "body";
    gap: 1.15rem;
  }

  .offer-aside {
    position: static;
    box-shadow: none;
  }

  .offer-chrome-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem 0.65rem;
  }

  .offer-related-toggle,
  .offer-related-toggle-link {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .offer-chrome-name {
    font-size: 0.88rem;
  }

  .offer-back-btn span {
    max-width: 9ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .offer-aside-cta,
  .offer-aside-note {
    display: none;
  }

  .offer-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    z-index: 70;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    /* wysokość belki - dymek supportu musi iść powyżej */
    --offer-sticky-h: 3.75rem;
  }

  .offer-sticky-cta strong {
    display: block;
    color: var(--blue);
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .offer-sticky-cta span {
    color: var(--muted);
    font-size: 0.75rem;
  }

  .offer-page {
    padding-bottom: 5.5rem;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
  }

  .process-timeline-item:not(:last-child)::after {
    display: none;
  }

  .process-timeline-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .page-band-inner {
    padding: 1.85rem 0 2rem;
  }

  .quote-row {
    grid-template-columns: 1fr;
  }

  .quote-step-text em {
    display: none;
  }

  .quote-actions-row {
    flex-wrap: wrap;
  }

  .quote-back {
    order: 2;
    flex: 1 1 100% !important;
    min-width: 0;
  }

  .site-nav .nav-full {
    display: inline;
  }

  .site-nav .nav-short {
    display: none;
  }

  .site-nav .btn-nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.15rem;
    margin-top: 0.35rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.65rem 1rem 1rem;
    margin: 0;
    width: auto;
    background: var(--nav-mobile-bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(18, 38, 79, 0.16);
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.8rem 0.45rem;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    padding: 0 4px env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    justify-content: space-around;
    background: var(--bottom-nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(18, 38, 79, 0.1);
  }

  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 2px;
    min-width: 0;
    color: var(--muted);
    font: inherit;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .mob-nav-item svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
  }

  .mob-nav-item:hover,
  .mob-nav-item.is-active,
  .mob-nav-item.active,
  .mob-nav-item.is-open {
    color: var(--blue);
  }

  .mob-nav-item.is-active svg,
  .mob-nav-item.active svg,
  .mob-nav-item.is-open svg {
    transform: translateY(-1px);
  }

  .mob-nav-item.is-active::before,
  .mob-nav-item.active::before,
  .mob-nav-item.is-open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: var(--orange);
  }

  .mob-nav-cta {
    background: var(--blue);
    color: #fff;
    border-radius: 14px;
    margin: 8px 4px;
    flex: 1.15;
    font-size: 10px;
    box-shadow: 0 8px 18px rgba(18, 38, 79, 0.28);
  }

  .mob-nav-cta:hover,
  .mob-nav-cta.is-active,
  .mob-nav-cta.active {
    color: #fff;
  }

  .mob-nav-cta::before {
    display: none;
  }

  .mob-dirs-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
  }

  .mob-dirs-sheet:not([hidden]) {
    display: block;
  }

  .mob-dirs-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 38, 79, 0.35);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: auto;
  }

  .mob-dirs-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    margin: 0 10px 10px;
    padding: 0.55rem 0.7rem 0.85rem;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(18, 38, 79, 0.22);
    transform: translateY(12px);
    opacity: 0;
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease;
    pointer-events: auto;
  }

  .mob-dirs-sheet.is-open .mob-dirs-backdrop {
    opacity: 1;
  }

  .mob-dirs-sheet.is-open .mob-dirs-panel {
    transform: none;
    opacity: 1;
  }

  .mob-dirs-grabber {
    display: flex;
    justify-content: center;
    padding: 2px 0 8px;
  }

  .mob-dirs-grabber span {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: rgba(18, 38, 79, 0.16);
  }

  .mob-dirs-title {
    margin: 0 0 0.55rem;
    padding: 0 0.25rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .mob-dirs-list {
    display: grid;
    gap: 0.4rem;
  }

  .mob-dirs-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 54, 115, 0.08);
    background: rgba(26, 54, 115, 0.03);
    color: var(--blue);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .mob-dirs-link:hover,
  .mob-dirs-link.is-active,
  .mob-dirs-link.active {
    background: rgba(247, 166, 49, 0.12);
    border-color: rgba(247, 166, 49, 0.35);
  }

  .mob-dirs-icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid rgba(26, 54, 115, 0.08);
    color: var(--blue);
  }

  .mob-dirs-icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .mob-dirs-copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
  }

  .mob-dirs-copy strong {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .mob-dirs-copy em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--muted);
  }

  .yt-root {
    padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .footer-contact {
    padding: 1.2rem 0 1.35rem;
  }

  .footer-contact-head {
    margin-bottom: 0.7rem;
  }

  .footer-contact-title {
    font-size: 1.12rem;
    margin-bottom: 0.15rem;
  }

  .footer-contact-lead {
    font-size: 0.78rem;
  }

  .footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .footer-contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.35rem 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    backdrop-filter: none;
  }

  .footer-contact-card:last-child {
    border-bottom: 0;
  }

  .footer-contact-card-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
  }

  .footer-contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
  }

  .footer-contact-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .footer-contact-card-head strong {
    font-size: 0.86rem;
    margin-bottom: 0;
  }

  .footer-contact-card-head span {
    display: none;
  }

  .footer-contact-card:last-child .footer-contact-card-head span {
    display: block;
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 0.08rem;
  }

  .footer-contact-actions {
    grid-column: 1 / -1;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-left: 2.65rem;
  }

  .footer-contact-card:has(.footer-pill-accent) .footer-contact-actions {
    padding-left: 0;
  }

  .footer-contact-card:has(.footer-pill-accent) .footer-contact-card-head span {
    display: none;
  }

  .footer-contact .footer-pill {
    min-height: 2rem;
    padding: 0.32rem 0.72rem;
    font-size: 0.78rem;
    border-radius: 999px;
    box-shadow: none;
    transform: none;
  }

  .footer-contact .footer-pill:hover {
    transform: none;
    box-shadow: none;
  }

  .footer-contact-card:first-child .footer-contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-card:nth-child(2) {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .footer-contact-card:nth-child(2) .footer-contact-card-head {
    grid-column: auto;
    flex: 1;
    min-width: 0;
  }

  .footer-contact-card:nth-child(2) .footer-contact-actions {
    grid-column: auto;
    padding-left: 0;
    justify-content: flex-end;
  }

  .footer-contact-card:nth-child(2) .footer-pill {
    max-width: 11.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-contact .footer-pill-accent {
    width: 100%;
    min-height: 2.25rem;
    font-size: 0.82rem;
  }

  .footer-contact-card:last-child .footer-contact-actions .footer-pill {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    padding: 1.35rem 0 0.55rem;
  }

  .footer-brand {
    font-size: 1.25rem;
  }

  .footer-social-btn {
    width: 2.15rem;
    height: 2.15rem;
  }

  .footer-social-btn svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .footer-tagline,
  .footer-trust {
    font-size: 0.82rem;
    max-width: none;
  }

  .footer-trust {
    margin-bottom: 0;
  }

  .footer-nav-grid {
    display: none;
  }

  .footer-main-inner {
    gap: 0;
  }

  .footer-legal {
    padding: 0 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-copy {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .footer-disclaimer {
    margin: 0.35rem auto 0;
    width: min(1120px, calc(100% - 2rem));
    max-width: none;
    padding: 0;
    text-align: left;
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .flag-list {
    max-height: none;
    overflow: visible;
  }

  .flag-list:not(.is-expanded) .flag-item:nth-child(n + 7) {
    display: none;
  }

  .flag-list-more {
    display: flex;
    width: auto;
    max-width: none;
    align-self: stretch;
    box-sizing: border-box;
    margin: 0.15rem 0.65rem 0.65rem;
    justify-content: center;
  }

  /* Modal mapy: po rozwinięciu lista rośnie naturalnie, przycisk pod spodem (bez nachodzenia). */
  .yt-sheet-countries .flag-list {
    max-height: none;
    overflow: visible;
  }

  .yt-sheet-countries .flag-list-more {
    width: auto;
    align-self: stretch;
    margin: 0.15rem 0.65rem 0.65rem;
  }

  .about-teaser-top {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .about-teaser-copy h2 {
    font-size: 1.28rem;
    margin-bottom: 0.4rem;
  }

  .about-teaser-lead {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.55rem;
  }

  .about-teaser-stats {
    margin-bottom: 0.65rem;
  }

  .about-teaser-stats li {
    font-size: 0.78rem;
  }

  .about-teaser-media {
    order: -1;
    border-radius: 14px;
    aspect-ratio: auto;
    max-height: none;
    height: 7.75rem;
    overflow: hidden;
  }

  .about-gallery {
    gap: 0;
  }

  .about-gallery-viewport {
    border-radius: 14px;
  }

  .about-gallery-track {
    gap: 0.4rem;
    padding-inline: 0.15rem;
  }

  .about-gallery-slide {
    flex: 0 0 calc((100% - 0.8rem) / 2.65);
    border-radius: 11px;
    scroll-snap-align: start;
  }

  .about-gallery-dots {
    bottom: 0.4rem;
  }

  .about-intro-media.about-gallery {
    aspect-ratio: auto;
    height: 8.25rem;
    max-height: none;
  }

  .about-teaser-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.65rem;
    padding: 0.75rem 0 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    overflow: visible;
  }

  .about-teaser-pillar {
    padding: 0;
    text-align: left;
    border-right: 0;
  }

  .about-teaser-pillar strong {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
  }

  .about-teaser-pillar p {
    display: block;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .about-teaser-actions {
    flex-direction: row;
    gap: 0.45rem;
  }

  .about-teaser-actions .btn {
    flex: 1;
    width: auto;
    min-height: 2.45rem;
    padding: 0.52rem 0.7rem;
    font-size: 0.84rem;
    border-radius: 11px;
    transform: none;
  }

  .about-teaser-actions .btn:hover {
    transform: none;
  }
}

/* -- Support bubble -- */
.yt-support {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 85;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

.yt-support-fab,
.yt-support-panel {
  pointer-events: auto;
}

.yt-support-fab {
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 38, 79, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.yt-support-fab:hover {
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18, 38, 79, 0.35);
}

.yt-support-fab svg {
  width: 1.35rem;
  height: 1.35rem;
}

.yt-support-fab-close {
  display: none;
}

.yt-support.is-open .yt-support-fab {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 38, 79, 0.28);
}

.yt-support.is-open .yt-support-fab-open {
  display: none;
}

.yt-support.is-open .yt-support-fab-close {
  display: block;
}

.yt-support-panel {
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 7rem));
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.1);
  box-shadow: 0 24px 60px rgba(18, 38, 79, 0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.yt-support-panel:not([hidden]).is-open {
  opacity: 1;
  transform: none;
}

.yt-support-panel[hidden] {
  display: none !important;
}

.yt-support-panel.is-dragging {
  transition: none;
}

.yt-support-grabber {
  display: none;
  justify-content: center;
  padding: 10px 0 2px;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #243f82 100%);
}

.yt-support-grabber span {
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.yt-support-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(135deg, var(--blue) 0%, #243f82 100%);
  color: #fff;
  flex-shrink: 0;
}

.yt-support-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.yt-support-brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.15;
}

.yt-support-brand em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.78;
}

.yt-support-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--orange);
  flex-shrink: 0;
}

.yt-support-avatar svg {
  width: 1.15rem;
  height: 1.15rem;
}

.yt-support-back,
.yt-support-x {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.yt-support-back:hover,
.yt-support-x:hover {
  background: rgba(255, 255, 255, 0.22);
}

.yt-support-back[hidden] {
  display: none !important;
}

.yt-support-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1rem 0.95rem 1.1rem;
  -webkit-overflow-scrolling: touch;
}

.yt-support-hello {
  margin: 0.15rem 0 0.25rem;
  color: var(--blue);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.yt-support-lead,
.yt-support-kicker {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.yt-support-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange-hot);
}

.yt-support-actions {
  display: grid;
  gap: 0.45rem;
}

.yt-support-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 54, 115, 0.08);
  background: rgba(26, 54, 115, 0.03);
  color: var(--blue);
  text-align: left;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.yt-support-card:hover {
  background: rgba(247, 166, 49, 0.1);
  border-color: rgba(247, 166, 49, 0.35);
  color: var(--blue);
}

.yt-support-card-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(26, 54, 115, 0.08);
  color: var(--blue);
  flex-shrink: 0;
}

.yt-support-card-ico-orange {
  background: rgba(247, 166, 49, 0.2);
  color: var(--orange-hot);
}

.yt-support-card-ico svg {
  width: 1.1rem;
  height: 1.1rem;
}

.yt-support-card span:not(.yt-support-card-ico) {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.yt-support-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.yt-support-card em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

.yt-support-chev {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  flex-shrink: 0;
}

.yt-support-faq {
  display: grid;
  gap: 0.4rem;
}

.yt-support-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(26, 54, 115, 0.08);
  background: rgba(26, 54, 115, 0.03);
  overflow: hidden;
}

.yt-support-faq-item[open] {
  background: var(--surface);
  border-color: rgba(26, 54, 115, 0.14);
}

.yt-support-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.85rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  position: relative;
  padding-right: 2rem;
}

.yt-support-faq-item summary::-webkit-details-marker {
  display: none;
}

.yt-support-faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s ease;
}

.yt-support-faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.yt-support-faq-item p {
  margin: 0;
  padding: 0 0.85rem 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.yt-support-linkbtn {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.65rem;
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.yt-support-body.is-messenger {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.yt-support-panel.is-messenger {
  height: min(620px, calc(100vh - 6.5rem));
}

.yt-support-messenger {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.yt-support-thread {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0.85rem 0.85rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 166, 49, 0.05), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(26, 54, 115, 0.05), transparent 40%),
    var(--surface);
}

.yt-support-day {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.15rem 0 0.35rem;
}

.yt-support-day span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(26, 54, 115, 0.07);
  border: 1px solid rgba(26, 54, 115, 0.06);
}

.yt-support-bubble {
  max-width: 86%;
  padding: 0.7rem 0.85rem 0.55rem;
  border-radius: 18px;
  color: var(--text);
  position: relative;
}

.yt-support-bubble-in {
  align-self: flex-start;
  background: rgba(26, 54, 115, 0.07);
  border-radius: 4px 18px 18px 18px;
}

.yt-support-bubble-out {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--blue) 0%, #243f82 100%);
  color: #fff;
  border-radius: 18px 4px 18px 18px;
}

.yt-support-bubble p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.yt-support-bubble time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  opacity: 0.65;
  text-align: right;
}

.yt-support-bubble-in time {
  color: var(--muted);
  opacity: 1;
}

.yt-support-filechip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
}

.yt-support-bubble-in .yt-support-filechip {
  background: rgba(26, 54, 115, 0.08);
}

.yt-support-filechip svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.yt-support-contact-card {
  display: grid;
  gap: 0.45rem;
  margin: 0.15rem 0 0.25rem;
  padding: 0.85rem 0.85rem 0.8rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.1);
  box-shadow: 0 8px 22px rgba(18, 38, 79, 0.06);
}

.yt-support-contact-label {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.yt-support-contact-card input[type="text"],
.yt-support-contact-card input[type="email"],
.yt-support-contact-card input[type="tel"],
.yt-support-contact-card input:not([type="checkbox"]) {
  font: inherit;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: rgba(26, 54, 115, 0.05);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(26, 54, 115, 0.08);
}

.yt-support-contact-card input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px rgba(26, 54, 115, 0.35), 0 0 0 3px rgba(26, 54, 115, 0.08);
}

.yt-support-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 0.15rem;
}

.yt-support-check input {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.yt-support-contact-card .form-error {
  margin: 0;
  font-size: 0.78rem;
  color: #c0392b;
}

.yt-support-composer {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(26, 54, 115, 0.08);
  background: var(--surface);
}

.yt-support-composer textarea {
  flex: 1;
  min-width: 0;
  resize: none;
  border: 0;
  border-radius: 18px;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.35;
  max-height: 110px;
  background: rgba(26, 54, 115, 0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(26, 54, 115, 0.08);
}

.yt-support-composer textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px rgba(26, 54, 115, 0.28);
}

.yt-support-composer-icon {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.yt-support-composer-icon:hover {
  color: var(--blue);
  background: rgba(26, 54, 115, 0.06);
}

.yt-support-composer-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.yt-support-composer-send {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(18, 38, 79, 0.22);
}

.yt-support-composer-send:hover {
  filter: brightness(1.06);
}

.yt-support-composer-send svg {
  width: 1.05rem;
  height: 1.05rem;
  margin-left: 1px;
}

.yt-support-sent {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.yt-support-sent strong {
  display: block;
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.yt-support-sent p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

body.yt-modal-open .yt-support {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .yt-support {
    right: 0.85rem;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
  }

  /* Nad belką „Wycena” na stronie oferty */
  .yt-root:has(.offer-sticky-cta) .yt-support {
    bottom: calc(
      var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + var(--offer-sticky-h, 3.75rem) + 0.7rem
    );
  }

  /* Pełny ekran w visualViewport (klawiatura iOS nie rozjeżdża overlay) */
  .yt-support.is-open {
    top: var(--vv-top, 0px);
    left: var(--vv-left, 0px);
    right: auto;
    bottom: auto;
    width: var(--vv-width, 100%);
    height: var(--app-height, 100dvh);
    max-height: var(--app-height, 100dvh);
    z-index: 200;
    align-items: stretch;
    gap: 0;
    pointer-events: none;
  }

  .yt-support.is-open .yt-support-fab {
    position: absolute;
    right: 0.85rem;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
    z-index: 1;
    pointer-events: none;
  }

  .yt-support-panel {
    width: min(100vw - 1.2rem, 380px);
    height: min(68vh, 520px);
    max-height: calc(var(--app-height, 100dvh) - 5.5rem);
  }

  .yt-support.is-open .yt-support-panel,
  .yt-support.is-open .yt-support-panel.is-messenger {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    transform-origin: center bottom;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .yt-support.is-open .yt-support-panel:not([hidden]).is-open {
    transform: translate3d(0, 0, 0);
  }

  .yt-support-grabber {
    display: flex;
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
  }

  .yt-support-head {
    border-radius: 0;
  }

  .yt-support-fab {
    width: 3.25rem;
    height: 3.25rem;
    z-index: 1;
  }

  /* iOS Safari: font-size < 16px powoduje auto-zoom przy focusie */
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]),
  textarea,
  select {
    font-size: 16px !important;
  }

  html.yt-support-open,
  body.yt-support-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  /* Ukryj dolną nawigację gdy klawiatura zajmuje viewport */
  html.yt-keyboard-open .mobile-bottom-nav,
  html.yt-keyboard-open .offer-sticky-cta {
    visibility: hidden;
    pointer-events: none;
  }
}

/* -- About page redesign -- */
.about-hero .page-band-inner {
  max-width: 780px;
}

.about-hero-stats {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 28rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-stats li:last-child {
  border-right: 0;
}

.about-hero-stats strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-hero-stats span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.about-page {
  padding-top: 2.5rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-intro-media {
  margin: 0;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  background: var(--sky-soft);
  position: relative;
  max-height: none;
}

@media (min-width: 901px) {
  .about-intro {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "copy media"
      "actions media";
    gap: 1.25rem 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .about-intro-copy {
    grid-area: copy;
  }

  .about-intro-media {
    grid-area: media;
    aspect-ratio: 4 / 3;
    max-height: none;
    align-self: stretch;
  }

  .about-intro-actions {
    grid-area: actions;
    margin-top: 0.15rem;
  }
}

.about-intro-lead {
  font-size: 1.12rem !important;
  line-height: 1.55 !important;
  color: var(--text) !important;
}

.about-intro-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.about-tagline {
  color: var(--heading) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  letter-spacing: -0.02em;
}

.about-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(26, 54, 115, 0.06);
  color: var(--blue);
  flex-shrink: 0;
}

.about-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}

.about-feature-grid {
  display: grid;
  gap: 0.85rem;
}

.about-feature-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-feature-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.08);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.about-feature:hover {
  border-color: rgba(247, 166, 49, 0.45);
  box-shadow: 0 10px 28px rgba(18, 38, 79, 0.06);
}

.about-feature-flat {
  background: transparent;
  border-color: transparent;
  padding: 0.45rem 0.2rem;
}

.about-feature-flat:hover {
  box-shadow: none;
  border-color: transparent;
}

.about-feature strong {
  color: var(--blue);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.about-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-audience-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(26, 54, 115, 0.03);
  border: 1px solid rgba(26, 54, 115, 0.07);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
}

.about-audience-item .about-ico {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
}

.about-audience-item .about-ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

.about-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 1.25rem 1.1rem;
  margin-bottom: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #f3f8fd 0%, #fff 55%);
  border: 1px solid var(--line);
}

@media (min-width: 901px) {
  .about-why {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    padding: 1.65rem 1.75rem;
    margin-bottom: 3rem;
    border-radius: 22px;
  }
}

.about-reviews {
  margin-bottom: 2.75rem;
}

.about-reviews .section-head,
.about-reviews-head {
  margin-bottom: 1.15rem;
}

.g-reviews {
  display: grid;
  gap: 1rem;
}

.g-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.g-reviews-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.g-ico {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  display: block;
}

.g-reviews-brand .g-ico {
  width: 1.7rem;
  height: 1.7rem;
}

.g-reviews-brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.g-reviews-brand-copy strong {
  color: var(--heading);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.g-reviews-brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.g-reviews-scoreblock {
  display: grid;
  gap: 0.2rem;
}

.g-reviews-scoreline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.g-reviews-score {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--heading);
  font-weight: 700;
}

.g-reviews-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.g-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
}

.g-star {
  width: 0.95rem;
  height: 0.95rem;
  fill: rgba(26, 54, 115, 0.18);
}

.g-star.is-on {
  fill: #fbbc04;
}

.g-reviews-all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.g-reviews-all svg {
  width: 0.95rem;
  height: 0.95rem;
}

.g-reviews-all:hover {
  background: var(--sky-soft);
  border-color: rgba(26, 54, 115, 0.22);
  transform: translateY(-1px);
}

.g-reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 20.5rem);
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.35rem;
  margin-inline: -0.1rem;
}

.g-reviews-grid::-webkit-scrollbar {
  display: none;
}

.g-reviews-grid > .g-review {
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 900px) {
  .g-reviews-grid {
    display: grid;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .g-reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.g-review {
  margin: 0;
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 0.55rem;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .g-review:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(26, 54, 115, 0.18);
  }
}

.g-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.g-review-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--av, #1a73e8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.g-review-meta {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.g-review-name {
  color: var(--heading);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.g-review-when {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.g-review-source .g-ico {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.92;
}

.g-review-text {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-reviews-foot {
  margin: 1.15rem 0 0;
}

.g-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.g-reviews-cta .g-ico {
  width: 1.15rem;
  height: 1.15rem;
}

.about-reviews-cta {
  margin-top: 0.75rem;
}

.about-reviews-aside {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.1);
  text-align: center;
}

.about-reviews-score {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--blue);
}

.about-reviews-score strong {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-reviews-score span {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: lowercase;
}

.about-reviews-aside .muted {
  margin: 0;
}

.about-who {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.about-who-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.about-who-list li {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(18, 38, 79, 0.05);
  border: 1px solid rgba(18, 38, 79, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  min-width: 0;
}

@media (min-width: 720px) {
  .about-who-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .about-who-list li {
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
  }
}

.about-reviews-cta {
  margin-top: 0.75rem;
}

.about-reviews-aside {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.1);
  text-align: center;
}

.about-reviews-score {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--blue);
}

.about-reviews-score strong {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-reviews-score span {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: lowercase;
}

.about-reviews-aside .muted {
  margin: 0;
}

.about-ensure li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  position: static;
}

.about-ensure li::before {
  display: none;
}

.about-ensure .about-ico {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(247, 166, 49, 0.16);
  color: var(--orange-hot);
}

.about-ensure .about-ico svg {
  width: 0.9rem;
  height: 0.9rem;
}

.about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.about-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(26, 54, 115, 0.08);
}

.about-step-num {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.about-step-body {
  display: flex;
  gap: 0.65rem;
  min-width: 0;
}

.about-step-body .about-ico {
  width: 2.1rem;
  height: 2.1rem;
}

.about-step-body strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about-step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.about-contact-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--heading);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.about-contact-card:hover {
  border-color: rgba(247, 166, 49, 0.45);
  background: rgba(247, 166, 49, 0.08);
  color: var(--heading);
}

.about-contact-card .about-ico {
  margin-top: 0.1rem;
}

.about-contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.about-contact-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.about-contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-office-meta {
  margin-bottom: 0.75rem;
}

.about-office-meta p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-office .section-head h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.4rem;
}

@media (max-width: 1100px) {
  .about-feature-grid-4,
  .about-feature-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 900px) {
  .about-hero-stats {
    max-width: none;
    width: 100%;
    border-radius: 12px;
  }

  .about-hero-stats li {
    min-width: 0;
    flex: unset;
    padding: 0.6rem 0.7rem;
  }

  .about-hero-stats strong {
    font-size: 0.88rem;
  }

  .about-hero-stats span {
    font-size: 0.64rem;
  }

  .about-intro-copy p {
    font-size: 0.95rem;
  }

  .about-intro-lead {
    font-size: 1.02rem !important;
  }

  .about-tagline {
    font-size: 1.08rem !important;
    margin-bottom: 0 !important;
  }

  .about-intro-media {
    border-radius: 14px;
    aspect-ratio: 16 / 9;
  }

  .about-intro-actions {
    flex-direction: column;
    margin-top: 0.15rem;
  }

  .about-intro-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-feature-grid-4,
  .about-feature-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 16px;
    background: rgba(18, 38, 79, 0.035);
    box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.06);
    overflow: hidden;
  }

  .about-audience {
    grid-template-columns: 1fr;
  }

  .about-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(18, 38, 79, 0.08);
    box-shadow: none;
  }

  .about-feature:last-child {
    border-bottom: 0;
  }

  .about-feature:hover {
    border-color: transparent;
    border-bottom-color: rgba(18, 38, 79, 0.08);
    box-shadow: none;
    background: rgba(18, 38, 79, 0.03);
  }

  .about-feature:last-child:hover {
    border-bottom-color: transparent;
  }

  .about-feature .about-ico {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 11px;
    margin-top: 0.05rem;
  }

  .about-feature .about-ico svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .about-feature strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
  }

  .about-feature p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .about-feature-flat {
    padding: 0.7rem 0.15rem;
    border-bottom: 1px solid rgba(18, 38, 79, 0.08);
  }

  .about-who {
    margin-top: 1.05rem;
  }

  .about-who-list li {
    font-size: 0.78rem;
    padding: 0.5rem 0.55rem;
  }

  .about-faq-cta {
    padding: 0.9rem 0.95rem;
  }

  .about-faq-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .about-faq-cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.45rem;
    padding-inline: 0.45rem;
    font-size: 0.8rem;
  }

  html[data-theme="dark"] .about-feature-grid-4,
  html[data-theme="dark"] .about-feature-grid-3 {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  html[data-theme="dark"] .about-feature {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  html[data-theme="dark"] .about-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  html[data-theme="dark"] .about-feature:last-child:hover {
    border-bottom-color: transparent;
  }

  .about-step {
    padding: 0.7rem 0.75rem;
  }

  .about-step-body {
    gap: 0.5rem;
  }

  .about-block {
    margin-bottom: 2.1rem;
  }

  .about-why {
    padding: 1.1rem 0.95rem 1.15rem;
    margin-bottom: 2.1rem;
  }

  .about-why-copy h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .about-why-copy p:last-child {
    font-size: 0.92rem;
  }

  .about-ensure {
    gap: 0.4rem;
  }

  .about-ensure li {
    padding: 0.55rem 0.6rem;
    font-size: 0.86rem;
    align-items: center;
  }

  .about-ensure .about-ico {
    width: 1.55rem;
    height: 1.55rem;
  }

  .about-office {
    margin-top: 1.75rem;
    padding: 1rem 0.9rem 1.1rem;
    border-radius: 16px;
  }

  .about-office .section-head {
    margin-bottom: 0.75rem;
  }

  .about-office .section-head h2 {
    font-size: 1.2rem;
  }

  .about-contact-card {
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
  }

  .about-contact-card .about-ico {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    margin-top: 0;
  }

  .about-contact-card .about-ico svg {
    width: 1rem;
    height: 1rem;
  }

  .about-contact-card strong {
    font-size: 0.86rem;
  }

  .about-contact-card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .about-office-meta p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .about-legal {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin: 0.35rem 0 0.9rem !important;
  }
}

/* -- Values rail (brand-inspired) -- */
.about-values-panel {
  margin-bottom: 3.25rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.about-values-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.about-values-head .section-eyebrow {
  margin-bottom: 0.25rem;
}

.about-values-head h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
}

.about-values-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.about-values-ornament-line {
  width: min(120px, 22vw);
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 6px,
    transparent 6px 12px
  );
  opacity: 0.85;
}

.about-values-ornament .about-ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}

.about-values-ornament .about-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.about-values-rail {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 0;
}

.about-value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1.1rem;
  align-items: stretch;
  position: relative;
  padding-bottom: 1rem;
  animation: aboutValueIn 0.55s ease both;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

@keyframes aboutValueIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.about-value-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  top: 3.1rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(26, 54, 115, 0.2),
    rgba(247, 166, 49, 0.35),
    rgba(26, 54, 115, 0.12)
  );
  border-radius: 999px;
}

.about-value-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 0.15rem;
}

.about-value-ico {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 38, 79, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-value-ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-value-item.is-navy .about-value-ico {
  background: var(--blue);
}

.about-value-item.is-orange .about-value-ico {
  background: var(--orange);
  color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(247, 166, 49, 0.35);
}

.about-value-item.is-sky .about-value-ico {
  background: #4a6fa5;
}

.about-value-card {
  margin: 0;
  padding: 0.95rem 1.1rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  box-shadow: var(--card-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-value-item.is-navy .about-value-card {
  border-color: rgba(26, 54, 115, 0.22);
}

.about-value-item.is-orange .about-value-card {
  border-color: rgba(247, 166, 49, 0.55);
}

.about-value-item.is-sky .about-value-card {
  border-color: rgba(74, 111, 165, 0.4);
}

.about-value-card strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .about-value-item:hover .about-value-ico,
  .about-value-item:focus-within .about-value-ico {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(18, 38, 79, 0.2);
  }

  .about-value-item.is-orange:hover .about-value-ico,
  .about-value-item.is-orange:focus-within .about-value-ico {
    box-shadow: 0 12px 28px rgba(247, 166, 49, 0.45);
  }

  .about-value-item:hover .about-value-card,
  .about-value-item:focus-within .about-value-card {
    transform: translateX(6px);
    box-shadow: var(--card-shadow-hover);
    background: var(--surface);
  }

  .about-value-item.is-navy:hover .about-value-card,
  .about-value-item.is-navy:focus-within .about-value-card {
    border-color: var(--blue);
  }

  .about-value-item.is-orange:hover .about-value-card,
  .about-value-item.is-orange:focus-within .about-value-card {
    border-color: var(--orange-hot);
  }

  .about-value-item.is-sky:hover .about-value-card,
  .about-value-item.is-sky:focus-within .about-value-card {
    border-color: #4a6fa5;
  }
}

@media (min-width: 901px) {
  .about-values-rail {
    max-width: 720px;
  }

  .about-value-item {
    gap: 1rem 1.35rem;
    padding-bottom: 1.15rem;
  }

  .about-value-ico {
    width: 3.25rem;
    height: 3.25rem;
  }

  .about-value-item:not(:last-child)::before {
    left: 1.55rem;
    top: 3.35rem;
  }

  .about-value-card {
    padding: 1.05rem 1.25rem 1.1rem;
  }

  .about-value-card strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .about-values-panel {
    margin-bottom: 2.1rem;
  }

  .about-values-ornament-line {
    width: min(72px, 18vw);
  }

  .about-value-item {
    gap: 0.65rem 0.75rem;
    padding-bottom: 0.85rem;
  }

  .about-value-ico {
    width: 2.55rem;
    height: 2.55rem;
  }

  .about-value-item:not(:last-child)::before {
    left: 1.2rem;
    top: 2.7rem;
  }

  .about-value-card {
    padding: 0.8rem 0.85rem;
  }

  .about-value-card strong {
    font-size: 0.98rem;
  }

  .about-value-card p {
    font-size: 0.86rem;
  }
}

/* Process rail extras (shares values panel styles) */
.about-process-panel {
  margin-top: 0;
}

.about-process-lead {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-process-item:not(:last-child)::before {
  top: 3.1rem;
  left: 1.45rem;
}

@media (min-width: 901px) {
  .about-process-item:not(:last-child)::before {
    left: 1.45rem;
    top: 3.1rem;
  }

  .about-process-rail {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .about-process-item:not(:last-child)::before {
    left: 1.2rem;
    top: 3rem;
  }
}

/* Dark mode - component overrides */
html[data-theme="dark"] .footer-col a,
html[data-theme="dark"] .about-office-meta a,
html[data-theme="dark"] .catalog-count a {
  color: #ffffff;
}

html[data-theme="dark"] .footer-col a:hover,
html[data-theme="dark"] .about-office-meta a:hover {
  color: var(--orange);
}

html[data-theme="dark"] .about-faq-cta {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .about-faq-cta-lead {
  color: rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .about-iban {
  color: #ffffff;
}

html[data-theme="dark"] .about-contact-card strong {
  color: #ffffff;
}

html[data-theme="dark"] .about-contact-card .about-ico {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .about-contact-card:hover .about-ico {
  color: #ffffff;
  background: rgba(247, 166, 49, 0.22);
}

html[data-theme="dark"] .about-ico {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .chip {
  background: var(--sky-soft);
  color: #c5d9f5;
}

html[data-theme="dark"] .about-who-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8eef8;
}

html[data-theme="dark"] .chip-orange {
  background: rgba(247, 166, 49, 0.18);
  color: #ffd08a;
}

html[data-theme="dark"] .btn-primary {
  color: #1a1a1a;
  box-shadow: 0 6px 16px rgba(247, 166, 49, 0.16);
}

html[data-theme="dark"] .btn-primary:hover {
  color: #1a1a1a;
}

html[data-theme="dark"] .footer-contact .footer-pill:not(.footer-pill-accent) {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

html[data-theme="dark"] .footer-contact .footer-pill:not(.footer-pill-accent):hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--orange);
  border-color: rgba(247, 166, 49, 0.28);
  box-shadow: none;
}

html[data-theme="dark"] .footer-contact .footer-pill-muted {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .footer-contact .footer-pill-muted:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .footer-contact-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .footer-contact-grid {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .footer-pill-accent,
html[data-theme="dark"] .footer-pill-accent:hover {
  color: #1a1a1a;
}

html[data-theme="dark"] .hero-tab.is-active {
  background: #4a7ab8;
  color: #fff;
}

html[data-theme="dark"] .hero-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #c5d9f5;
}

html[data-theme="dark"] .hero-field {
  border-right-color: var(--line);
}

html[data-theme="dark"] .hero-field span,
html[data-theme="dark"] .catalog-filters-label,
html[data-theme="dark"] .catalog-filter-field,
html[data-theme="dark"] .catalog-filters-toggle,
html[data-theme="dark"] .catalog-filters-chevron {
  color: #9ec5f0;
  border-color: #9ec5f0;
}

html[data-theme="dark"] .hero-combo input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c5d9f5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

html[data-theme="dark"] .catalog-filter-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c5d9f5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .nav-toggle span {
  background: #c5d9f5;
}

html[data-theme="dark"] .btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #c5d9f5;
  background: transparent;
}

html[data-theme="dark"] .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange);
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .quote-fields input,
html[data-theme="dark"] .quote-fields textarea,
html[data-theme="dark"] .quote-fields select,
html[data-theme="dark"] .hero-field input,
html[data-theme="dark"] .hero-field select,
html[data-theme="dark"] .catalog-filter-field select,
html[data-theme="dark"] .filters select,
html[data-theme="dark"] .filters input,
html[data-theme="dark"] .form-grid input,
html[data-theme="dark"] .form-grid textarea,
html[data-theme="dark"] .form-grid select {
  background: var(--input-bg);
  border-color: var(--input-border);
  color: var(--text);
}

html[data-theme="dark"] .offer-aside,
html[data-theme="dark"] .offer-related-panel,
html[data-theme="dark"] .yt-sheet-panel,
html[data-theme="dark"] .quote-actions,
html[data-theme="dark"] .about-intro,
html[data-theme="dark"] .about-feature-card,
html[data-theme="dark"] .about-audience-item,
html[data-theme="dark"] .map-legend,
html[data-theme="dark"] .form-card,
html[data-theme="dark"] .yt-support-panel,
html[data-theme="dark"] .yt-support-faq-item,
html[data-theme="dark"] .mob-dirs-panel,
html[data-theme="dark"] .hero-search-panel,
html[data-theme="dark"] .card-custom {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .card-custom {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

html[data-theme="dark"] .offer-chrome {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .offer-related-toggle,
html[data-theme="dark"] .offer-related-toggle-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #e8eef8;
}

html[data-theme="dark"] .offer-related-toggle:hover,
html[data-theme="dark"] .offer-related-toggle-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow: none;
}

html[data-theme="dark"] .offer-related-head p {
  color: #94a3b8;
}

html[data-theme="dark"] .offer-related-head a {
  color: #c5d9f5;
}

html[data-theme="dark"] .offer-related-head a:hover {
  color: var(--orange);
}

html[data-theme="dark"] .offer-related-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .offer-related-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .offer-related-item strong {
  color: #ffffff;
}

html[data-theme="dark"] .offer-related-item em {
  color: #94a3b8;
}

html[data-theme="dark"] .offer-related-track {
  scrollbar-width: auto;
  scrollbar-color: rgba(255, 255, 255, 0.55) rgba(255, 255, 255, 0.12);
  padding-bottom: 0.55rem;
}

html[data-theme="dark"] .offer-related-track::-webkit-scrollbar {
  height: 10px;
}

html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-button,
html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-button:single-button,
html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-button:horizontal:decrement,
html[data-theme="dark"] .offer-related-track::-webkit-scrollbar-button:horizontal:increment {
  display: block;
  width: 0;
  height: 0;
  background: transparent;
}

html[data-theme="dark"] .offer-chrome-name,
html[data-theme="dark"] .offer-back-btn,
html[data-theme="dark"] .about-office .section-head h2,
html[data-theme="dark"] .about-feature-card strong,
html[data-theme="dark"] .about-process-item strong,
html[data-theme="dark"] .about-intro-lead strong {
  color: var(--heading);
}

html[data-theme="dark"] .offer-back-btn:hover {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--heading);
}

html[data-theme="dark"] .catalog-filters-panel {
  border-top-color: var(--line);
}

html[data-theme="dark"] .catalog-filters-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .catalog-filters.has-active .catalog-filters-toggle-meta {
  color: #c5d9f5;
}

html[data-theme="dark"] .footer-social-btn {
  background: var(--sky-soft);
  color: #c5d9f5;
}

html[data-theme="dark"] .footer-social-btn:hover {
  background: #4a7ab8;
  color: #fff;
}

html[data-theme="dark"] .footer-brand {
  color: var(--orange-hot);
}

html[data-theme="dark"] .footer-brand span {
  color: #c5d9f5;
}

html[data-theme="dark"] .mob-nav-item {
  color: var(--muted);
}

html[data-theme="dark"] .mob-nav-item.is-active,
html[data-theme="dark"] .mob-nav-item.active,
html[data-theme="dark"] .mob-nav-item.is-open {
  color: var(--orange-hot);
}

html[data-theme="dark"] .mob-nav-cta,
html[data-theme="dark"] .mob-nav-cta:hover,
html[data-theme="dark"] .mob-nav-cta.is-active,
html[data-theme="dark"] .mob-nav-cta.active {
  color: var(--blue-deep);
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(247, 166, 49, 0.35);
}

html[data-theme="dark"] .mob-dirs-title {
  color: #c5d9f5;
}

html[data-theme="dark"] .mob-dirs-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: #ffffff;
}

html[data-theme="dark"] .mob-dirs-link:hover,
html[data-theme="dark"] .mob-dirs-link.is-active,
html[data-theme="dark"] .mob-dirs-link.active {
  background: rgba(247, 166, 49, 0.15);
  border-color: rgba(247, 166, 49, 0.45);
}

html[data-theme="dark"] .mob-dirs-copy strong {
  color: #ffffff;
}

html[data-theme="dark"] .mob-dirs-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--orange);
}

html[data-theme="dark"] .mob-dirs-link.is-active .mob-dirs-icon,
html[data-theme="dark"] .mob-dirs-link.active .mob-dirs-icon {
  background: rgba(247, 166, 49, 0.22);
  border-color: rgba(247, 166, 49, 0.4);
  color: #ffffff;
}

html[data-theme="dark"] .mob-dirs-grabber span {
  background: rgba(255, 255, 255, 0.22);
}

html[data-theme="dark"] .yt-support-fab {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .map-svg .country {
  fill: #2a3f66;
  stroke: #0c1528;
}

html[data-theme="dark"] .map-svg .country.muted {
  fill: #1e3055;
}

html[data-theme="dark"] .map-svg .country.muted:hover,
html[data-theme="dark"] .map-svg .country.muted.is-active {
  fill: #3a5278;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.1;
  filter: drop-shadow(0 0 6px rgba(197, 217, 245, 0.25));
}

html[data-theme="dark"] .map-svg .country.visited {
  fill: #4a7ab8;
}

html[data-theme="dark"] .map-svg .country.visited:hover,
html[data-theme="dark"] .map-svg .country.visited.is-active {
  fill: var(--orange);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 8px rgba(247, 166, 49, 0.55));
}

html[data-theme="dark"] .about-value-item.is-navy .about-value-card,
html[data-theme="dark"] .about-value-item.is-orange .about-value-card,
html[data-theme="dark"] .about-value-item.is-sky .about-value-card {
  border-color: var(--line);
}

html[data-theme="dark"] .faq details[open] {
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] :is(
  .offer-aside,
  .offer-related-panel,
  .map-legend,
  .map-caption,
  .yt-sheet-panel,
  .about-service,
  .about-diff,
  .about-ensure li,
  .about-audience-item,
  .about-who-card,
  .about-reviews-aside,
  .catalog-filter-field select,
  .catalog-filters-submit,
  .quote-fields input,
  .quote-fields textarea,
  .quote-fields select,
  .quote-actions,
  .yt-support-panel,
  .yt-support-contact-card input,
  .yt-support-composer textarea,
  .mob-dirs-panel,
  .hero-search-panel,
  .hero-search-summary,
  .offer-related-row,
  .offer-gallery-thumbs button,
  .filters-bar,
  .about-intro-media
) {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .about-feature {
  background: var(--surface);
  border-color: var(--line);
}

@media (max-width: 900px) {
  html[data-theme="dark"] .about-feature {
    background: transparent;
    border-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  html[data-theme="dark"] .about-feature:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  html[data-theme="dark"] .about-feature:last-child {
    border-bottom-color: transparent;
  }
}

html[data-theme="dark"] .offer-inclexcl {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .offer-incl {
  border-right-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .offer-incl h3,
html[data-theme="dark"] .offer-excl h3 {
  color: #ffffff;
}

html[data-theme="dark"] .offer-ticks li::before {
  background: rgba(126, 179, 255, 0.16);
}

html[data-theme="dark"] .offer-ticks li::after {
  border-color: #9ec5ff;
}

html[data-theme="dark"] .offer-ticks-out li::before {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .offer-ticks-out li::after {
  border-top-color: rgba(255, 255, 255, 0.42);
}

html[data-theme="dark"] .offer-back-btn:hover,
html[data-theme="dark"] .yt-sheet-offer:hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .about-feature strong,
html[data-theme="dark"] .about-audience-item strong,
html[data-theme="dark"] .about-who-card strong,
html[data-theme="dark"] .doc-row strong {
  color: var(--heading);
}

/* Nagłówki i akcenty - biały tekst zamiast ciemnego niebieskiego */
html[data-theme="dark"] .section :is(h2, h3, h4),
html[data-theme="dark"] .about-value strong,
html[data-theme="dark"] .about-service h2,
html[data-theme="dark"] .about-diff h2,
html[data-theme="dark"] .about-feature strong,
html[data-theme="dark"] .about-step-body strong,
html[data-theme="dark"] .about-values-head h2,
html[data-theme="dark"] .about-process-item strong,
html[data-theme="dark"] .about-audience-item strong,
html[data-theme="dark"] .about-who-card strong,
html[data-theme="dark"] .offer-col h2,
html[data-theme="dark"] .offer-col h3,
html[data-theme="dark"] .catalog-results-head h2,
html[data-theme="dark"] .empty strong {
  color: #ffffff;
}

html[data-theme="dark"] .about-tagline,
html[data-theme="dark"] .about-teaser-copy h2,
html[data-theme="dark"] .about-teaser-pillar strong {
  color: #ffffff !important;
}

html[data-theme="dark"] .about-teaser-stats li {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .about-teaser-stats strong {
  color: #ffffff;
}

html[data-theme="dark"] .about-teaser-actions .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #c5d9f5;
}

html[data-theme="dark"] .about-teaser-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .map-frame {
  background: var(--map-sea);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .map-caption {
  background: var(--surface-soft);
  border-top-color: var(--line);
  color: var(--muted);
}

html[data-theme="dark"] .flag-item,
html[data-theme="dark"] .flag-item-visited {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-color: transparent;
}

html[data-theme="dark"] .flag-item-visited .flag-item-name,
html[data-theme="dark"] .flag-item-visited .flag-code {
  color: #c5d9f5;
}

html[data-theme="dark"] .flag-item:hover,
html[data-theme="dark"] .flag-item.is-active {
  background: rgba(247, 166, 49, 0.2);
  box-shadow: inset 0 0 0 1px rgba(247, 166, 49, 0.45);
}

html[data-theme="dark"] .flag-item:hover .flag-item-name,
html[data-theme="dark"] .flag-item.is-active .flag-item-name,
html[data-theme="dark"] .flag-item:hover .flag-code,
html[data-theme="dark"] .flag-item.is-active .flag-code {
  color: #ffffff;
}

html[data-theme="dark"] .offer-aside h1,
html[data-theme="dark"] .offer-facts dd,
html[data-theme="dark"] .offer-plan-body strong {
  color: #ffffff;
}

html[data-theme="dark"] .offer-plan li:not(:last-child)::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

html[data-theme="dark"] .offer-plan-n {
  box-shadow: 0 0 0 4px var(--surface);
}

html[data-theme="dark"] .flag-item-other {
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-color: transparent;
}

html[data-theme="dark"] .flag-item-other .flag-item-name,
html[data-theme="dark"] .flag-item-other .flag-code {
  color: #94a3b8;
}

html[data-theme="dark"] .flag-item-other:hover .flag-item-name,
html[data-theme="dark"] .flag-item-other.is-active .flag-item-name,
html[data-theme="dark"] .flag-item-other:hover .flag-code,
html[data-theme="dark"] .flag-item-other.is-active .flag-code {
  color: #ffffff;
}

html[data-theme="dark"] .about-intro {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

html[data-theme="dark"] .about-intro-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .about-intro-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 166, 49, 0.55);
  color: var(--orange);
}

html[data-theme="dark"] .about-value-card {
  background: var(--surface-soft);
}

html[data-theme="dark"] .about-value-item,
html[data-theme="dark"] .about-process-item {
  background: transparent;
  border-color: transparent;
}

html[data-theme="dark"] .g-reviews-summary,
html[data-theme="dark"] .g-review {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .g-reviews-brand-copy strong,
html[data-theme="dark"] .g-reviews-score,
html[data-theme="dark"] .g-review-name {
  color: #ffffff;
}

html[data-theme="dark"] .g-reviews-all {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

html[data-theme="dark"] .g-reviews-all:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(247, 166, 49, 0.4);
  color: var(--orange);
}

html[data-theme="dark"] .g-star:not(.is-on) {
  fill: rgba(255, 255, 255, 0.18);
}

@media (hover: hover) {
  html[data-theme="dark"] .g-review:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  }
}

html[data-theme="dark"] .about-value-item:not(:last-child)::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(247, 166, 49, 0.45),
    rgba(255, 255, 255, 0.08)
  );
}

html[data-theme="dark"] .about-values-head h2 {
  color: #ffffff;
}

/* Modale i support - czytelność w dark mode */
html[data-theme="dark"] .yt-sheet-close {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

html[data-theme="dark"] .yt-sheet-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--orange);
}

html[data-theme="dark"] .yt-sheet-grabber span {
  background: rgba(255, 255, 255, 0.22);
}

html[data-theme="dark"] .yt-sheet-head h2,
html[data-theme="dark"] .yt-sheet-quote .quote-head h2,
html[data-theme="dark"] .quote-pane-title {
  color: #ffffff;
}

html[data-theme="dark"] .yt-sheet-empty p {
  color: #ffffff;
}

html[data-theme="dark"] .yt-sheet-empty strong {
  color: var(--orange);
}

html[data-theme="dark"] .yt-sheet-empty .muted {
  color: var(--muted);
}

html[data-theme="dark"] .yt-sheet-offer-group {
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .yt-sheet-offer {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

html[data-theme="dark"] .yt-sheet-offer .muted {
  color: var(--muted);
}

html[data-theme="dark"] .yt-sheet-offer-chevron {
  color: rgba(255, 255, 255, 0.32);
}

html[data-theme="dark"] .yt-sheet-offer-main strong {
  color: #ffffff;
}

html[data-theme="dark"] .yt-sheet-clear {
  color: #ffffff;
}

html[data-theme="dark"] .yt-sheet-clear:hover {
  color: var(--orange);
}

html[data-theme="dark"] .yt-sheet-foot {
  background: var(--surface-soft);
  border-top-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .yt-sheet-foot .btn-outline {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .yt-sheet-foot .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .quote-fields label {
  color: #ffffff;
}

html[data-theme="dark"] .quote-phones a {
  color: #ffffff;
  font-weight: 600;
}

html[data-theme="dark"] .quote-phones a:hover {
  color: var(--orange);
}

html[data-theme="dark"] .quote-stepper li {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .quote-stepper li.is-active {
  color: #ffffff;
  background: #3d6eb0;
}

html[data-theme="dark"] .quote-stepper li.is-done {
  color: #ffd08a;
  background: rgba(247, 166, 49, 0.14);
}

html[data-theme="dark"] .quote-stepper li:not(.is-active) .quote-step-num {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .quote-stepper li.is-active .quote-step-num {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

html[data-theme="dark"] .quote-stepper li.is-done .quote-step-num {
  background: rgba(247, 166, 49, 0.28);
  color: var(--orange-hot);
}

html[data-theme="dark"] .quote-offer-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

html[data-theme="dark"] .quote-offer-card-body {
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .quote-offer-card-toggle {
  color: #c5d9f5;
}

html[data-theme="dark"] .quote-offer-card-title {
  color: #ffffff;
}

html[data-theme="dark"] .quote-offer-card-link {
  color: #c5d9f5;
}

html[data-theme="dark"] .quote-offer-card-link:hover {
  color: var(--orange);
}

html[data-theme="dark"] .quote-recap {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  border: 0;
}

html[data-theme="dark"] .quote-recap strong,
html[data-theme="dark"] .quote-summary strong {
  color: #ffffff;
}

html[data-theme="dark"] .quote-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .quote-panes {
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

html[data-theme="dark"] .quote-panes::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] .quote-fields input,
html[data-theme="dark"] .quote-fields textarea,
html[data-theme="dark"] .quote-fields select {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  border: 0;
  color: var(--text);
}

html[data-theme="dark"] .quote-fields input:focus,
html[data-theme="dark"] .quote-fields textarea:focus,
html[data-theme="dark"] .quote-fields select:focus {
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px rgba(247, 166, 49, 0.4);
}

html[data-theme="dark"] .yt-sheet-search input,
html[data-theme="dark"] .yt-sheet-filter-row select {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--text);
}

html[data-theme="dark"] .yt-sheet-search input:focus,
html[data-theme="dark"] .yt-sheet-filter-row select:focus {
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px rgba(247, 166, 49, 0.4);
}

html[data-theme="dark"] .yt-support-hello {
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-card {
  background: var(--surface-soft);
  border-color: var(--line);
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-card:hover {
  background: rgba(247, 166, 49, 0.12);
  border-color: rgba(247, 166, 49, 0.4);
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-card-ico {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

html[data-theme="dark"] .yt-support-card:hover .yt-support-card-ico {
  color: #ffffff;
  background: rgba(247, 166, 49, 0.28);
}

html[data-theme="dark"] .yt-support-card-ico-orange {
  background: rgba(247, 166, 49, 0.22);
  color: var(--orange-hot);
}

html[data-theme="dark"] .yt-support-faq-item summary {
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-faq-item[open] {
  background: var(--surface-soft);
  border-color: var(--line);
}

html[data-theme="dark"] .yt-support-faq-item summary::after {
  border-color: #ffffff;
}

html[data-theme="dark"] .yt-support-linkbtn {
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-linkbtn:hover {
  color: var(--orange);
}

html[data-theme="dark"] .yt-support-back,
html[data-theme="dark"] .yt-support-x {
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-sent strong {
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-thread {
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 166, 49, 0.06), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(61, 110, 176, 0.08), transparent 40%),
    var(--surface);
}

html[data-theme="dark"] .yt-support-day span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .yt-support-bubble-in {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-bubble-out {
  background: linear-gradient(135deg, #3d6eb0 0%, #2a5088 100%);
}

html[data-theme="dark"] .yt-support-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

html[data-theme="dark"] .yt-support-contact-card input:not([type="checkbox"]) {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-composer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: var(--surface);
}

html[data-theme="dark"] .yt-support-composer textarea {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

html[data-theme="dark"] .yt-support-composer-icon {
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .yt-support-composer-icon:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .yt-support-composer-send {
  background: #3d6eb0;
}

/* Mobile dark mode - bez jasnych ramek i tła */
@media (max-width: 900px) {
  html[data-theme="dark"] .hero-search-summary {
    background: var(--hero-search-bg);
    border: 1px solid var(--hero-search-border);
    box-shadow: var(--hero-search-shadow);
    color: var(--text);
  }

  html[data-theme="dark"] .hero-search-summary-title {
    color: #ffffff;
  }

  html[data-theme="dark"] .hero-search.is-open {
    background: var(--hero-search-bg);
    border: 1px solid var(--hero-search-border);
    box-shadow: var(--hero-search-shadow);
  }

  html[data-theme="dark"] .hero-search-row {
    background: var(--surface-soft);
  }

  html[data-theme="dark"] .hero-search.has-country .hero-field:nth-child(odd) {
    border-right-color: var(--line);
  }

  html[data-theme="dark"] .hero-field {
    border-bottom-color: var(--line);
  }

  html[data-theme="dark"] .hero-search-shrink {
    background: rgba(255, 255, 255, 0.08);
    color: #c5d9f5;
  }

  html[data-theme="dark"] .hero-search-shrink:active {
    background: rgba(255, 255, 255, 0.14);
  }

  html[data-theme="dark"] .hero-search-panel-label {
    color: var(--muted);
  }

  html[data-theme="dark"] .offer-sticky-cta {
    background: rgba(14, 22, 40, 0.96);
    border-top-color: var(--line);
  }

  html[data-theme="dark"] .offer-sticky-cta strong {
    color: #ffffff;
  }

  html[data-theme="dark"] .mob-nav-item:hover {
    color: #c5d9f5;
  }

  html[data-theme="dark"] .mob-nav-item.is-active,
  html[data-theme="dark"] .mob-nav-item.active,
  html[data-theme="dark"] .mob-nav-item.is-open {
    color: var(--orange-hot);
  }

  html[data-theme="dark"] .mobile-bottom-nav {
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
  }

  html[data-theme="dark"] .card-custom {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
    border-color: var(--line);
  }
}

/* --- Kreator wycieczki --- */
.yt-creator-section {
  padding-top: 1.25rem;
}

.yt-creator {
  max-width: 760px;
  margin-inline: auto;
}

.yt-creator-hero {
  margin-bottom: 1.25rem;
}

.yt-creator-hero h1 {
  margin: 0.15rem 0 0.45rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.yt-creator-hero .muted {
  margin: 0;
  max-width: 38rem;
  line-height: 1.45;
}

.yt-creator-progress {
  margin: 0 0 0.65rem;
}

.yt-creator-progress-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 38, 79, 0.1);
  overflow: hidden;
}

.yt-creator-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange-hot));
  transition: width 0.28s ease;
}

.yt-creator-stepper {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.3rem;
}

.yt-creator-stepper li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(18, 38, 79, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.yt-creator-stepper li.is-active {
  background: var(--blue);
  color: #fff;
}

.yt-creator-stepper li.is-done {
  background: rgba(247, 166, 49, 0.14);
  color: var(--blue);
}

.yt-creator-step-num {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
}

.yt-creator-stepper li:not(.is-active) .yt-creator-step-num {
  background: rgba(18, 38, 79, 0.08);
}

.yt-creator-step-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yt-creator-panel {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.yt-creator-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.yt-creator-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.yt-creator-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.yt-creator-type {
  display: grid;
  gap: 0.25rem;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 38, 79, 0.1);
  background: rgba(18, 38, 79, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.yt-creator-type strong {
  color: var(--heading);
  font-size: 1rem;
}

.yt-creator-type span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.yt-creator-type:hover {
  border-color: rgba(18, 38, 79, 0.22);
}

.yt-creator-type.is-selected {
  border-color: rgba(247, 166, 49, 0.65);
  background: rgba(247, 166, 49, 0.1);
  box-shadow: inset 0 0 0 1px rgba(247, 166, 49, 0.25);
}

.yt-creator-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.yt-creator-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 38, 79, 0.12);
  background: rgba(18, 38, 79, 0.04);
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}

.yt-creator-chip.is-selected {
  background: var(--blue);
  border-color: transparent;
  color: #fff;
}

.yt-creator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.yt-creator-fields-stack {
  grid-template-columns: 1fr;
}

.yt-creator-fields label,
.yt-creator-notes {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
}

.yt-creator-fields input,
.yt-creator-fields select,
.yt-creator-notes textarea,
.yt-creator-search input,
.yt-creator-search-row select {
  font: inherit;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: rgba(18, 38, 79, 0.05);
  box-shadow: inset 0 0 0 1px rgba(18, 38, 79, 0.06);
  color: var(--text);
  width: 100%;
  min-width: 0;
}

.yt-creator-fields input:focus,
.yt-creator-fields select:focus,
.yt-creator-notes textarea:focus,
.yt-creator-search input:focus,
.yt-creator-search-row select:focus {
  outline: none;
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px rgba(247, 166, 49, 0.45);
}

.yt-creator-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.yt-creator-offer-grid {
  display: grid;
  gap: 0.5rem;
  max-height: min(42vh, 360px);
  overflow: auto;
  margin-bottom: 0.85rem;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.yt-creator-offer {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  text-align: left;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(18, 38, 79, 0.02);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.yt-creator-offer img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--sky);
}

.yt-creator-offer strong {
  display: block;
  color: var(--heading);
  font-size: 0.92rem;
  line-height: 1.25;
}

.yt-creator-offer em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

.yt-creator-offer.is-selected {
  border-color: rgba(247, 166, 49, 0.7);
  background: rgba(247, 166, 49, 0.1);
}

.yt-creator-empty {
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.yt-creator-base {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(18, 38, 79, 0.04);
  border: 1px solid rgba(18, 38, 79, 0.08);
}

.yt-creator-base-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.yt-creator-base strong {
  color: var(--heading);
}

.yt-creator-base a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  width: fit-content;
}

.yt-creator-sublabel {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.yt-creator-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.yt-creator-extra {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(18, 38, 79, 0.1);
  background: rgba(18, 38, 79, 0.03);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}

.yt-creator-extra input {
  accent-color: var(--orange-hot);
}

.yt-creator-extra.is-on {
  border-color: rgba(247, 166, 49, 0.55);
  background: rgba(247, 166, 49, 0.1);
}

.yt-creator-notes {
  margin-top: 0.25rem;
}

.yt-creator-summary {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(18, 38, 79, 0.04);
  border: 1px solid rgba(18, 38, 79, 0.08);
}

.yt-creator-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.yt-creator-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.yt-creator-summary span {
  color: var(--muted);
  flex-shrink: 0;
}

.yt-creator-summary strong {
  color: var(--heading);
  text-align: right;
  font-weight: 650;
  white-space: pre-wrap;
}

.yt-creator-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.yt-creator-summary-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 10rem;
}

.yt-creator-nav {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.yt-creator-nav .btn {
  flex: 1;
  justify-content: center;
}

.yt-creator-nav .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.yt-creator-foot {
  margin: 0.75rem 0 0;
  text-align: center;
}

@media (max-width: 640px) {
  .yt-creator-step-text {
    display: none;
  }

  .yt-creator-stepper li {
    justify-content: center;
    padding: 0.4rem;
  }

  .yt-creator-type-grid,
  .yt-creator-fields,
  .yt-creator-extras {
    grid-template-columns: 1fr;
  }

  .yt-creator-search-row {
    grid-template-columns: 1fr;
  }

  .yt-creator-panel {
    padding: 1rem 0.95rem 1.1rem;
  }
}

html[data-theme="dark"] .yt-creator-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .yt-creator-stepper li {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .yt-creator-stepper li.is-active {
  background: #3d6eb0;
  color: #fff;
}

html[data-theme="dark"] .yt-creator-stepper li.is-done {
  background: rgba(247, 166, 49, 0.14);
  color: #ffd08a;
}

html[data-theme="dark"] .yt-creator-stepper li:not(.is-active) .yt-creator-step-num {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .yt-creator-panel,
html[data-theme="dark"] .yt-creator-base,
html[data-theme="dark"] .yt-creator-summary {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .yt-creator-type,
html[data-theme="dark"] .yt-creator-chip,
html[data-theme="dark"] .yt-creator-offer,
html[data-theme="dark"] .yt-creator-extra {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #c5d9f5;
}

html[data-theme="dark"] .yt-creator-type strong,
html[data-theme="dark"] .yt-creator-offer strong,
html[data-theme="dark"] .yt-creator-base strong,
html[data-theme="dark"] .yt-creator-summary strong,
html[data-theme="dark"] .yt-creator-title {
  color: #ffffff;
}

html[data-theme="dark"] .yt-creator-type.is-selected,
html[data-theme="dark"] .yt-creator-offer.is-selected,
html[data-theme="dark"] .yt-creator-extra.is-on {
  background: rgba(247, 166, 49, 0.12);
  border-color: rgba(247, 166, 49, 0.5);
}

html[data-theme="dark"] .yt-creator-chip.is-selected {
  background: #3d6eb0;
  color: #fff;
  border-color: transparent;
}

html[data-theme="dark"] .yt-creator-fields input,
html[data-theme="dark"] .yt-creator-fields select,
html[data-theme="dark"] .yt-creator-notes textarea,
html[data-theme="dark"] .yt-creator-search input,
html[data-theme="dark"] .yt-creator-search-row select {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  color: var(--text);
}

html[data-theme="dark"] .yt-creator-base a {
  color: #c5d9f5;
}

/* --- Wycena choice + creator modal --- */
.yt-sheet-choice {
  z-index: 250;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.yt-sheet-choice .yt-choice-panel {
  width: min(560px, 100%);
  max-height: min(92dvh, var(--app-height, 100dvh));
  border-radius: 20px;
  overflow: hidden;
  align-self: center;
}

.yt-sheet-choice .yt-choice-body {
  padding: 1.35rem 1.35rem 1.5rem;
  overflow: auto;
}

.yt-choice-head {
  margin-bottom: 1.15rem;
}

.yt-choice-head h2 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.yt-choice-head .muted {
  margin: 0;
  line-height: 1.45;
  max-width: 34rem;
}

.yt-choice-grid {
  display: grid;
  gap: 0.75rem;
}

.yt-choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.55rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  box-shadow: 0 1px 0 rgba(18, 38, 79, 0.04);
}

.yt-choice-card:hover {
  border-color: rgba(18, 38, 79, 0.22);
  box-shadow: 0 10px 28px rgba(18, 38, 79, 0.08);
  transform: translateY(-1px);
}

.yt-choice-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.yt-choice-card-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #12264f 0%, #1a3570 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 38, 79, 0.22);
}

.yt-choice-card-primary:hover {
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(18, 38, 79, 0.28);
}

.yt-choice-ico {
  grid-row: 1 / span 2;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  flex-shrink: 0;
}

.yt-choice-ico-soft {
  background: rgba(18, 38, 79, 0.07);
  color: var(--blue);
}

.yt-choice-ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.yt-choice-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.yt-choice-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.yt-choice-copy em {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.4;
  opacity: 0.78;
}

.yt-choice-card-primary .yt-choice-copy em {
  opacity: 0.82;
  color: rgba(255, 255, 255, 0.88);
}

.yt-choice-cta {
  grid-column: 2;
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--orange-hot, #f08a24);
}

.yt-choice-card-primary .yt-choice-cta {
  color: #ffc48a;
}

.yt-choice-cta-muted {
  color: var(--blue);
}

.yt-choice-foot {
  margin: 1rem 0 0;
  text-align: center;
}

.yt-choice-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--blue);
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.yt-choice-link:hover {
  color: var(--orange-hot, #f08a24);
}

.yt-sheet-creator {
  z-index: 255;
  align-items: stretch;
  justify-content: center;
}

.yt-sheet-creator .yt-creator-panel-modal {
  width: min(820px, 100%);
  max-height: var(--app-height, 100dvh);
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 760px) {
  .yt-sheet-creator {
    align-items: center;
    padding: 1rem;
  }

  .yt-sheet-creator .yt-creator-panel-modal {
    max-height: min(92dvh, var(--app-height, 100dvh));
    border-radius: 20px;
  }
}

.yt-creator-modal-body {
  padding: 1.15rem 1.2rem 1.4rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.yt-creator-in-modal {
  max-width: none;
  margin: 0;
}

.yt-creator-hero-compact {
  margin-bottom: 0.95rem;
}

.yt-creator-hero-compact h2 {
  margin: 0.15rem 0 0.4rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.yt-creator-hero-compact .muted {
  margin: 0;
  max-width: 36rem;
  line-height: 1.45;
}

.about-office-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .yt-choice-card {
    grid-template-columns: auto 1fr;
  }

  .yt-creator-stepper .yt-creator-step-text {
    display: none;
  }

  .yt-creator-stepper li {
    justify-content: center;
  }

  .about-teaser-actions .btn,
  .about-intro-actions .btn,
  .about-office-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

html[data-theme="dark"] .yt-choice-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .yt-choice-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .yt-choice-card-primary {
  background: linear-gradient(180deg, #1d3b78 0%, #152c5a 100%);
}

html[data-theme="dark"] .yt-choice-ico-soft {
  background: rgba(255, 255, 255, 0.08);
  color: #c5d9f5;
}

html[data-theme="dark"] .yt-choice-cta-muted {
  color: #c5d9f5;
}

html[data-theme="dark"] .yt-choice-link {
  color: #c5d9f5;
}
