@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-variable-italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bes-blue: #2376a6;
  --bes-blue-dark: #175b82;
  --bes-blue-soft: #dcecf5;
  --bes-ink: #131b24;
  --bes-ink-soft: #4d5965;
  --bes-cream: #e8e0c8;
  --bes-cream-light: #f4f0e4;
  --bes-canvas: #f9f8f4;
  --bes-white: #fff;
  --bes-line: rgba(19, 27, 36, 0.14);
  --bes-shadow: 0 24px 70px rgba(19, 27, 36, 0.11);
  --bes-shadow-soft: 0 14px 40px rgba(19, 27, 36, 0.07);
  --bes-radius-sm: 12px;
  --bes-radius: 24px;
  --bes-radius-lg: 38px;
  --bes-shell: 1180px;
  --bes-header-height: 96px;
  --bes-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bes-canvas);
  color: var(--bes-ink);
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cookie-modal-open,
body.booking-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--bes-blue);
  color: var(--bes-white);
}

:focus-visible {
  outline: 3px solid rgba(35, 118, 166, 0.42);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--bes-white);
  color: var(--bes-ink);
  font-weight: 700;
}

.besjeda-shell {
  width: min(var(--bes-shell), calc(100% - 48px));
  margin-inline: auto;
}

.besjeda-shell--narrow {
  width: min(900px, calc(100% - 48px));
}

.besjeda-shell--article {
  width: min(760px, calc(100% - 48px));
}

.site-main {
  min-height: 60vh;
}

.besjeda-page__content > :first-child,
.besjeda-blog-intro > :first-child {
  margin-top: 0;
}

.besjeda-section {
  position: relative;
  padding: clamp(84px, 9vw, 132px) 0;
}

.besjeda-section--cream {
  background: var(--bes-cream-light);
}

.besjeda-section--ink {
  overflow: hidden;
  background: var(--bes-ink);
  color: var(--bes-white);
}

.besjeda-section--ink::before {
  position: absolute;
  inset: -30% -12% auto auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.02);
  content: "";
  pointer-events: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

h1 em,
h2 em {
  color: var(--bes-blue);
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

.besjeda-lead {
  color: var(--bes-ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.58;
}

.besjeda-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--bes-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.besjeda-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.besjeda-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.besjeda-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--bes-blue);
  border-radius: 999px;
  background: var(--bes-blue);
  box-shadow: 0 10px 24px rgba(35, 118, 166, 0.2);
  color: var(--bes-white);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s var(--bes-ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.besjeda-button:hover {
  border-color: var(--bes-blue-dark);
  background: var(--bes-blue-dark);
  box-shadow: 0 14px 28px rgba(35, 118, 166, 0.25);
  transform: translateY(-2px);
}

.besjeda-button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.8rem;
}

.besjeda-button--wide {
  width: 100%;
}

.besjeda-button--ghost {
  border-color: var(--bes-line);
  background: transparent;
  box-shadow: none;
  color: var(--bes-ink);
}

.besjeda-button--ghost:hover {
  border-color: var(--bes-ink);
  background: var(--bes-ink);
  color: var(--bes-white);
}

.besjeda-button--dark {
  border-color: var(--bes-ink);
  background: var(--bes-ink);
  box-shadow: 0 10px 24px rgba(19, 27, 36, 0.18);
}

.besjeda-button--dark:hover {
  border-color: #263545;
  background: #263545;
}

.besjeda-button--cream {
  border-color: var(--bes-cream);
  background: var(--bes-cream);
  box-shadow: none;
  color: var(--bes-ink);
}

.besjeda-button--cream:hover {
  border-color: var(--bes-white);
  background: var(--bes-white);
  color: var(--bes-ink);
}

.besjeda-button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  box-shadow: none;
  color: var(--bes-white);
}

.besjeda-button--outline-light:hover {
  border-color: var(--bes-white);
  background: var(--bes-white);
  color: var(--bes-ink);
}

.besjeda-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bes-blue);
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.besjeda-text-link span {
  transition: transform 0.25s var(--bes-ease);
}

.besjeda-text-link:hover span {
  transform: translateX(4px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--bes-ease), transform 0.7s var(--bes-ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.besjeda-heading-row {
  display: grid;
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-bottom: clamp(46px, 6vw, 78px);
}

.besjeda-heading-row h2,
.besjeda-heading-row p {
  margin-bottom: 0;
}

.besjeda-heading-row p,
.besjeda-section-heading > p {
  color: var(--bes-ink-soft);
  font-size: 1.04rem;
}

.besjeda-heading-row > .besjeda-text-link {
  justify-self: end;
}

.besjeda-section-heading {
  max-width: 780px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.besjeda-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.besjeda-section-heading--center .besjeda-kicker {
  justify-content: center;
}

/* Offer bar + header */
.besjeda-offer-bar {
  position: relative;
  z-index: 1001;
  background: var(--bes-ink);
  color: var(--bes-white);
  font-size: 0.76rem;
}

.besjeda-offer-bar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.besjeda-offer-bar__badge {
  display: inline-flex;
  min-width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bes-cream);
  color: var(--bes-ink);
  font-size: 0.7rem;
  font-weight: 750;
}

.besjeda-offer-bar__marquee {
  min-width: 0;
  overflow: hidden;
  color: var(--bes-cream);
  font-weight: 650;
  text-decoration: none;
}

.besjeda-offer-bar__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.besjeda-offer-bar__track > span {
  display: inline-block;
  padding-right: 42px;
}

.besjeda-offer-bar__track > span:nth-child(2) {
  display: none;
}

.besjeda-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(249, 248, 244, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.besjeda-header.is-scrolled {
  border-color: var(--bes-line);
  box-shadow: 0 10px 40px rgba(19, 27, 36, 0.06);
}

.besjeda-header__inner {
  display: flex;
  min-height: var(--bes-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.besjeda-brand,
.besjeda-brand .custom-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.besjeda-brand img,
.besjeda-brand .custom-logo {
  width: 230px;
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
}

.besjeda-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.besjeda-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.besjeda-nav__list a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  color: var(--bes-ink);
  font-size: 0.86rem;
  font-weight: 580;
  text-decoration: none;
}

.besjeda-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--bes-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--bes-ease);
}

.besjeda-nav__list a:hover::after,
.besjeda-nav__list .current-menu-item > a::after,
.besjeda-nav__list .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.besjeda-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--bes-line);
  border-radius: 50%;
  background: transparent;
}

.besjeda-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--bes-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.besjeda-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.besjeda-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.besjeda-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Home hero */
.besjeda-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 29%),
    linear-gradient(145deg, var(--bes-cream-light) 0%, #f8f6ee 56%, #edf4f7 100%);
}

.besjeda-hero::before {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(35, 118, 166, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(35, 118, 166, 0.025), 0 0 0 140px rgba(35, 118, 166, 0.018);
  content: "";
}

.besjeda-hero__grid {
  display: grid;
  min-height: 590px;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
}

.besjeda-hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.besjeda-hero__copy h1 {
  max-width: 760px;
}

.besjeda-hero__copy .besjeda-lead {
  max-width: 660px;
  margin-bottom: 34px;
}

.besjeda-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 38px;
  color: var(--bes-ink-soft);
  font-size: 0.78rem;
  font-weight: 550;
}

