/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 160px 0 64px;
  text-align: center;
  background: var(--blue);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.page-hero__title { color: var(--white); margin-bottom: 12px; }

.page-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: var(--fs-md);
  max-width: 500px;
  margin-inline: auto;
}

.page-hero--light {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero--light::before { background: var(--off-white); }
.page-hero--light .page-hero__label { color: var(--blue); }
.page-hero--light .page-hero__title { color: var(--heading); }
.page-hero--light .page-hero__sub   { color: var(--body); }

/* ── About page custom hero ── */
.about-hero {
  position: relative;
  padding: 160px 0 130px;
  overflow: hidden;
  background: #060f22;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060f22 0%, #0b1f4a 45%, #0d2860 100%);
}

/* subtle grid pattern */
.about-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* radial glow accent */
.about-hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 68%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid rgba(46,141,237,.35);
  border-radius: 999px;
  background: rgba(46,141,237,.08);
}

.about-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-hero__sub {
  font-size: var(--fs-base);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

/* inline stats strip */
.about-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.about-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-hero__stat-num {
  font-size: 1.9rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}

.about-hero__stat-num sup {
  font-size: 0.55em;
  color: var(--blue-mid);
  vertical-align: super;
}

.about-hero__stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* right: image frame */
.about-hero__img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

.about-hero__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,15,34,.7) 100%);
  z-index: 1;
}

.about-hero__img-frame img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* floating badge on image */
.about-hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
}

.about-hero__img-badge svg {
  flex-shrink: 0;
  color: var(--blue-mid);
}

.about-hero__img-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
}

.about-hero__img-badge span {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
}

/* centered / simple variant */
.about-hero--simple {
  padding: 150px 0 110px;
  text-align: center;
}

.about-hero__center {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.about-hero--simple .about-hero__sub {
  margin-inline: auto;
}


/* =========================================================
   Utilities
   ========================================================= */
.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =========================================================
   About home section
   ========================================================= */
.about-home {
  padding-block: 110px;
  background: #fff;
}

.about-home__heading {
  text-align: center;
  margin-bottom: 52px;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.about-home__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin: 10px 0 0;
}

.about-home__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: stretch;
}

.about-home__lead {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--body);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 0;
}

.about-home__body {
  font-size: var(--fs-base);
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-home__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.about-home__pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dark);
}

.about-home__pillar svg { color: var(--blue); flex-shrink: 0; }

/* Right: image */
.about-home__visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-home__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.13);
  line-height: 0;
  height: 100%;
}

.about-home__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-home__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}

.about-home__badge::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--blue);
}

.about-home__badge-num {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
  padding: 14px 20px 4px;
  letter-spacing: -0.02em;
}

.about-home__badge-num sup {
  font-size: 1rem;
  vertical-align: super;
}

.about-home__badge-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: var(--fw-semi);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 20px 14px;
}

/* =========================================================
   About page
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
}

.about-stat__num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__lbl {
  font-size: var(--fs-sm);
  color: var(--body);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-4px);
}

.value-card__icon {
  width: 54px;
  height: 54px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}

.value-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card__text {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.75;
}

.about-awards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.about-award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--ease);
}

.about-award-badge:hover { opacity: 1; }

.about-award-badge__ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.about-award-badge__title {
  font-size: 8px;
  font-weight: var(--fw-bold);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-award-badge__year {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--dark);
}

.about-award-badge__lbl {
  font-size: var(--fs-xs);
  color: var(--body);
  text-align: center;
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin-inline: auto;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.office-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 8px;
}

.office-card__city {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--dark);
}

.office-card__address { font-size: var(--fs-sm); color: var(--body); }
.office-card__hours   { font-size: var(--fs-sm); color: var(--muted); }

.office-card__tel {
  display: inline-block;
  margin-top: 8px;
  font-weight: var(--fw-semi);
  color: var(--blue);
  transition: opacity var(--ease);
}

.office-card__tel:hover { opacity: 0.75; }

/* ── Stats bar with real photo bg ── */
.about-stats-bar--img {
  position: relative;
  background-image: url('../images/stats-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
html.webp .about-stats-bar--img {
  background-image: url('../images/stats-bg.webp');
}

.about-stats-bar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 53, 0.85);
}

.about-stats-bar--img .container {
  position: relative;
  z-index: 1;
}

/* ── About highlights (two cards top) ── */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: box-shadow var(--ease), transform var(--ease);
}

.about-highlight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.about-highlight-card__icon {
  width: 60px;
  height: 60px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-highlight-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 4px;
}

.about-highlight-card__sub {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.about-highlight-card__text {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.8;
}

/* ── About split (text + image alternating rows) ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split--reverse {
  direction: rtl;
}

.about-split--reverse > * {
  direction: ltr;
}

.about-split__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.about-split__text p {
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* image with portrait badge */
.about-split__image--with-badge {
  position: relative;
}

.about-split__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 130px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  border: 3px solid #fff;
  background: #fff;
}

.about-split__badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── About pillars (checklist) ── */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
}

.about-pillar svg {
  flex-shrink: 0;
  color: var(--blue);
}

/* ── Stats bar (dark strip) ── */
.about-stats-bar {
  background: linear-gradient(135deg, #071425 0%, #0d2248 50%, #071425 100%);
  padding: 80px 0;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-stats-item__num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}

.about-stats-item__num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--blue-mid);
}