.besjeda-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.besjeda-hero__trust i {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bes-blue);
  color: var(--bes-white);
  font-size: 0.62rem;
  font-style: normal;
}

.besjeda-language-stage {
  position: relative;
  min-height: 520px;
}

.besjeda-language-stage__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.28), 0 0 0 110px rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
}

.besjeda-language-stage__photo {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 320px;
  height: 430px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 160px 160px 34px 34px;
  background: var(--bes-cream-light);
  box-shadow: var(--bes-shadow);
  transform: translate(-50%, -50%);
}

.besjeda-language-stage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.besjeda-language-card {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 250px;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(19, 27, 36, 0.11);
  backdrop-filter: blur(16px);
  animation: besjeda-float 6s ease-in-out infinite;
}

.besjeda-language-card--hr {
  top: 26px;
  left: 0;
}

.besjeda-language-card--ru {
  top: 215px;
  right: -16px;
  animation-delay: -2s;
}

.besjeda-language-card--sv {
  bottom: 30px;
  left: 18px;
  animation-delay: -4s;
}

@keyframes besjeda-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.besjeda-language-card__symbol {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bes-blue);
  color: var(--bes-white);
  font-size: 1.65rem;
  font-weight: 600;
}

.besjeda-language-card--ru .besjeda-language-card__symbol {
  background: var(--bes-ink);
}

.besjeda-language-card--sv .besjeda-language-card__symbol {
  background: var(--bes-cream);
  color: var(--bes-ink);
}

.besjeda-language-card strong,
.besjeda-language-card small {
  display: block;
}

.besjeda-language-card strong {
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.besjeda-language-card small {
  color: var(--bes-ink-soft);
  font-size: 0.67rem;
  line-height: 1.4;
}

.besjeda-language-stage__word {
  position: absolute;
  z-index: 1;
  color: rgba(35, 118, 166, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.besjeda-language-stage__word--one { top: 24px; right: 45px; transform: rotate(8deg); }
.besjeda-language-stage__word--two { bottom: 82px; right: 5px; transform: rotate(-9deg); }
.besjeda-language-stage__word--three {
  z-index: 4;
  right: 28px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(35, 118, 166, 0.18);
  border-radius: 999px;
  background: rgba(249, 248, 244, 0.9);
  color: rgba(35, 118, 166, 0.78);
  box-shadow: 0 8px 22px rgba(19, 27, 36, 0.08);
  transform: rotate(6deg);
}

/* Language cards */
.besjeda-language-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.besjeda-feature-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  transition: transform 0.35s var(--bes-ease), box-shadow 0.35s ease;
}

.besjeda-feature-card:hover {
  box-shadow: var(--bes-shadow);
  transform: translateY(-8px);
}

.besjeda-feature-card--blue {
  background: var(--bes-blue);
  color: var(--bes-white);
}

.besjeda-feature-card--cream {
  background: var(--bes-cream);
}

.besjeda-feature-card--dark {
  background: var(--bes-ink);
  color: var(--bes-white);
}

.besjeda-feature-card__index {
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.besjeda-feature-card__glyph {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: clamp(6.5rem, 12vw, 10rem);
  font-weight: 520;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.9;
}

.besjeda-feature-card h3 {
  margin-bottom: 12px;
}

.besjeda-feature-card p {
  min-height: 76px;
  margin-bottom: 20px;
  color: currentColor;
  font-size: 0.88rem;
  opacity: 0.76;
}

.besjeda-feature-card--blue .besjeda-text-link,
.besjeda-feature-card--dark .besjeda-text-link {
  color: var(--bes-white);
}

/* Method */
.besjeda-method__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.besjeda-method__intro {
  align-self: start;
  position: sticky;
  top: 160px;
}

.besjeda-method__intro .besjeda-kicker,
.besjeda-principles .besjeda-kicker {
  color: #7fc1e5;
}

.besjeda-method__intro p {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
}

.besjeda-method__list article {
  display: grid;
  gap: 26px;
  grid-template-columns: 48px 1fr;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.besjeda-method__list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.besjeda-method__list > article > span {
  color: #7fc1e5;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.besjeda-method__list h3 {
  margin-bottom: 10px;
}

.besjeda-method__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

/* Formats */
.besjeda-format-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--bes-line);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-line);
}

.besjeda-format-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  background: var(--bes-white);
  transition: background 0.25s ease, color 0.25s ease;
}

.besjeda-format-grid article:hover {
  background: var(--bes-blue);
  color: var(--bes-white);
}

.besjeda-format-grid__number {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  border: 1px solid var(--bes-line);
  border-radius: 50%;
  color: var(--bes-blue);
  font-size: 1.18rem;
  font-weight: 650;
}

.besjeda-format-grid article:hover .besjeda-format-grid__number {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--bes-white);
}

.besjeda-format-grid h3 {
  margin-bottom: 12px;
}

.besjeda-format-grid p {
  flex: 1;
  color: var(--bes-ink-soft);
  font-size: 0.84rem;
}

.besjeda-format-grid article:hover p {
  color: rgba(255, 255, 255, 0.75);
}

.besjeda-format-grid a {
  color: var(--bes-blue);
  font-size: 0.78rem;
  font-weight: 680;
  text-decoration: none;
}

.besjeda-format-grid article:hover a {
  color: var(--bes-white);
}

/* Journey */
.besjeda-steps {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: none;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.besjeda-steps li {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(19, 27, 36, 0.12);
  border-radius: var(--bes-radius);
  background: rgba(255, 255, 255, 0.45);
}

.besjeda-steps > li > span {
  display: block;
  margin-bottom: 62px;
  color: var(--bes-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.besjeda-steps h3 {
  margin-bottom: 10px;
}

.besjeda-steps p {
  margin-bottom: 0;
  color: var(--bes-ink-soft);
  font-size: 0.88rem;
}

/* Subheroes */
.besjeda-subhero {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 144px) 0 clamp(78px, 8vw, 120px);
  background: linear-gradient(145deg, var(--bes-cream-light), #f8f6ef 58%, #eef5f8);
}

.besjeda-subhero::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(35, 118, 166, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(35, 118, 166, 0.025), 0 0 0 164px rgba(35, 118, 166, 0.017);
  content: "";
}

.besjeda-subhero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.besjeda-subhero h1 {
  max-width: 840px;
  margin-bottom: 0;
}

.besjeda-subhero__aside {
  padding-bottom: 12px;
}

.besjeda-subhero__aside .besjeda-lead {
  margin-bottom: 22px;
}

.besjeda-subhero__aside > p:not(.besjeda-lead) {
  color: var(--bes-ink-soft);
}

.besjeda-word-ribbon {
  display: flex;
  margin-top: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--bes-blue);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 550;
}

.besjeda-word-ribbon span::after {
  margin-left: clamp(20px, 5vw, 80px);
  color: rgba(35, 118, 166, 0.28);
  content: "·";
}

.besjeda-word-ribbon span:last-child::after {
  display: none;
}

/* About */
.besjeda-story__grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  grid-template-columns: minmax(500px, 1.15fr) minmax(0, 0.85fr);
}

.besjeda-story__visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--bes-radius-lg);
  background: var(--bes-blue-soft);
  box-shadow: var(--bes-shadow-soft);
}