.about-stats-item__lbl {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

/* =========================================================
   Biography section (za-nas page)
   ========================================================= */
.bio-section { background: var(--white); }

.bio-intro {
  text-align: center;
  margin-bottom: 60px;
}

.bio-name {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin: 10px 0 14px;
  line-height: 1.15;
}

.bio-role-badge {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: 7px 22px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.bio-block__title {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Education */
.bio-edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-edu-list li {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.bio-edu__degree {
  display: block;
  font-weight: var(--fw-semi);
  color: var(--dark);
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.bio-edu__uni {
  display: block;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 3px;
}

/* Career timeline */
.bio-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.bio-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.bio-timeline li {
  position: relative;
  padding-left: 26px;
  padding-bottom: 14px;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.5;
}

.bio-timeline li:last-child { padding-bottom: 0; }

.bio-timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  z-index: 1;
}

.bio-timeline__highlight {
  color: var(--dark) !important;
  font-weight: var(--fw-semi) !important;
}

.bio-timeline__highlight::before {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px var(--blue-tint);
}

/* Two-column inner layout */
.bio-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Expertise list */
.bio-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.5;
}

.bio-expertise-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
}

/* Sector tags */
.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bio-tags span {
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 12px;
  font-weight: var(--fw-semi);
  padding: 5px 13px;
  border-radius: 50px;
}

/* Photos */
.bio-photos {
  position: relative;
  padding-bottom: 40px;
}

.bio-photo {
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.bio-photo--main {
  width: 88%;
  margin-left: auto;
  box-shadow: 0 28px 72px rgba(24, 99, 220, 0.15);
  position: relative;
  z-index: 2;
}

.bio-photo--secondary {
  width: 75%;
  margin-top: -90px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
  border: 5px solid var(--white);
}

.bio-photos__accent {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blue-tint);
  z-index: 1;
}

/* =========================================================
   Certificate gallery + Lightbox
   ========================================================= */

.cert-gallery {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.cert-gallery__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.cert-gallery__title svg { color: var(--blue); flex-shrink: 0; }

.cert-gallery__strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 4px;
  margin-top: -4px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cert-gallery__strip::-webkit-scrollbar { height: 4px; }
.cert-gallery__strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Card */
.cert-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
}
.cert-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(24, 99, 220, 0.12);
  transform: translateY(-2px);
}

.cert-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--grey-light);
}
.cert-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s;
}
.cert-card:hover .cert-card__thumb img { transform: scale(1.04); }

.cert-card__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 99, 220, 0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 6px;
}
.cert-card:hover .cert-card__zoom { opacity: 1; }

.cert-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.cert-card__sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Lightbox ── */
.cert-lb {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-lb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.92);
  cursor: pointer;
}

.cert-lb__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cert-lb__close:hover { background: rgba(255,255,255,0.22); }

.cert-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cert-lb__nav:hover { background: rgba(255,255,255,0.25); }
.cert-lb__prev { left: 16px; }
.cert-lb__next { right: 16px; }

.cert-lb__stage {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  max-height: 86vh;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-lb__img {
  display: block;
  max-width: min(92vw, 900px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 0.3s ease;
  touch-action: pinch-zoom;
  user-select: none;
}
.cert-lb__img.is-zoomed {
  cursor: zoom-out;
  transform: scale(2.5);
}

.cert-lb__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92vw, 900px);
  margin-top: 12px;
  gap: 16px;
}
.cert-lb__caption {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.cert-lb__counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  white-space: nowrap;
}
.cert-lb__hint {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 600px) {
  .cert-card { flex: 0 0 130px; }
  .cert-lb__prev { left: 6px; }
  .cert-lb__next { right: 6px; }
  .cert-lb__nav { width: 38px; height: 38px; }
  .cert-lb__img.is-zoomed { transform: scale(2); }
}

/* =========================================================
   Services page
   ========================================================= */
.service-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: flex-start;
}

.service-block__hd {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.service-block__icon {
  width: 64px;
  height: 64px;
  background: var(--blue-tint);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.service-block__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-block__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 0;
}

.service-block__desc {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.75;
}

.service-block__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.svc-item:first-child { border-top: 1px solid var(--border); }

.svc-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}

.svc-item__name {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--dark);
  margin-bottom: 4px;
}

.svc-item__desc {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   Pricing page
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: box-shadow var(--ease);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__hd { text-align: center; }

.pricing-card__name {
  display: block;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 6px;
}

.pricing-card__target {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-bottom: 18px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-card__from {
  font-size: var(--fs-sm);
  color: var(--body);
}

.pricing-card__amount {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
}

.pricing-card__cur {
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  color: var(--blue);
}

.pricing-card__per {
  font-size: var(--fs-sm);
  color: var(--body);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--body);
}

.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231863DC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.included-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
}

.included-item__check { flex-shrink: 0; margin-top: 2px; }

.included-item__title {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--dark);
  margin-bottom: 4px;
}

.included-item__desc {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   FAQ page
   ========================================================= */
.faq-wrap {
  max-width: 760px;
  margin-inline: auto;
}

.faq-group__hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.faq-group__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--blue-light, #EBF3FD);
  border-radius: 12px;
  color: var(--blue);
}

.faq-group__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  color: var(--dark);
  transition: color var(--ease);
}

.faq-q:hover { color: var(--blue); }

.faq-q__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--blue);
}

.faq-q[aria-expanded="true"] .faq-q__icon { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--blue); }

.faq-a {
  display: none;
  padding-bottom: 22px;
  font-size: var(--fs-base);
  color: var(--body);
  line-height: 1.8;
}

.faq-a--open { display: block; }

.faq-a p { margin: 0; }

.faq-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-cta p {
  font-size: var(--fs-md);
  color: var(--body);
  margin: 0;
}

/* =========================================================
   Contact page
   ========================================================= */