.besjeda-story__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.besjeda-story__note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  width: 240px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--bes-ink);
  box-shadow: var(--bes-shadow-soft);
  color: var(--bes-white);
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.5;
}

.besjeda-story__letters {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 27, 36, 0.78);
  color: var(--bes-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.besjeda-story__copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.65rem);
}

.besjeda-story__copy > p {
  color: var(--bes-ink-soft);
}

.besjeda-story blockquote {
  position: relative;
  padding: 4px 0 4px 28px;
  margin: 34px 0 0;
  border-left: 3px solid var(--bes-blue);
  color: var(--bes-ink);
  font-size: 1.08rem;
  font-weight: 550;
  line-height: 1.55;
}

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

.besjeda-value-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(19, 27, 36, 0.1);
  border-radius: var(--bes-radius);
  background: rgba(255, 255, 255, 0.54);
  transition: background 0.25s ease, transform 0.3s var(--bes-ease);
}

.besjeda-value-grid article:hover {
  background: var(--bes-white);
  transform: translateY(-5px);
}

.besjeda-value-grid > article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--bes-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.besjeda-value-grid h3 {
  margin-bottom: 11px;
}

.besjeda-value-grid p {
  margin-bottom: 0;
  color: var(--bes-ink-soft);
  font-size: 0.86rem;
}

.besjeda-comparison__grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.besjeda-comparison__panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--bes-radius-lg);
}

.besjeda-comparison__panel--muted {
  border: 1px solid var(--bes-line);
  background: var(--bes-white);
}

.besjeda-comparison__panel--active {
  background: var(--bes-blue);
  box-shadow: var(--bes-shadow);
  color: var(--bes-white);
}

.besjeda-comparison__label {
  display: block;
  margin-bottom: 36px;
  color: var(--bes-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.besjeda-comparison__panel--active .besjeda-comparison__label {
  color: rgba(255, 255, 255, 0.68);
}

.besjeda-comparison ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.besjeda-comparison li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid currentColor;
  font-size: 0.92rem;
}

.besjeda-comparison__panel--muted li {
  border-color: var(--bes-line);
  color: var(--bes-ink-soft);
}

.besjeda-comparison__panel--active li {
  border-color: rgba(255, 255, 255, 0.18);
}

.besjeda-comparison li::before {
  position: absolute;
  top: 18px;
  left: 3px;
  color: var(--bes-blue);
  content: "×";
  font-weight: 700;
}

.besjeda-comparison__panel--active li::before {
  color: var(--bes-white);
  content: "✓";
}

.besjeda-principles__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.besjeda-principles__grid > div > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.65);
}

.besjeda-principles ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.besjeda-principles li {
  display: grid;
  gap: 24px;
  grid-template-columns: 50px 1fr;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.besjeda-principles li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.besjeda-principles li > span {
  color: #7fc1e5;
  font-size: 0.72rem;
  font-weight: 700;
}

.besjeda-principles h3 {
  margin-bottom: 8px;
}

.besjeda-principles li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

/* Courses */
.besjeda-student-offer {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  padding: clamp(28px, 4vw, 50px);
  margin: 0 0 clamp(34px, 5vw, 62px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-cream);
  box-shadow: var(--bes-shadow-soft);
  scroll-margin-top: 160px;
}

.besjeda-student-offer__value {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.13em;
  color: var(--bes-blue);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 630;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.besjeda-student-offer__value small {
  font-size: 0.35em;
  letter-spacing: 0;
}

.besjeda-student-offer .besjeda-kicker {
  margin-bottom: 12px;
}

.besjeda-student-offer h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.besjeda-student-offer p {
  max-width: 700px;
  margin: 0;
  color: var(--bes-ink-soft);
  font-size: 0.88rem;
}

.besjeda-courses-photo {
  position: relative;
  height: 430px;
  overflow: hidden;
  margin: 0 0 clamp(78px, 9vw, 130px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-blue-soft);
  box-shadow: var(--bes-shadow-soft);
}

.besjeda-courses-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 27, 36, 0.16), transparent 60%);
  content: "";
  pointer-events: none;
}

.besjeda-courses-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.besjeda-courses-photo figcaption {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 36px;
  width: min(410px, calc(100% - 72px));
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(249, 248, 244, 0.94);
  box-shadow: var(--bes-shadow-soft);
  backdrop-filter: blur(14px);
}

.besjeda-courses-photo figcaption .besjeda-kicker {
  margin-bottom: 10px;
}

.besjeda-courses-photo figcaption strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.besjeda-price-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.besjeda-price-card {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--bes-line);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  box-shadow: var(--bes-shadow-soft);
  scroll-margin-top: 160px;
}

.besjeda-price-card--featured {
  border-color: var(--bes-blue);
  background: var(--bes-blue);
  color: var(--bes-white);
}

.besjeda-price-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bes-cream);
  color: var(--bes-ink);
  font-size: 0.66rem;
  font-weight: 700;
}

.besjeda-price-card__type {
  display: block;
  margin-bottom: 24px;
  color: var(--bes-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.besjeda-price-card--featured .besjeda-price-card__type {
  color: rgba(255, 255, 255, 0.68);
}

.besjeda-price-card__top h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.besjeda-price-card__top p {
  min-height: 62px;
  color: var(--bes-ink-soft);
  font-size: 0.88rem;
}

.besjeda-price-card--featured .besjeda-price-card__top p {
  color: rgba(255, 255, 255, 0.72);
}

.besjeda-price-card__price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  margin: 22px 0;
  border-top: 1px solid var(--bes-line);
  border-bottom: 1px solid var(--bes-line);
}

.besjeda-price-card--featured .besjeda-price-card__price {
  border-color: rgba(255, 255, 255, 0.2);
}

.besjeda-price-card__price strong {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 620;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.besjeda-price-card__price span {
  color: var(--bes-ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: right;
}

.besjeda-price-card--featured .besjeda-price-card__price span {
  color: rgba(255, 255, 255, 0.68);
}

.besjeda-price-card ul {
  flex: 1;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.besjeda-price-card li {
  position: relative;
  padding: 9px 0 9px 27px;
  font-size: 0.86rem;
}

.besjeda-price-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: var(--bes-blue);
  content: "✓";
  font-weight: 750;
}

.besjeda-price-card--featured li::before {
  color: var(--bes-white);
}

.besjeda-price-card--featured .besjeda-button {
  border-color: var(--bes-white);
  background: var(--bes-white);
  color: var(--bes-blue);
}

.besjeda-business-course {
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  grid-template-columns: 1.4fr 0.6fr;
  padding: clamp(36px, 6vw, 70px);
  margin-top: 20px;
  border-radius: var(--bes-radius-lg);
  background: var(--bes-ink);
  color: var(--bes-white);
}

.besjeda-business-course .besjeda-kicker {
  color: #7fc1e5;
}

.besjeda-business-course h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

.besjeda-business-course p,
.besjeda-business-course li {
  color: rgba(255, 255, 255, 0.68);
}

.besjeda-business-course ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.besjeda-business-course li {
  font-size: 0.8rem;
}

.besjeda-business-course li::before {
  margin-right: 7px;
  color: #7fc1e5;
  content: "✓";
}

.besjeda-business-course__action {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bes-radius);
  text-align: center;
}

.besjeda-business-course__action > span,
.besjeda-business-course__action > strong {
  display: block;
}

.besjeda-business-course__action > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.besjeda-business-course__action > strong {
  margin: 8px 0 25px;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

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

.besjeda-book-language__grid > a {
  display: grid;
  min-height: 132px;
  align-items: center;
  gap: 16px;
  grid-template-columns: 64px 1fr auto;
  padding: 22px;
  border: 1px solid rgba(19, 27, 36, 0.12);
  border-radius: var(--bes-radius);
  background: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.3s var(--bes-ease);
}

.besjeda-book-language__grid > a:hover {
  background: var(--bes-white);
  transform: translateY(-5px);
}

.besjeda-book-language__grid > a > span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--bes-blue);
  color: var(--bes-white);
  font-size: 1.8rem;
  font-weight: 600;
}

.besjeda-book-language__grid strong,
.besjeda-book-language__grid small {
  display: block;
}

.besjeda-book-language__grid small {
  color: var(--bes-ink-soft);
  font-size: 0.72rem;
}

.besjeda-book-language__grid i {
  color: var(--bes-blue);
  font-style: normal;
}

.besjeda-faq__grid {
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.besjeda-faq__grid > div:first-child {
  align-self: start;
  position: sticky;
  top: 160px;
}

.besjeda-faq__grid > div:first-child p {
  color: var(--bes-ink-soft);
}

.besjeda-accordion details {
  border-top: 1px solid var(--bes-line);
}

.besjeda-accordion details:last-child {
  border-bottom: 1px solid var(--bes-line);
}

.besjeda-accordion summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 600;
  list-style: none;
}

.besjeda-accordion summary::-webkit-details-marker {
  display: none;
}

.besjeda-accordion summary span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bes-line);
  border-radius: 50%;
  color: var(--bes-blue);
  transition: transform 0.25s ease;
}

.besjeda-accordion details[open] summary span {
  transform: rotate(45deg);
}

.besjeda-accordion details p {
  max-width: 680px;
  padding: 0 54px 26px 0;
  margin: 0;
  color: var(--bes-ink-soft);
  font-size: 0.9rem;
}

/* Blog */
.besjeda-inline-search {
  display: flex;
  max-width: 420px;
  border-bottom: 1px solid var(--bes-ink);
}

.besjeda-inline-search label {
  flex: 1;
}

.besjeda-inline-search input {
  width: 100%;
  min-height: 50px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  outline: 0;
}

.besjeda-inline-search button {
  width: 48px;
  border: 0;
  background: transparent;
  color: var(--bes-blue);
  font-size: 1.2rem;
}

.besjeda-blog-listing,
.besjeda-archive {
  padding: clamp(74px, 9vw, 130px) 0;
}

.besjeda-archive__header {
  max-width: 840px;
  margin-bottom: 60px;
}

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

.besjeda-post-card {
  overflow: hidden;
  border: 1px solid var(--bes-line);
  border-radius: var(--bes-radius);
  background: var(--bes-white);
  transition: box-shadow 0.3s ease, transform 0.3s var(--bes-ease);
}

.besjeda-post-card:hover {
  box-shadow: var(--bes-shadow-soft);
  transform: translateY(-6px);
}

.besjeda-post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bes-cream-light);
  text-decoration: none;
}

.besjeda-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--bes-ease);
}

.besjeda-post-card:hover .besjeda-post-card__image img {
  transform: scale(1.04);
}

.besjeda-post-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(145deg, var(--bes-cream), var(--bes-blue-soft));
  color: var(--bes-blue);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 580;
}

.besjeda-post-card__placeholder span:nth-child(2) {
  color: var(--bes-ink);
  transform: translateY(-14px);
}

.besjeda-post-card__body {
  padding: 25px;
}

.besjeda-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--bes-blue);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.besjeda-post-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.besjeda-post-card h2 a {
  text-decoration: none;
}

.besjeda-post-card p {
  min-height: 76px;
  margin-bottom: 20px;
  color: var(--bes-ink-soft);
  font-size: 0.84rem;
}

.besjeda-empty {
  padding: 58px;
  border: 1px dashed rgba(35, 118, 166, 0.3);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-cream-light);
  text-align: center;
}

.besjeda-empty__mark {
  display: block;
  margin-bottom: 20px;
  color: var(--bes-blue);
  font-weight: 650;
  letter-spacing: 0.12em;
}

.besjeda-empty h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.besjeda-empty p {
  color: var(--bes-ink-soft);
}

.navigation.pagination {
  margin-top: 55px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav-links .page-numbers {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--bes-line);
  border-radius: 999px;
  background: var(--bes-white);
  color: var(--bes-ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links .current,
.nav-links a:hover {
  border-color: var(--bes-blue);
  background: var(--bes-blue);
  color: var(--bes-white);
}

/* Single article */
.besjeda-single__header {
  padding: clamp(84px, 10vw, 150px) 0 60px;
  background: linear-gradient(145deg, var(--bes-cream-light), #f7f8f6);
  text-align: center;
}

.besjeda-single__header .besjeda-post-card__meta {
  justify-content: center;
}

.besjeda-single__header h1 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
}

.besjeda-single__lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--bes-ink-soft);
  font-size: 1.12rem;
}

.besjeda-single__image {
  overflow: hidden;
  margin-top: 50px;
  border-radius: var(--bes-radius-lg);
}

.besjeda-single__image img {
  width: 100%;
}

.besjeda-prose {
  padding-top: 70px;
  padding-bottom: 70px;
  color: #303c48;
  font-size: 1.04rem;
}

.besjeda-prose h2,
.besjeda-prose h3,
.besjeda-prose h4 {
  margin-top: 1.7em;
  color: var(--bes-ink);
}

.besjeda-prose h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.besjeda-prose h3 { font-size: 1.6rem; }

.besjeda-prose a {
  color: var(--bes-blue);
}

.besjeda-prose blockquote {
  padding: 25px 30px;
  margin: 36px 0;
  border-left: 4px solid var(--bes-blue);
  border-radius: 0 var(--bes-radius-sm) var(--bes-radius-sm) 0;
  background: var(--bes-cream-light);
}