/* extra bottom padding so the white card floats over the hero bottom */
.about-hero--kont { padding-bottom: 80px; }

/* ── Quick contact strip ── */
.kont-strip {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 0 0 0;
}

.kont-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border: 1px solid var(--border);
  overflow: hidden;
}

.kont-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  color: var(--heading);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.kont-strip__item:last-child { border-right: none; }

a.kont-strip__item:hover { background: var(--blue-tint); }

.kont-strip__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.kont-strip__label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: 2px;
}

.kont-strip__value {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--heading);
}

/* ── Main layout ── */
.kont-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}

/* ── Office cards ── */
.kont-offices { display: flex; flex-direction: column; gap: 0; }
.kont-offices .section-hd { margin-bottom: 32px; }

.kont-office-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .2s;
}

.kont-office-card:hover { box-shadow: 0 6px 24px rgba(24,99,220,.1); }

.kont-office-card__hd {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.kont-office-card__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.kont-office-card__city {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--heading);
}

.kont-office-card__addr {
  display: block;
  font-size: var(--fs-sm);
  color: var(--body);
  margin-top: 1px;
}

.kont-office-card__map { display: block; }
.kont-office-card__map iframe { display: block; }

/* ── Form card ── */
.kont-form-col { position: sticky; top: 100px; }

.kont-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(24,99,220,.1);
  overflow: hidden;
}

.kont-form-card__hd {
  background: linear-gradient(135deg, var(--blue) 0%, #1251b5 100%);
  padding: 32px 36px 28px;
}

.kont-form-card__hd .section-hd__label {
  color: rgba(255,255,255,.65);
}

.kont-form-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 8px 0 6px;
}

.kont-form-card__sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.75);
  margin: 0;
}

.kont-form-card .contact-form-wrap {
  background: transparent;
  border-radius: 0;
  padding: 32px 36px 36px;
}

/* ── Legacy contact classes (kept for other uses) ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: var(--fs-sm);
  color: var(--body);
  transition: color var(--ease);
}

.contact-item a:hover { color: var(--blue); }

.contact-offices-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin: 28px 0 16px;
}

.contact-office {
  margin-bottom: 24px;
}

.contact-office strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-office p {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-bottom: 10px;
}

.contact-map { border-radius: var(--r); overflow: hidden; }

/* =========================================================
   Contact form
   ========================================================= */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 36px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form__field:last-child { margin-bottom: 0; }

.contact-form__row .contact-form__field { margin-bottom: 0; }

.contact-form label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: var(--fs-sm);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,99,220,.12);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-form__footer .btn {
  width: 100%;
  justify-content: center;
}

.contact-form__note {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.contact-form__msg {
  margin-top: 12px;
  font-size: var(--fs-sm);
  min-height: 20px;
}

.contact-form__msg.success { color: #2E7D32; }
.contact-form__msg.error   { color: #c62828; }

/* =========================================================
   Online consultations page
   ========================================================= */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 8px;
}

.process-step {
  text-align: center;
  max-width: 260px;
  padding: 0 24px;
}

.process-step__arrow {
  display: flex;
  align-items: center;
  color: var(--blue);
  opacity: 0.4;
  margin-top: 24px;
  flex-shrink: 0;
}

.process-step__num {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--blue-tint);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.75;
}

.konsult-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.konsult-contact-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.konsult-contact-box h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 4px;
}

.konsult-tel,
.konsult-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--blue);
  transition: opacity var(--ease);
}

.konsult-tel:hover,
.konsult-email:hover { opacity: 0.75; }

.konsult-disclaimer {
  background: var(--blue-tint);
  border-left: 3px solid var(--blue);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.7;
}

.konsult-disclaimer svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.konsult-disclaimer p { margin: 0; }

/* =========================================================
   Blog archive & single
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: flex-start;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.blog-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  border: 1.5px solid var(--border);
  color: var(--body);
  background: var(--white);
  transition: all var(--ease);
  white-space: nowrap;
}

.blog-filter__pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.blog-filter__pill--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.blog-filter__pill--active:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  color: var(--muted);
  text-align: center;
}

.blog-empty svg { opacity: .35; }
.blog-empty p { font-size: var(--fs-md); margin: 0; }

.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--body);
  transition: all var(--ease);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Sidebar ── */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.sidebar-widget__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

.sidebar-widget--cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1251b5 100%);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(24,99,220,.25);
}

.sidebar-widget--cta h3 {
  color: var(--white);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: 8px;
}

.sidebar-widget--cta p {
  color: rgba(255,255,255,.8);
  font-size: var(--fs-sm);
  margin: 0;
  line-height: 1.6;
}

.sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-cats li { border-bottom: 1px solid var(--border); }
.sidebar-cats li:last-child { border-bottom: none; }

.sidebar-cats li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--body);
  padding: 9px 0;
  transition: color var(--ease);
}

.sidebar-cats li a:hover { color: var(--blue); }
.sidebar-cats li.current-cat > a,
.sidebar-cats li.current-cat > a:hover { color: var(--blue); font-weight: var(--fw-semi); }

.sidebar-cats li a .count {
  font-size: var(--fs-xs);
  background: var(--blue-tint);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: var(--fw-semi);
}

/* ── Sidebar search form ── */
.search-form__inner {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease);
}

.search-form__inner:focus-within { border-color: var(--blue); }

.search-form__input {
  flex: 1;
  border: none;
  padding: 9px 12px;
  font-size: var(--fs-sm);
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  outline: none;
}

.search-form__input::placeholder { color: var(--muted); }

.search-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--ease);
}

.search-form__btn:hover { background: #0F4EB5; }

.sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-recent li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-recent li:last-child { border-bottom: none; }

.sidebar-recent li a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dark);
  line-height: 1.45;
  transition: color var(--ease);
}

.sidebar-recent li a:hover { color: var(--blue); }

.sidebar-recent li span {
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ── Single post hero extras ── */
.about-hero--post { padding-bottom: 80px; }

.post-hero__cat {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 16px;
  transition: background .2s;
}

.post-hero__cat:hover { background: rgba(255,255,255,.2); }

.about-hero--post .about-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.post-hero__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  color: rgba(255,255,255,.6);
  font-size: var(--fs-sm);
}

.post-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Single post article ── */
.post-article__thumb {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

.post-article__thumb img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.post-article__content {
  font-size: 1rem;
  color: #111111;
  line-height: 1.8;
}

.post-article__content h2 {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin: 32px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-tint);
  line-height: 1.35;
}

.post-article__content h3 {
  font-size: 1.075rem;
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin: 22px 0 8px;
  line-height: 1.4;
}

.post-article__content p { margin-bottom: 16px; }

.post-article__content p:last-child { margin-bottom: 0; }

.post-article__content ul,
.post-article__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-article__content ul { list-style: disc; }
.post-article__content ol { list-style: decimal; }

.post-article__content li { margin-bottom: 6px; }

.post-article__content strong { color: var(--dark); font-weight: var(--fw-semi); }

.post-article__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-article__content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  background: var(--blue-tint);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--dark);
}

/* Promotional banner block (inside post content) */
.post-article__content .lead-text {
  font-size: var(--fs-md);
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 28px;
}

.promo-banner-post {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #0B1628 0%, #112040 100%);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 32px 0 40px;
  border: 1px solid rgba(24, 99, 220, 0.25);
  box-shadow: 0 8px 32px rgba(11, 22, 40, 0.18);
}

.promo-banner-post__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blue);
  border-radius: 14px;
  padding: 18px 28px;
  flex-shrink: 0;
  min-width: 130px;
}

.promo-banner-post__amount {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.promo-banner-post__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  text-align: center;
  font-weight: var(--fw-semi);
}

.promo-banner-post__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-banner-post__text strong {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #fff !important;
}

.promo-banner-post__text span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

/* Tags */
.post-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.post-article__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--blue);
  background: var(--blue-tint);
  padding: 4px 14px;
  border-radius: 20px;
  transition: background .15s, color .15s;
}

.post-article__tag:hover { background: var(--blue); color: var(--white); }

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
}

.post-nav__link:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(24,99,220,.1);
}

.post-nav__link--next { text-align: right; }

.post-nav__dir {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
}

.post-nav__link--next .post-nav__dir { justify-content: flex-end; }

.post-nav__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dark);
  line-height: 1.4;
}

/* =========================================================
   Services page v2
   ========================================================= */

/* Service tile grid */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.srv-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.srv-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 0;
}

.srv-tile:hover::before { opacity: 1; }

.srv-tile:hover {
  box-shadow: 0 12px 40px rgba(37,99,235,.25);
  transform: translateY(-4px);
  border-color: var(--blue);
  color: var(--white);
}

.srv-tile > * { position: relative; z-index: 1; }

.srv-tile__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background var(--ease), color var(--ease);
}

.srv-tile__icon svg { width: 28px; height: 28px; }

.srv-tile:hover .srv-tile__icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.srv-tile__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  line-height: 1.35;
  display: block;
}

.srv-tile__desc {
  font-size: 0.75rem;
  color: var(--body);
  line-height: 1.5;
  display: block;
  transition: color var(--ease);
}

.srv-tile:hover .srv-tile__desc { color: rgba(255,255,255,.75); }

.srv-tile__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  margin-top: auto;
  transition: background var(--ease), color var(--ease);
}

.srv-tile:hover .srv-tile__arrow {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* Online accounting band */
.srv-online-band {
  position: relative;
  padding: var(--section-v) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  overflow: hidden;
}

.srv-online-band__overlay {
  position: absolute;
  inset: 0;
  background: url('../images/stats-bg.jpg') center/cover no-repeat;
  opacity: .08;
  pointer-events: none;
}

.srv-online-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.srv-online-band__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.srv-online-band__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.srv-online-band__text p {
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

.srv-online-band__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-online-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.srv-online-band__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  margin-top: 8px;
}

.srv-online-band__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.srv-online-band__circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.srv-online-band__svg { color: rgba(255,255,255,.6); }

.srv-online-band__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.srv-online-band__dots span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  opacity: .6;
}

.srv-online-band__dots span:nth-child(1) { top: 12%;  left: 50%; }
.srv-online-band__dots span:nth-child(2) { top: 35%;  left: 92%; }
.srv-online-band__dots span:nth-child(3) { top: 72%;  left: 85%; }
.srv-online-band__dots span:nth-child(4) { top: 88%;  left: 42%; }
.srv-online-band__dots span:nth-child(5) { top: 65%;  left: 4%;  }
.srv-online-band__dots span:nth-child(6) { top: 25%;  left: 10%; }

/* Service detail sections */
.srv-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.srv-detail--reverse { direction: rtl; }
.srv-detail--reverse > * { direction: ltr; }

.srv-detail__visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* colour variants */
.srv-detail__visual--teal   { background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); }
.srv-detail__visual--indigo { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }
.srv-detail__visual--amber  { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.srv-detail__visual--rose   { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }

/* subtle dot-grid texture overlay */
.srv-detail__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

/* radial glow from centre */
.srv-detail__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.14) 0%, transparent 65%);
  z-index: 0;
}