.besjeda-prose img {
  border-radius: var(--bes-radius);
}

.besjeda-single__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 100px;
}

.besjeda-tags a {
  display: inline-flex;
  padding: 7px 11px;
  margin: 3px;
  border: 1px solid var(--bes-line);
  border-radius: 999px;
  font-size: 0.72rem;
  text-decoration: none;
}

.besjeda-back-link {
  color: var(--bes-blue);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

/* Contact */
.besjeda-contact-quick a,
.besjeda-contact-quick span {
  display: block;
}

.besjeda-contact-quick a {
  color: var(--bes-blue);
  font-size: 1.05rem;
  font-weight: 650;
  text-decoration: none;
}

.besjeda-contact-quick a + a {
  margin-top: 2px;
}

.besjeda-contact-quick span {
  margin-top: 4px;
  color: var(--bes-ink-soft);
  font-size: 0.76rem;
}

.besjeda-contact-section__grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr);
}

.besjeda-contact-section__intro {
  position: sticky;
  top: 160px;
}

.besjeda-contact-section__intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.besjeda-contact-section__intro > p {
  color: var(--bes-ink-soft);
}

.besjeda-contact-benefits {
  margin-top: 35px;
  border-top: 1px solid var(--bes-line);
}

.besjeda-contact-benefits span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bes-line);
  font-size: 0.82rem;
  font-weight: 550;
}

.besjeda-contact-benefits i {
  color: var(--bes-blue);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
}

.besjeda-form-wrap {
  padding: clamp(25px, 4vw, 46px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  box-shadow: var(--bes-shadow);
}

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

.besjeda-field {
  display: block;
  margin-bottom: 19px;
}

.besjeda-field > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 650;
}

.besjeda-field em,
.besjeda-check em {
  color: var(--bes-blue);
  font-style: normal;
}

.besjeda-field input,
.besjeda-field select,
.besjeda-field textarea {
  width: 100%;
  border: 1px solid var(--bes-line);
  border-radius: 12px;
  background: #fbfbf9;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.besjeda-field input,
.besjeda-field select {
  min-height: 54px;
  padding: 0 15px;
}

.besjeda-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.besjeda-field input:focus,
.besjeda-field select:focus,
.besjeda-field textarea:focus {
  border-color: var(--bes-blue);
  background: var(--bes-white);
  box-shadow: 0 0 0 4px rgba(35, 118, 166, 0.1);
}

.besjeda-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 5px 0 22px;
  color: var(--bes-ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.45;
}

.besjeda-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--bes-blue);
}

.besjeda-check a {
  color: var(--bes-blue);
}

.besjeda-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.besjeda-form-note {
  margin: 12px 0 0;
  color: var(--bes-ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.besjeda-form-message {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.besjeda-form-message--success {
  background: #e4f4eb;
  color: #175b36;
}

.besjeda-form-message--error {
  background: #fbe8e4;
  color: #8b2f24;
}

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

.besjeda-contact-cards article {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(19, 27, 36, 0.1);
  border-radius: var(--bes-radius);
  background: rgba(255, 255, 255, 0.52);
}

.besjeda-contact-cards__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 50%;
  background: var(--bes-blue);
  color: var(--bes-white);
  font-size: 1.1rem;
  font-weight: 650;
}

.besjeda-contact-cards .besjeda-kicker {
  display: flex;
  margin-bottom: 12px;
}

.besjeda-contact-cards h2 {
  margin-bottom: 15px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.besjeda-contact-cards h2 a {
  overflow-wrap: anywhere;
}

.besjeda-contact-cards p {
  margin: 0;
  color: var(--bes-ink-soft);
  font-size: 0.82rem;
}

.besjeda-contact-cards p + p {
  margin-top: 12px;
}

.besjeda-contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.besjeda-contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(19, 27, 36, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--bes-ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.besjeda-contact-social a:hover {
  border-color: var(--bes-blue);
  background: var(--bes-white);
  color: var(--bes-blue);
}

.besjeda-company-line {
  padding-top: 34px;
  margin: 45px 0 0;
  border-top: 1px solid rgba(19, 27, 36, 0.12);
  color: var(--bes-ink-soft);
  font-size: 0.72rem;
  text-align: center;
}

/* Google reviews */
.besjeda-reviews {
  background: var(--bes-white);
}

.besjeda-reviews .besjeda-section-heading {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.besjeda-trustindex {
  min-height: 180px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(19, 27, 36, 0.09);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-canvas);
  box-shadow: 0 22px 60px rgba(19, 27, 36, 0.07);
}

/* Legal */
.besjeda-legal-hero {
  padding: clamp(80px, 10vw, 140px) 0 75px;
  background: linear-gradient(145deg, var(--bes-cream-light), #f6f7f5);
  text-align: center;
}

.besjeda-legal-hero .besjeda-kicker {
  justify-content: center;
}

.besjeda-legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
}

.besjeda-legal-hero p {
  color: var(--bes-ink-soft);
}

.besjeda-legal-summary {
  padding: 28px;
  margin-bottom: 35px;
  border-left: 4px solid var(--bes-blue);
  border-radius: 0 var(--bes-radius) var(--bes-radius) 0;
  background: var(--bes-cream-light);
}

.besjeda-legal-summary h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.besjeda-legal-summary p {
  margin-bottom: 10px;
  color: var(--bes-ink-soft);
  font-size: 0.88rem;
}

.besjeda-legal-content {
  background: #f4f6f6;
}

.besjeda-legal-prose {
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid rgba(19, 27, 36, 0.1);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  box-shadow: var(--bes-shadow-soft);
}

.besjeda-legal-prose__intro {
  padding: 0 0 28px;
  margin-bottom: 0 !important;
  border-bottom: 1px solid var(--bes-line);
  color: var(--bes-ink) !important;
  font-weight: 580;
}

.besjeda-legal-prose__section {
  padding-top: 54px;
  margin: 54px 0 20px;
  border-top: 1px solid var(--bes-line);
  color: var(--bes-blue);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.besjeda-legal-prose__article {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--bes-line);
}

.besjeda-legal-prose__article:first-of-type {
  padding-top: 32px;
  margin-top: 0;
  border-top: 0;
}

.besjeda-legal-prose__article h2,
.besjeda-legal-prose > h3 {
  margin-bottom: 18px;
  color: var(--bes-ink);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  letter-spacing: -0.025em;
}

.besjeda-legal-prose > h3 {
  margin-top: 34px;
}

.besjeda-legal-prose h4 {
  margin: 28px 0 10px;
  color: var(--bes-ink);
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.besjeda-legal-prose p,
.besjeda-legal-list li {
  color: var(--bes-ink-soft);
  font-size: 0.91rem;
  line-height: 1.82;
}

.besjeda-legal-prose p {
  margin-bottom: 17px;
}

.besjeda-legal-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 6px 0 24px;
}

.besjeda-legal-list li::marker {
  color: var(--bes-blue);
}

.besjeda-legal-signature {
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid var(--bes-line);
  color: var(--bes-ink) !important;
  font-weight: 600;
}

/* Final CTA */
.besjeda-final-cta {
  padding-top: clamp(48px, 6vw, 88px);
  background: var(--bes-canvas);
}

.besjeda-final-cta__inner {
  position: relative;
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: minmax(0, 1.35fr) auto;
  overflow: hidden;
  padding: clamp(42px, 7vw, 80px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-blue);
  color: var(--bes-white);
}

.besjeda-final-cta__inner::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.035), 0 0 0 130px rgba(255, 255, 255, 0.02);
  content: "";
}

.besjeda-final-cta__inner > * {
  position: relative;
  z-index: 1;
}

.besjeda-final-cta .besjeda-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.besjeda-final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
}

.besjeda-final-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Footer */
.besjeda-footer {
  padding: 90px 0 0;
  background: var(--bes-cream);
  color: var(--bes-ink);
}

.besjeda-footer__grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1.15fr 0.65fr 0.85fr 1.35fr;
  padding-bottom: 70px;
}