/* decorative concentric rings */
.srv-detail__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.srv-detail__rings::before,
.srv-detail__rings::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}

.srv-detail__rings::before { width: 200px; height: 200px; }
.srv-detail__rings::after  { width: 300px; height: 300px; }

/* centre icon */
.srv-detail__icon-wrap {
  color: rgba(255,255,255,.95);
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-detail__icon-wrap svg { width: 52px; height: 52px; stroke-width: 1.3; }

/* floating glassmorphism badges */
.srv-detail__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 40px;
  padding: 8px 16px 8px 10px;
  color: rgba(255,255,255,.95);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.srv-detail__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .85;
}

.srv-detail__badge--tl { top: 20px;    left: 20px;    }
.srv-detail__badge--tr { top: 20px;    right: 20px;   }
.srv-detail__badge--bl { bottom: 20px; left: 20px;    }
.srv-detail__badge--br { bottom: 20px; right: 20px;   }

/* srv-list reuse */
.srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--body);
}

.srv-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* =========================================================
   Online Accounting page  (page-online-schetovodstvo.php)
   ========================================================= */

/* Quick stats strip */
.ol-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.ol-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  gap: 8px;
  border-right: 1px solid var(--border);
}

.ol-stat:last-child { border-right: none; }

.ol-stat__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24, 99, 220, .08);
  color: var(--blue);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.ol-stat__val {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--heading);
  line-height: 1.2;
}

.ol-stat__lbl {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.4;
}

/* Highlight box */
.ol-highlight-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(24, 99, 220, .07);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--blue);
  margin-top: 24px;
}

.ol-highlight-box svg {
  flex-shrink: 0;
  color: var(--blue);
}

/* Checklist */
.ol-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ol-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.6;
}

.ol-check-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24, 99, 220, .1);
  color: var(--blue);
  margin-top: 1px;
}

/* Sector list */
.ol-sector-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ol-sector-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.5;
}

.ol-sector-list__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .7;
}

/* Blockquote */
.ol-blockquote {
  position: relative;
  margin: 24px 0 0;
  padding: 24px 24px 24px 64px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.ol-blockquote p {
  margin: 0;
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--heading);
  line-height: 1.6;
}

.ol-blockquote__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--blue);
  opacity: .3;
  width: 28px;
  height: 28px;
}

/* Outline light button (for dark hero) */
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .ol-stats { grid-template-columns: 1fr 1fr; }
  .ol-stat { border-bottom: 1px solid var(--border); }
  .ol-stat:nth-child(odd)  { border-right: 1px solid var(--border); }
  .ol-stat:nth-child(even) { border-right: none; }
  .ol-stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .ol-stats { grid-template-columns: 1fr; }
  .ol-stat  { border-right: none; }
  .ol-stat:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .ol-stat:last-child { border-bottom: none; }
}

/* =========================================================
   Pricing page  (page-tseni.php)
   ========================================================= */

/* Intro two-column layout */
.tseni-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.tseni-intro__text .section-hd__label { margin-bottom: 12px; }
.tseni-intro__text h2 { margin-bottom: 24px; }
.tseni-intro__text p  { color: var(--body); line-height: 1.75; margin-bottom: 14px; font-size: var(--fs-sm); }
.tseni-intro__text p:last-child { margin-bottom: 0; }

.tseni-intro__card {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.tseni-intro__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.tseni-intro__card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.tseni-intro__card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tseni-intro__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tseni-intro__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.9);
  font-weight: var(--fw-semi);
}

.tseni-intro__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
}

/* Tab switcher */
.tseni-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.tseni-tab {
  padding: 10px 32px;
  border: none;
  background: transparent;
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}

.tseni-tab.is-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(24,99,220,.35);
}

/* Panels */
.tseni-panel--hidden { display: none; }

.tseni-panel__desc {
  text-align: center;
  color: var(--body);
  font-size: var(--fs-sm);
  margin-bottom: 28px;
}

/* Card grid */
.tseni-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tseni-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.tseni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(24,99,220,.14);
}

/* Coloured top strip */
.tseni-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0%, #60a5fa 100%);
  flex-shrink: 0;
}

.tseni-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 14px 22px;
  flex: 1;
  width: 100%;
}

.tseni-card__docs {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
}

.tseni-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  justify-content: center;
}

.tseni-card__currency {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
  align-self: flex-start;
  padding-top: 4px;
}

.tseni-card__amount {
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
}

.tseni-card__bgn {
  font-size: 12px;
  font-weight: var(--fw-semi);
  color: var(--body);
  background: rgba(24,99,220,.08);
  border-radius: 100px;
  padding: 4px 12px;
}

.tseni-card__custom {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--heading);
  line-height: 1.4;
  padding: 8px 4px;
}

.tseni-card__btn {
  width: 100%;
  justify-content: center;
  font-size: 12px !important;
  padding: 10px 12px !important;
  margin-top: auto;
  border-radius: 0 0 var(--r-lg) var(--r-lg) !important;
  background: rgba(24,99,220,.06) !important;
  color: var(--blue) !important;
  border: none !important;
  border-top: 1px solid rgba(24,99,220,.1) !important;
  font-weight: var(--fw-semi) !important;
}

.tseni-card__btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

/* unused dark button kept for compat */
.btn-white-dark {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}
.btn-white-dark:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* Note */
.tseni-note {
  font-size: var(--fs-xs);
  color: var(--body);
  text-align: center;
  margin-top: 20px;
  max-width: 640px;
  margin-inline: auto;
}

/* Included grid */
.tseni-included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.tseni-included__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tseni-included__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,99,220,.08);
  border-radius: 50%;
  color: var(--blue);
}

.tseni-included__title {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--heading);
  margin-bottom: 5px;
}

.tseni-included__desc {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.55;
}

/* Европейски проекти - dark band */
.tseni-euro-band {
  position: relative;
  padding: var(--section-v) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
  overflow: hidden;
}

.tseni-euro-band__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tseni-euro-band__rings::before,
.tseni-euro-band__rings::after {
  content: '';
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

.tseni-euro-band__rings::before { width: 400px; height: 400px; }
.tseni-euro-band__rings::after  { width: 600px; height: 600px; }

.tseni-euro-band__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tseni-euro-band__dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.tseni-euro-band__dots span:nth-child(1) { top: 15%; left: 55%; }
.tseni-euro-band__dots span:nth-child(2) { top: 70%; left: 48%; }
.tseni-euro-band__dots span:nth-child(3) { top: 40%; left: 95%; }
.tseni-euro-band__dots span:nth-child(4) { top: 85%; left: 75%; }
.tseni-euro-band__dots span:nth-child(5) { top: 20%; left: 80%; }
.tseni-euro-band__dots span:nth-child(6) { top: 60%; left: 62%; }

.tseni-euro-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.tseni-euro-band__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tseni-euro-band__orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  box-shadow: 0 0 60px rgba(99,102,241,.25), inset 0 0 40px rgba(255,255,255,.04);
}

.tseni-euro-band__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}

.tseni-euro-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.tseni-euro-band__text p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 12px;
}

.tseni-euro-band__text p:last-of-type { margin-bottom: 0; }

@media (max-width: 768px) {
  .tseni-euro-band__inner  { grid-template-columns: 1fr; gap: 36px; }
  .tseni-euro-band__visual { display: none; }
}

/* Свободни професии - 2-card centered grid */
.tseni-svobodni {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

/* ── Свободни професии plan cards ── */
.svobodna-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 48px auto 0;
}

.svobodna-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}

.svobodna-card:hover {
  box-shadow: 0 8px 32px rgba(24,99,220,.12);
  transform: translateY(-3px);
}

.svobodna-card--featured {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(24,99,220,.14);
}

.svobodna-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.svobodna-card__hd {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.svobodna-card__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.svobodna-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.svobodna-card__eur {
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
}

.svobodna-card__period {
  font-size: var(--fs-sm);
  color: var(--body);
}

.svobodna-card__bgn {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-top: 6px;
}

.svobodna-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.svobodna-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.55;
}

.svobodna-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 5px;
}

.svobodna-card .btn { text-align: center; justify-content: center; }

/* Допълнителни услуги table */
.tseni-extra-wrap { margin-top: 48px; }

.tseni-extra {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.tseni-extra thead th {
  background: var(--blue);
  color: var(--white);
  font-weight: var(--fw-semi);
  text-align: left;
  padding: 14px 20px;
  font-size: var(--fs-xs);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tseni-extra thead th:last-child { text-align: right; border-radius: 0 var(--r-sm) 0 0; }
.tseni-extra thead th:first-child { border-radius: var(--r-sm) 0 0 0; }

.tseni-extra tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.tseni-extra tbody tr:last-child { border-bottom: none; }
.tseni-extra tbody tr:hover { background: rgba(24,99,220,.04); }

.tseni-extra td {
  padding: 13px 20px;
  color: var(--body);
  vertical-align: middle;
}

.tseni-extra__price {
  text-align: right;
  font-weight: var(--fw-semi);
  color: var(--heading);
  white-space: nowrap;
}

/* ТРЗ section */
.tseni-trz {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tseni-trz__card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.tseni-trz__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,99,220,.08);
  border-radius: 50%;
  color: var(--blue);
}

.tseni-trz__body { flex: 1; }

.tseni-trz__label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 6px;
}

.tseni-trz__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tseni-trz__eur {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
}

.tseni-trz__sep {
  color: var(--muted);
  font-size: var(--fs-md);
}

.tseni-trz__bgn {
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  color: var(--heading);
}

.tseni-trz__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  font-size: var(--fs-xs);
  color: var(--body);
  line-height: 1.6;
}

.tseni-trz__note svg {
  flex-shrink: 0;
  color: #d97706;
  margin-top: 1px;
}

.tseni-sub-hd {
  margin-top: 56px;
  margin-bottom: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.tseni-sub-hd h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin-bottom: 6px;
}

.tseni-sub-hd p {
  color: var(--body);
  margin: 0;
}

.tseni-def-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(24,99,220,.05);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 20px;
  margin-top: 20px;
}

.tseni-def-note__icon {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.tseni-def-note p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.65;
}

.tseni-def-note p + p { margin-top: 6px; }

.tseni-def-note strong { color: var(--dark); }


/* =========================================================
   GDPR / Privacy Policy page
   ========================================================= */
.gdpr-section { background: var(--light); }

.gdpr-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── TOC ── */
.gdpr-toc__inner {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.gdpr-toc__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
}

.gdpr-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.gdpr-toc__list li {
  counter-increment: toc;
  margin-bottom: 4px;
}

.gdpr-toc__list li a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .875rem;
  color: var(--body);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  line-height: 1.4;
}

.gdpr-toc__list li a::before {
  content: counter(toc) ".";
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: var(--fw-semi);
  color: var(--blue);
  min-width: 18px;
}

.gdpr-toc__list li a:hover {
  background: rgba(29,78,216,.06);
  color: var(--blue);
}

/* ── Body ── */
.gdpr-intro-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(29,78,216,.06) 0%, rgba(29,78,216,.02) 100%);
  border: 1px solid rgba(29,78,216,.15);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.gdpr-intro-card svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.gdpr-intro-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--dark);
}