.besjeda-brand--footer img {
  width: 238px;
  max-height: none;
}

.besjeda-footer__brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: var(--bes-ink-soft);
  font-size: 0.82rem;
}

.besjeda-footer__title {
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.besjeda-footer__menu,
.besjeda-footer__contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.besjeda-footer__menu li,
.besjeda-footer__contact li {
  margin-bottom: 11px;
  color: var(--bes-ink-soft);
  font-size: 0.8rem;
}

.besjeda-footer__menu a,
.besjeda-footer__contact a {
  text-decoration: none;
}

.besjeda-footer__menu a:hover,
.besjeda-footer__contact a:hover {
  color: var(--bes-blue);
}

.besjeda-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.besjeda-footer__social a {
  padding: 6px 9px;
  border: 1px solid rgba(19, 27, 36, 0.12);
  border-radius: 999px;
  color: var(--bes-ink-soft);
  font-size: 0.64rem;
  font-weight: 650;
  text-decoration: none;
}

.besjeda-footer__social a:hover {
  border-color: var(--bes-blue);
  color: var(--bes-blue);
}

.besjeda-footer__cta {
  padding: 26px;
  border: 1px solid rgba(19, 27, 36, 0.12);
  border-radius: var(--bes-radius);
  background: rgba(255, 255, 255, 0.35);
}

.besjeda-footer__cta .besjeda-kicker {
  margin-bottom: 14px;
  font-size: 0.6rem;
}

.besjeda-footer__cta h2 {
  margin-bottom: 22px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.besjeda-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(19, 27, 36, 0.13);
  color: var(--bes-ink-soft);
  font-size: 0.68rem;
}

.besjeda-footer__bottom p {
  margin: 0;
}

.besjeda-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.besjeda-footer__legal a,
.besjeda-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

.besjeda-footer__legal a:hover,
.besjeda-link-button:hover {
  color: var(--bes-blue);
}

.besjeda-footer__credit {
  padding: 11px 20px;
  background: var(--bes-ink);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  text-align: center;
}

.besjeda-footer__credit a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.besjeda-mobile-bar {
  display: none;
}

.besjeda-whatsapp {
  position: fixed;
  z-index: 971;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: linear-gradient(135deg, #25b86f, #168653);
  box-shadow: 0 17px 42px rgba(17, 93, 57, 0.3), 0 5px 14px rgba(19, 27, 36, 0.14);
  color: var(--bes-white);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.25s var(--bes-ease);
}

.besjeda-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(17, 93, 57, 0.36), 0 7px 18px rgba(19, 27, 36, 0.16);
}

.besjeda-whatsapp__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.besjeda-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.besjeda-whatsapp__copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.besjeda-whatsapp__copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.61rem;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.besjeda-whatsapp__copy strong {
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.besjeda-back-to-top {
  position: fixed;
  z-index: 970;
  right: 22px;
  bottom: 96px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--bes-blue);
  box-shadow: 0 16px 40px rgba(19, 27, 36, 0.22);
  color: var(--bes-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.3s var(--bes-ease), visibility 0s linear 0.3s, background 0.25s ease;
}

.besjeda-back-to-top:hover {
  background: var(--bes-blue-dark);
}

.besjeda-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition-delay: 0s;
}

.besjeda-back-to-top span {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

/* Language choice modal */
.besjeda-booking-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.besjeda-booking-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.besjeda-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 27, 36, 0.76);
  backdrop-filter: blur(8px);
}

.besjeda-booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.besjeda-booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bes-line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.35rem;
}

.besjeda-booking-modal h2 {
  max-width: 500px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.besjeda-booking-modal__panel > p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--bes-ink-soft);
  font-size: 0.88rem;
}

.besjeda-booking-modal__languages {
  display: grid;
  gap: 10px;
}

.besjeda-booking-modal__languages a {
  display: grid;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  grid-template-columns: 48px 1fr auto;
  padding: 13px 16px;
  border: 1px solid var(--bes-line);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.25s var(--bes-ease);
}

.besjeda-booking-modal__languages a:hover {
  border-color: var(--bes-blue);
  background: var(--bes-blue-soft);
  transform: translateX(4px);
}

.besjeda-booking-modal__languages a > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bes-blue);
  color: var(--bes-white);
  font-size: 1.35rem;
  font-weight: 600;
}

.besjeda-booking-modal__languages strong {
  font-size: 1rem;
}

.besjeda-booking-modal__languages i {
  color: var(--bes-blue);
  font-style: normal;
}

/* Cookie controls */
.besjeda-cookie {
  position: fixed;
  z-index: 9990;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  max-width: 1120px;
  min-height: 110px;
  align-items: center;
  gap: 20px;
  grid-template-columns: 48px 1fr auto;
  padding: 20px 22px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(19, 27, 36, 0.97);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
  color: var(--bes-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.35s var(--bes-ease), visibility 0s linear 0.35s;
  backdrop-filter: blur(18px);
}

.besjeda-cookie.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition-delay: 0s;
}

.besjeda-cookie__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bes-cream);
  color: var(--bes-ink);
  font-size: 1.2rem;
}

.besjeda-cookie__copy h2 {
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.besjeda-cookie__copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.besjeda-cookie__copy a {
  color: var(--bes-white);
}

.besjeda-cookie__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.besjeda-cookie__actions .besjeda-button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.7rem;
}

.besjeda-cookie__actions .besjeda-button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--bes-white);
}

.besjeda-cookie__actions .besjeda-link-button {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  white-space: nowrap;
}

.besjeda-cookie-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.besjeda-cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.besjeda-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 27, 36, 0.72);
  backdrop-filter: blur(7px);
}

.besjeda-cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--bes-radius-lg);
  background: var(--bes-white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.besjeda-cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bes-line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.3rem;
}

.besjeda-cookie-modal h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.besjeda-cookie-option {
  position: relative;
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 1fr auto;
  padding: 20px 0;
  border-top: 1px solid var(--bes-line);
}

.besjeda-cookie-option strong {
  display: block;
  margin-bottom: 4px;
}

.besjeda-cookie-option p {
  margin: 0;
  color: var(--bes-ink-soft);
  font-size: 0.74rem;
}

.besjeda-cookie-option__required {
  color: var(--bes-blue);
  font-size: 0.65rem;
  font-weight: 700;
}

.besjeda-cookie-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.besjeda-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #c5cbd0;
  transition: background 0.2s ease;
}

.besjeda-switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bes-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  content: "";
  transition: transform 0.2s ease;
}

.besjeda-cookie-option input:checked + .besjeda-switch {
  background: var(--bes-blue);
}

.besjeda-cookie-option input:checked + .besjeda-switch::after {
  transform: translateX(20px);
}

.besjeda-cookie-option input:focus-visible + .besjeda-switch {
  outline: 3px solid rgba(35, 118, 166, 0.25);
  outline-offset: 3px;
}

/* Search and error */
.besjeda-search-form {
  display: flex;
  max-width: 560px;
  margin: 25px auto 0;
  gap: 8px;
}

.besjeda-search-form label {
  flex: 1;
}

.besjeda-search-form__field {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid var(--bes-line);
  border-radius: 999px;
  background: var(--bes-white);
}

.besjeda-error {
  padding: clamp(100px, 14vw, 190px) 0;
  background: linear-gradient(145deg, var(--bes-cream-light), var(--bes-blue-soft));
  text-align: center;
}

.besjeda-error__code {
  display: block;
  margin-bottom: -20px;
  color: rgba(35, 118, 166, 0.13);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.besjeda-error .besjeda-kicker {
  justify-content: center;
}

.besjeda-error h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
}

.besjeda-error p {
  color: var(--bes-ink-soft);
}

.besjeda-error .besjeda-button-row {
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 1120px) {
  :root { --bes-header-height: 90px; }

  .besjeda-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .besjeda-shell { width: min(var(--bes-shell), calc(100% - 36px)); }
  .besjeda-shell--narrow,
  .besjeda-shell--article { width: min(900px, calc(100% - 36px)); }

  .besjeda-menu-toggle { display: block; z-index: 1002; }

  .besjeda-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(430px, 100%);
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding: 90px 38px 45px;
    background: var(--bes-canvas);
    box-shadow: -30px 0 80px rgba(19, 27, 36, 0.16);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 0.42s var(--bes-ease), opacity 0.3s ease, visibility 0s linear 0.42s;
  }

  .besjeda-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }
  .besjeda-nav__list { align-items: stretch; flex-direction: column; gap: 0; }
  .besjeda-nav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--bes-line); font-size: 1.25rem; }
  .besjeda-nav__list a::after { display: none; }
  .besjeda-nav > .besjeda-button { margin-top: 22px; }

  .besjeda-hero__grid { gap: 40px; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); }
  .besjeda-language-card { width: 220px; }
  .besjeda-language-card--ru { right: 0; }

  .besjeda-format-grid { grid-template-columns: repeat(2, 1fr); }
  .besjeda-footer__grid { grid-template-columns: 1.1fr 0.7fr 0.9fr; }
  .besjeda-footer__cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
  .besjeda-footer__cta h2 { max-width: 600px; margin: 0; }
}

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

  h1 { font-size: clamp(2.25rem, 4.2vw, 4.65rem); }

  .besjeda-heading-row,
  .besjeda-subhero__grid,
  .besjeda-story__grid,
  .besjeda-method__grid,
  .besjeda-principles__grid,
  .besjeda-faq__grid,
  .besjeda-contact-section__grid {
    grid-template-columns: 1fr;
  }

  .besjeda-heading-row { gap: 22px; }
  .besjeda-heading-row > .besjeda-text-link { justify-self: start; }

  .besjeda-hero { padding-top: 70px; }
  .besjeda-hero__grid { grid-template-columns: 1fr; }
  .besjeda-hero__copy { padding-bottom: 0; }
  .besjeda-language-stage { width: min(600px, 100%); min-height: 500px; margin: 0 auto; }

  .besjeda-language-grid,
  .besjeda-value-grid,
  .besjeda-book-language__grid,
  .besjeda-contact-cards,
  .besjeda-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .besjeda-feature-card:last-child,
  .besjeda-contact-cards article:last-child,
  .besjeda-post-grid > article:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .besjeda-method__intro,
  .besjeda-faq__grid > div:first-child,
  .besjeda-contact-section__intro { position: static; }

  .besjeda-story__visual { width: min(720px, 100%); min-height: 430px; }
  .besjeda-story__note { right: 25px; }

  .besjeda-student-offer { grid-template-columns: auto 1fr; }
  .besjeda-student-offer .besjeda-button { grid-column: 1 / -1; justify-self: start; }

  .besjeda-business-course { grid-template-columns: 1fr; }
  .besjeda-business-course__action { display: grid; align-items: center; gap: 16px; grid-template-columns: auto auto 1fr; text-align: left; }
  .besjeda-business-course__action > strong { margin: 0; }
  .besjeda-business-course__action .besjeda-button { justify-self: end; }

  .besjeda-final-cta__inner { align-items: start; grid-template-columns: 1fr; }

  .besjeda-cookie { grid-template-columns: 42px 1fr; }
  .besjeda-cookie__actions { grid-column: 1 / -1; justify-content: flex-end; }
}