/* ── Content typography ── */
.gdpr-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.gdpr-content h2 {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin: 32px 0 10px;
  padding: 11px 18px;
  background: rgba(29,78,216,.04);
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  scroll-margin-top: 100px;
  line-height: 1.4;
}

.gdpr-content h2:first-child { margin-top: 0; }

.gdpr-content h3 {
  font-size: .9rem;
  font-weight: var(--fw-semi);
  color: var(--blue);
  margin: 20px 0 6px;
  padding-left: 10px;
  border-left: 2px solid rgba(29,78,216,.3);
  scroll-margin-top: 100px;
  line-height: 1.4;
}

.gdpr-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.gdpr-content p:last-child { margin-bottom: 0; }

.gdpr-content ul,
.gdpr-content ol {
  margin: 6px 0 14px 18px;
}

.gdpr-content li {
  font-size: .9rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.gdpr-content strong { color: var(--dark); font-weight: var(--fw-semi); }

.gdpr-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .gdpr-layout { grid-template-columns: 1fr; }
  .gdpr-toc__inner { position: static; }
}

@media (max-width: 768px) {
  .gdpr-content { padding: 28px 24px; }
  .gdpr-intro-card { flex-direction: column; gap: 10px; padding: 20px; }
}

/* =========================================================
   Online Consultations page
   ========================================================= */
.konsult-section { background: #f5f7fa; }

/* Intro */
.konsult-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.konsult-intro__title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 18px;
}

.konsult-intro__text {
  font-size: var(--fs-base);
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 10px;
}

/* Form card */
.konsult-form-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}

/* Grid 2 cols */
.konsult-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.konsult-form__field { display: flex; flex-direction: column; gap: 6px; }
.konsult-form__field--full { margin-bottom: 20px; }

.konsult-form__field label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
}

.konsult-form__field input,
.konsult-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: var(--fs-base);
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}

.konsult-form__field input:focus,
.konsult-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}

.konsult-form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.konsult-form__gdpr {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.konsult-form__gdpr a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.konsult-form__submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: var(--fs-base);
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .konsult-form-card { padding: 32px 24px; }
  .konsult-form__grid { grid-template-columns: 1fr; }
}


/* =========================================================
   Promo tab + modal
   ========================================================= */

/* ── Tab ── */
.promo-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  cursor: pointer;
  outline: none;
  isolation: isolate;
}

.promo-tab__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: linear-gradient(160deg, #1a3060 0%, #0B1628 100%);
  color: #fff;
  padding: 18px 10px 14px;
  border-radius: 0 14px 14px 0;
  box-shadow: 4px 0 24px rgba(11, 22, 40, 0.5), 0 0 0 1px rgba(24,99,220,0.3) inset;
  width: 64px;
  text-align: center;
  transition: width 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.promo-tab:hover .promo-tab__inner,
.promo-tab:focus-visible .promo-tab__inner {
  width: 72px;
  box-shadow: 6px 0 32px rgba(11, 22, 40, 0.6), 0 0 0 1px rgba(24,99,220,0.45) inset;
}

/* Pulsing dot */
.promo-tab__dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 11px;
  height: 11px;
  background: #f59e0b;
  border-radius: 50%;
  border: 2px solid #0B1628;
  animation: promoDotPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes promoDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.promo-tab__promo {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 2px;
}

.promo-tab__price {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.promo-tab__price span {
  font-size: 13px;
  font-weight: 700;
  color: #f59e0b;
  vertical-align: super;
  letter-spacing: 0;
}

.promo-tab__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  text-align: center;
  margin-top: 3px;
  word-break: break-word;
}

.promo-tab__arrow {
  margin-top: 7px;
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.promo-tab:hover .promo-tab__arrow,
.promo-tab:focus-visible .promo-tab__arrow {
  opacity: 0.85;
  transform: translateX(2px);
}

/* ── Modal: hidden by default via CSS, shown with class ── */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;            /* JS adds .promo-modal--open to show */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.promo-no-scroll { overflow: hidden; }

.promo-modal--open {
  display: flex;
  animation: promoFadeIn 0.25s ease both;
}

.promo-modal--closing {
  display: flex;
  animation: promoFadeOut 0.25s ease both;
}

@keyframes promoFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes promoFadeOut { from { opacity: 1; } to { opacity: 0; } }

.promo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 28, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Modal box ── */
.promo-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(7, 14, 28, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: promoBoxIn 0.28s cubic-bezier(0.34,1.4,0.64,1) both;
}

.promo-modal--closing .promo-modal__box {
  animation: promoBoxOut 0.22s ease both;
}

@keyframes promoBoxIn  { from { transform: scale(0.88) translateY(24px); opacity: 0; } to  { transform: scale(1) translateY(0); opacity: 1; } }
@keyframes promoBoxOut { from { transform: scale(1) translateY(0); opacity: 1; } to  { transform: scale(0.94) translateY(12px); opacity: 0; } }

/* Close button */
.promo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}

.promo-modal__close:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Dark top section */
.promo-modal__top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f1f3d 0%, #0B1628 60%, #0a1220 100%);
  padding: 40px 36px 36px;
  text-align: center;
}

.promo-modal__top-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(24,99,220,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.promo-modal__badge {
  display: inline-block;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #7c2d00;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.promo-modal__amount {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 10px;
}

.promo-modal__amount span {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.75);
  vertical-align: super;
  margin-left: 4px;
}

.promo-modal__note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin: 0;
}

/* White bottom section */
.promo-modal__body {
  background: #fff;
  padding: 30px 36px 32px;
}

.promo-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 20px;
}