@media (max-width: 680px) {
  :root { --bes-header-height: 82px; --bes-radius-lg: 28px; }

  body { padding-bottom: 66px; font-size: 15px; }
  .besjeda-shell,
  .besjeda-shell--narrow,
  .besjeda-shell--article { width: calc(100% - 28px); }
  .besjeda-section { padding: 72px 0; }

  .besjeda-offer-bar__inner { justify-content: flex-start; overflow: hidden; }
  .besjeda-offer-bar__marquee { flex: 1 1 auto; }
  .besjeda-offer-bar__track { animation: besjeda-marquee 15s linear infinite; will-change: transform; }
  .besjeda-offer-bar__track > span:nth-child(2) { display: inline-block; }

  .besjeda-brand img,
  .besjeda-brand .custom-logo { width: 190px; max-height: 78px; }
  .besjeda-header__inner { min-height: 82px; }
  .besjeda-menu-toggle { width: 44px; height: 44px; }
  .besjeda-nav { width: 100%; padding: 92px 24px 90px; }

  .besjeda-hero { padding-top: 58px; }
  .besjeda-hero__copy .besjeda-lead { font-size: 1.02rem; }
  .besjeda-hero__trust { gap: 9px 14px; }
  .besjeda-language-stage { min-height: 430px; }
  .besjeda-language-stage__glow { width: 260px; height: 260px; }
  .besjeda-language-stage__photo { width: 250px; height: 340px; border-width: 6px; border-radius: 125px 125px 28px 28px; }
  .besjeda-language-card { width: 195px; min-height: 78px; gap: 10px; padding: 12px; border-radius: 16px; }
  .besjeda-language-card__symbol { width: 45px; height: 45px; border-radius: 12px; font-size: 1.4rem; }
  .besjeda-language-card small { font-size: 0.59rem; }
  .besjeda-language-card--hr { top: 8px; left: 0; }
  .besjeda-language-card--ru { top: 180px; right: 0; }
  .besjeda-language-card--sv { bottom: 26px; left: 0; }
  .besjeda-language-stage__word--one { right: 8px; }
  .besjeda-language-stage__word--two { right: 0; bottom: 55px; }
  .besjeda-language-stage__word--three { top: 112px; right: 8px; bottom: auto; }

  .besjeda-language-grid,
  .besjeda-value-grid,
  .besjeda-book-language__grid,
  .besjeda-contact-cards,
  .besjeda-post-grid,
  .besjeda-price-grid,
  .besjeda-steps,
  .besjeda-comparison__grid,
  .besjeda-format-grid,
  .besjeda-form-grid {
    grid-template-columns: 1fr;
  }

  .besjeda-feature-card,
  .besjeda-feature-card:last-child,
  .besjeda-contact-cards article:last-child,
  .besjeda-post-grid > article:last-child:nth-child(odd) { grid-column: auto; }

  .besjeda-feature-card { min-height: 420px; }
  .besjeda-feature-card__glyph { font-size: 8rem; }

  .besjeda-format-grid article { min-height: 300px; }
  .besjeda-format-grid__number { margin-bottom: 42px; }

  .besjeda-subhero { padding: 70px 0; }
  .besjeda-subhero__grid { gap: 30px; }
  .besjeda-subhero__aside { padding: 0; }
  .besjeda-word-ribbon { margin-top: 45px; overflow: hidden; justify-content: flex-start; white-space: nowrap; }

  .besjeda-story__visual { min-height: 330px; }
  .besjeda-story__note { right: 16px; bottom: 22px; width: 210px; }

  .besjeda-value-grid article { min-height: 225px; }
  .besjeda-value-grid > article > span { margin-bottom: 36px; }

  .besjeda-student-offer { grid-template-columns: 1fr; padding: 28px; }
  .besjeda-student-offer .besjeda-button { grid-column: auto; justify-self: stretch; }
  .besjeda-courses-photo { height: 430px; margin-bottom: 72px; }
  .besjeda-courses-photo figcaption { right: 16px; bottom: 16px; left: 16px; width: auto; padding: 22px; }
  .besjeda-price-card { min-height: auto; }
  .besjeda-price-card__price { align-items: flex-start; flex-direction: column; }
  .besjeda-price-card__price span { text-align: left; }
  .besjeda-price-card__badge { position: static; align-self: flex-start; margin-bottom: 18px; }

  .besjeda-business-course__action { grid-template-columns: 1fr 1fr; }
  .besjeda-business-course__action .besjeda-button { grid-column: 1 / -1; justify-self: stretch; }

  .besjeda-book-language__grid > a { min-height: 112px; }

  .besjeda-contact-cards article { min-height: 280px; }
  .besjeda-contact-cards__icon { margin-bottom: 42px; }
  .besjeda-form-wrap { padding: 22px 18px; }

  .besjeda-final-cta__inner { gap: 32px; padding: 34px 24px; }
  .besjeda-final-cta .besjeda-button-row { align-items: stretch; flex-direction: column; }
  .besjeda-final-cta .besjeda-button { width: 100%; }

  .besjeda-footer { padding-top: 66px; }
  .besjeda-footer__grid { grid-template-columns: 1fr 1fr; }
  .besjeda-footer__brand,
  .besjeda-footer__cta { grid-column: 1 / -1; }
  .besjeda-footer__cta { display: block; }
  .besjeda-footer__cta h2 { margin-bottom: 22px; }
  .besjeda-footer__bottom { align-items: flex-start; flex-direction: column; padding: 24px 0; }

  .besjeda-mobile-bar {
    position: fixed;
    z-index: 980;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--bes-line);
    background: rgba(249, 248, 244, 0.97);
    box-shadow: 0 -8px 32px rgba(19, 27, 36, 0.08);
    backdrop-filter: blur(16px);
  }

  .besjeda-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
    color: var(--bes-ink-soft);
    font-size: 0.59rem;
    font-weight: 650;
    text-decoration: none;
  }

  .besjeda-mobile-bar a span {
    color: var(--bes-blue);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }

  .besjeda-whatsapp { right: 12px; bottom: 78px; min-height: 52px; gap: 8px; padding: 6px 13px 6px 7px; }
  .besjeda-whatsapp__icon { width: 38px; height: 38px; flex-basis: 38px; }
  .besjeda-whatsapp svg { width: 22px; height: 22px; }
  .besjeda-whatsapp__copy small { font-size: 0.55rem; }
  .besjeda-whatsapp__copy strong { max-width: 112px; font-size: 0.69rem; }
  .besjeda-back-to-top { right: 14px; bottom: 140px; width: 48px; height: 48px; }

  .besjeda-cookie { right: 10px; bottom: 76px; left: 10px; display: block; padding: 20px; }
  .besjeda-cookie__icon { display: none; }
  .besjeda-cookie__copy h2 { font-size: 0.95rem; }
  .besjeda-cookie__copy p { font-size: 0.67rem; }
  .besjeda-cookie__actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 16px; }
  .besjeda-cookie__actions .besjeda-link-button { display: block; grid-column: 1 / -1; margin-top: 3px; color: rgba(255, 255, 255, 0.66); font-size: 0.66rem; }

  .besjeda-legal-prose { padding: 26px 20px; border-radius: 24px; }
  .besjeda-legal-prose__section { padding-top: 38px; margin-top: 38px; }
  .besjeda-legal-prose__article { padding-top: 30px; margin-top: 30px; }
  .besjeda-booking-modal { padding: 10px; }
  .besjeda-booking-modal__panel { max-height: calc(100vh - 20px); padding: 34px 20px 24px; border-radius: 26px; }
  .besjeda-booking-modal__close { top: 12px; right: 12px; }
  .besjeda-booking-modal h2 { padding-right: 34px; font-size: 2rem; }

  .besjeda-single__footer { align-items: flex-start; flex-direction: column; }
  .besjeda-empty { padding: 38px 22px; }
  .besjeda-search-form { flex-direction: column; }
}

@media (max-width: 380px) {
  .besjeda-language-card { width: 180px; }
  .besjeda-language-card--ru { right: -4px; }
  .besjeda-button { padding-inline: 18px; }
  .besjeda-footer__grid { grid-template-columns: 1fr; }
  .besjeda-footer__brand,
  .besjeda-footer__cta { grid-column: auto; }
}

@keyframes besjeda-marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .besjeda-offer-bar__track { animation: none !important; }
}

@media print {
  .besjeda-offer-bar,
  .besjeda-header,
  .besjeda-footer,
  .besjeda-mobile-bar,
  .besjeda-back-to-top,
  .besjeda-whatsapp,
  .besjeda-booking-modal,
  .besjeda-cookie,
  .besjeda-cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