.promo-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.promo-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
}

.promo-modal__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--blue-tint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231863DC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.promo-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1863DC, #0F4DB5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(24,99,220,0.35);
  margin-bottom: 18px;
}

.promo-modal__btn:hover {
  opacity: 0.92;
  box-shadow: 0 8px 28px rgba(24,99,220,0.45);
  transform: translateY(-1px);
}

.promo-modal__tagline {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* ── Mobile: bottom bar ── */
@media (max-width: 768px) {
  .promo-tab {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
  }

  .promo-tab__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border-radius: 0;
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(11, 22, 40, 0.4);
  }

  .promo-tab__promo { display: none; }

  .promo-tab__price { font-size: 22px; }

  .promo-tab__label {
    font-size: 11px;
    margin-top: 0;
    color: rgba(255,255,255,0.8);
    word-break: normal;
  }

  .promo-tab__arrow { margin-top: 0; }

  .promo-tab__dot {
    position: static;
    flex-shrink: 0;
  }

  .promo-tab:hover .promo-tab__inner,
  .promo-tab:focus-visible .promo-tab__inner { width: 100%; }

  .promo-modal__box { border-radius: 18px; }
  .promo-modal__top { padding: 32px 28px 28px; }
  .promo-modal__body { padding: 24px 28px 26px; }
  .promo-modal__amount { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════
   Contact Widget - floating launcher (bottom-left)
   ═══════════════════════════════════════════════════════════ */

.cw-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ── Channels list ── */
.cw-widget__channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

/* ── Single channel row ── */
.cw-widget__item {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.cw-widget--open .cw-widget__item {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Stagger: bottom item appears first (closest to trigger) */
.cw-widget--open .cw-widget__item:nth-child(1) { transition-delay: 0.16s; }
.cw-widget--open .cw-widget__item:nth-child(2) { transition-delay: 0.12s; }
.cw-widget--open .cw-widget__item:nth-child(3) { transition-delay: 0.08s; }
.cw-widget--open .cw-widget__item:nth-child(4) { transition-delay: 0.04s; }
.cw-widget--open .cw-widget__item:nth-child(5) { transition-delay: 0s; }

/* ── Label - absolute tooltip, appears to right of button on hover ── */
.cw-widget__label {
  position: absolute;
  left: 58px;
  background: rgba(15, 20, 40, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 5px 12px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.cw-widget__item:hover .cw-widget__label {
  opacity: 1;
  transform: translateX(0);
}

/* ── Channel circle button ── */
.cw-widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cw-widget__btn svg {
  width: 22px;
  height: 22px;
}

.cw-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.32);
}

/* ── Main trigger ── */
.cw-widget__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1863DC;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(24,99,220,.5);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  position: relative;
  flex-shrink: 0;
}

.cw-widget__trigger:hover {
  background: #0F4EB5;
  box-shadow: 0 8px 28px rgba(24,99,220,.6);
  transform: scale(1.06);
}

.cw-widget__trigger:active { transform: scale(0.96); }

/* Pulse ring (idle) */
.cw-widget__trigger::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(24,99,220,.4);
  animation: cw-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

.cw-widget--open .cw-widget__trigger::after { animation: none; opacity: 0; }

@keyframes cw-pulse {
  0%   { transform: scale(0.85); opacity: 0.8; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── Icon swap ── */
.cw-widget__trigger .cw-icon-open,
.cw-widget__trigger .cw-icon-close {
  position: absolute;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.cw-widget__trigger .cw-icon-close {
  opacity: 0;
  transform: rotate(-80deg) scale(0.6);
}

.cw-widget--open .cw-widget__trigger .cw-icon-open {
  opacity: 0;
  transform: rotate(80deg) scale(0.6);
}

.cw-widget--open .cw-widget__trigger .cw-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .cw-widget { bottom: 16px; left: 16px; }
  .cw-widget__label { display: none; }
  .cw-widget__btn { width: 44px; height: 44px; }
  .cw-widget__trigger { width: 52px; height: 52px; }
}

/* Lift contact widget above promo tab on mobile */
@media (max-width: 768px) {
  .has-promo-tab .cw-widget { bottom: calc(72px + 16px); }
}

/* ═══════════════════════════════════════════════════════════
   Cookie Consent Banner
   ═══════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9200;
  background: #0d1a32;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.cookie-banner--visible { transform: translateY(0); }
.cookie-banner--hiding  { transform: translateY(100%); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}

.cookie-banner__more {
  color: #6ea8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
  white-space: nowrap;
}

.cookie-banner__more:hover { color: #fff; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: #1863DC;
  border: 1.5px solid #1863DC;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #0F4EB5;
  border-color: #0F4EB5;
}

.cookie-banner__btn--decline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   404 Page
   ═══════════════════════════════════════════════════════════ */

.not-found {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.not-found__search { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.not-found__search-label,
.not-found__links-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}

.not-found__search .search-form { width: 100%; max-width: 440px; }
.not-found__search .search-form__inner { border-radius: 10px; }
.not-found__search .search-form__input { padding: 12px 16px; font-size: 15px; }
.not-found__search .search-form__btn { width: 52px; }

.not-found__links { display: flex; flex-direction: column; gap: 16px; }

.not-found__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.not-found__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
  transition: all var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.not-found__card svg { color: var(--blue); transition: transform var(--ease); }

.not-found__card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(24,99,220,.12);
  color: var(--blue);
  transform: translateY(-2px);
}

.not-found__card:hover svg { transform: scale(1.1); }

@media (max-width: 600px) {
  .not-found__grid { grid-template-columns: repeat(2, 1fr); }
}
