@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

/* Basic reset and base settings */
:root {
  /* Palette from provided design */
  --gray-dark: #666666;
  --white: #ffffff;
  --teal: #009999;
  --light-gray: #d9d9d9;
  --light-gray-rgb: 217, 217, 217;
  --teal-dark: #0b6565;
  --teal-bright: #10b3b3;
  --offwhite: #fefffc;
  --faint: #f5f5f5;
  --offwhite-light: #fffeeb;

  /* Convenience variables */
  --primary: var(--teal-dark);
  --accent: var(--teal-bright);
  --text: var(--gray-dark);
  --muted: rgba(102, 102, 102, 0.7);
  --muted-50: rgba(102, 102, 102, 0.5);
  --muted-10: rgba(102, 102, 102, 0.1);
  --light-gray-30: rgba(217, 217, 217, 0.3);

  --bg: var(--white);
  --max-width: 1180px;
  --container-padding: 15px;

  /* === Aumet-style redesign tokens (added in етап 11.A) === */
  /* Виж docs/tasks.md → задача #11. Тези токени се ползват от новите секции
     с префикс .ax-* и НЕ заменят съществуващите стилове. */

  /* Surfaces & text */
  --ax-navy: #0f172a;            /* Aumet тип тъмен текст за заглавия */
  --ax-navy-soft: #1e293b;       /* По-меко за подзаглавия */
  --ax-text: #475569;            /* Body текст */
  --ax-text-muted: #64748b;      /* Помощен текст */
  --ax-surface: #ffffff;         /* Основен фон */
  --ax-surface-alt: #f8fafc;     /* Алтернативен фон на секции */
  --ax-border: #e2e8f0;          /* Леки граници на карти */

  /* Accent — оставяме UniRx teal палитрата като основен акцент */
  --ax-accent: var(--teal);
  --ax-accent-dark: var(--teal-dark);
  --ax-accent-soft: rgba(0, 153, 153, 0.08);

  /* Spacing scale (за секции и карти) */
  --ax-space-1: 8px;
  --ax-space-2: 16px;
  --ax-space-3: 24px;
  --ax-space-4: 32px;
  --ax-space-5: 48px;
  --ax-space-6: 64px;
  --ax-space-7: 96px;            /* Голям section padding */

  /* Border radius scale */
  --ax-radius-sm: 6px;
  --ax-radius-md: 12px;
  --ax-radius-lg: 20px;
  --ax-radius-pill: 999px;

  /* Shadows за карти */
  --ax-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --ax-shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 10px 15px rgba(15, 23, 42, 0.08);
  --ax-shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.10), 0 20px 40px rgba(15, 23, 42, 0.10);

  /* Typography scale */
  --ax-fs-display: clamp(40px, 5vw, 64px);  /* H1 в hero */
  --ax-fs-h2: clamp(28px, 3.2vw, 42px);     /* Section заглавия */
  --ax-fs-h3: clamp(22px, 2vw, 28px);       /* Card заглавия */
  --ax-fs-lead: 20px;                       /* Уводен параграф */
  --ax-fs-body: 16px;                       /* Body */
  --ax-fs-small: 14px;                      /* Малък текст */

  /* Container width — съвместим с UniRx, но малко по-широк за hero */
  --ax-max-width: 1200px;
}

/* === Помощни класове за новите секции === */
.ax-container {
  max-width: var(--ax-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.ax-section {
  padding: var(--ax-space-7) 0;
}
.ax-section--alt {
  background: var(--ax-surface-alt);
}
.ax-eyebrow {
  display: inline-block;
  font-size: var(--ax-fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ax-accent);
  margin-bottom: var(--ax-space-2);
}
.ax-h2 {
  font-size: var(--ax-fs-h2);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ax-navy);
  margin: 0 0 var(--ax-space-3);
}
.ax-lead {
  font-size: var(--ax-fs-lead);
  line-height: 1.5;
  color: var(--ax-text);
  margin: 0 0 var(--ax-space-4);
}
.ax-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--ax-space-1);
  height: 52px;
  padding: 0 var(--ax-space-3);
  border-radius: var(--ax-radius-sm);
  font-size: var(--ax-fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
}
.ax-btn--primary {
  background: var(--ax-accent);
  color: var(--white);
}
.ax-btn--primary:hover {
  background: var(--ax-accent-dark);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-1px);
}
.ax-btn--ghost {
  background: transparent;
  color: var(--ax-navy);
  border: 1px solid var(--ax-border);
}
.ax-btn--ghost:hover {
  background: var(--ax-accent-soft);
  color: var(--ax-accent-dark);
  text-decoration: none;
}
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Alexandria",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;  /* `clip` вместо `hidden` — не чупи position:sticky. Виж .ax-card. 2026-05-16 */
}

html {
  overflow-x: clip;  /* `clip` вместо `hidden` — не чупи position:sticky на потомци (виж .ax-card). 2026-05-16 */
}

/* layout helpers */
.container.sitecontainer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.text-center {
  text-align: center;
}
.m-t-40 {
  margin-top: 40px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-t-60 {
  margin-top: 60px;
}
.p-t-40 {
  padding-top: 40px;
}

/* Headline styles - removed duplicate, consolidated below */

.section-title {
  font-size: 35px;
  line-height: 28px;
  font-weight: 700;
}
/* Hero */
.hero-section-home {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}
/* Info section */
.info-section {
  padding: 75px 0;
}
.info-section h2 {
  margin-top: 0;
}
.info-section p {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 28px;
  font-weight: 300;
  color: var(--text);
}
.info-section .hero-title {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 48px;
  margin-top: 0;
  color: var(--teal-bright);
  font-weight: 200;
}

@media (max-width: 768px) {
  .info-section {
    padding: 50px 0 28px;
  }
  .info-section h2 {
    margin-bottom: 38px;
    text-align: center;
  }
  .info-section p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 22px;
  }
  .info-section .hero-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
  }
  .info-section .btn {
    margin: 0 auto;
  }
}
/* Features */

.features-section {
  background: var(--faint);
}
.feature-card {
  background: var(--faint);
  /* padding: 30px 20px; */
  border-radius: 6px;
  min-height: 160px;
  position: relative;
}

.v-title {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  writing-mode: horizontal-tb;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
}
.v-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 20px;
  color: var(--teal-dark);
}
.v-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;

  /* transform: translateX(-50%); */
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(6, 30, 30, 0.06);
  text-decoration: none;

  /* transition: box-shadow 0.3s ease; */
}

.feature-card .v-arrow svg {
  width: 18px;
  height: 18px;
}

.v-arrow {
  transition: color 1s ease;
}
.feature-card:hover .v-arrow {
  background: var(--teal);
  color: var(--white);
}
.feature-card.active .v-arrow {
  right: -17px;
  background: var(--teal);
  color: var(--white);
}

/* Features layout: title + body structure. Titles get the colored background per column; bodies are collapsed by default.
   JS may toggle `.feature-card.active` to expand a body (flex-grow + max-width unset). */
.features-container {
  display: flex;
  gap: 2px;
  align-items: stretch;
  overflow-x: hidden;
}

.features-section .feature-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;

  cursor: pointer;
  background: transparent;
  box-sizing: border-box;
  flex: 0 0 180px;
  height: 570px;
  transition:
    flex-grow 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    flex-basis 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.features-section .feature-card.active {
  flex: 1 1 180px;
}
.feature-card_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 18px 12px;
  min-width: 180px;
  box-sizing: border-box;
  position: relative;
  background-image: url("/assets/img/cloud_icon.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 85px;
  border-radius: 6px;
}
.feature-card_title {
  background-color: var(--teal-bright);
}
.feature-card.active .feature-card_title {
  background-color: var(--teal-dark);
}

.feature-card_body {
  /* smooth left-to-right text reveal */
  max-width: 0;
  flex: 0 0 0;
  overflow: hidden;
  padding-left: 0;
  box-sizing: border-box;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition:
    max-width 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s,
    padding-left 0.32s ease 0.1s;
}
.feature-card.active .feature-card_body {
  max-width: 100%;
  flex: 1 1 auto;
  /* white-space: normal; */
}
.feature-card_content {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 100%;
  min-height: max-content;
}
.feature-card_text {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
  white-space: normal;
  text-align: center;
}
.feature-card_text p:not(:last-child) {
  margin-bottom: 20px;
}
.feature-card_image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .features-section {
    padding: 30px 0;
  }
  /* Vertical accordion for mobile */
  .features-container {
    flex-direction: column;
    gap: 8px;
    overflow-x: visible;
  }

  .features-section .feature-card {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 60px;
    flex-direction: column;
    overflow: visible;
  }

  .features-section .feature-card.active {
    flex: 0 0 auto;
    height: auto;
  }

  .feature-card_title {
    min-width: auto;
    padding: 16px;
    height: 80px;
    background-position: bottom left;
    background-size: 115px 55px;
    margin: 0 16px;
  }

  .v-title {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;

    font-size: 16px;
  }
  .v-arrow {
    bottom: 50%;
    transform: translateY(50%);
  }
  .feature-card.active .v-arrow {
    right: -8px;
  }

  .feature-card_body {
    max-height: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
    white-space: normal;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 0.32s ease 0.1s,
      padding 0.32s ease;
  }

  .feature-card.active .feature-card_body {
    max-height: 1000px;
    padding: 16px;
    opacity: 1;
  }

  .feature-card.active .feature-card_body {
    padding: 16px;
    max-width: 100%;
  }

  .feature-card_content {
    padding: 0;
    gap: 35px;
  }

  .feature-card_image {
    max-width: 150px;
  }
  .feature-card_text {
    font-size: 18px;
    line-height: 22px;
  }
}

.news-header {
  display: flex;
  justify-content: space-between;

  align-items: center;
  margin-bottom: 34px;
}
.news-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  line-height: 28px;
  font-weight: 300;
}
.see-all {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  color: var(--text);
  transition: color 0.3s ease;
  text-decoration: none;
}
.see-all:hover {
  color: var(--teal);
  text-decoration: none;
  svg path {
    fill: var(--teal);
  }
}

/* News */
.row-news {
  display: flex;
  align-items: end;
}
.news-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  min-height: 480px;
}
.news-card:hover {
  text-decoration: none;
}

.news-card h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 56px; /* keeps layout consistent with 2 lines */
  height: 100%;
}
.news-card p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.news-card:hover h3 {
  color: var(--teal);
}
.news-card img {
  width: 100%;
  height: 365px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center center;
}

.row-news .see-all {
  margin-bottom: 60px;
}
.news-pages {
  margin-bottom: 0;
}
.news-pages span {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .row-news {
    flex-direction: column-reverse;
    /* gap: 30px; */
  }
  .news-card {
    min-height: auto;
    /* margin-bottom: 40px; */
  }
  .news-card img {
    height: 280px;
  }
  .row-news .see-all {
    justify-content: center;
    margin-bottom: 0px;
  }
}
/* Clients / slider */
.clients-wrap {
  overflow: hidden;
}

.clients-wrap .see-all {
  justify-content: center;
  margin: 40px auto;
}
.ourClients {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  text-align: center;
}
.ourClients li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}
.ourClients img {
  max-height: 120px;
  opacity: 0.95;
  filter: grayscale(0.02);
}

/* CTA */
.cta-block {
  position: relative;
}
.cta-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-input {
  display: inline-block;
  width: 60%;
  max-width: 420px;
}

/* Logo */
.logo-large {
  max-width: 320px;
  height: auto;
}

.btn,
.feature-card,
.ourClients img {
  transition:
    transform 0.36s cubic-bezier(0.22, 0.9, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 0.9, 0.36, 1),
    filter 0.28s ease,
    opacity 0.36s ease;
}
.btn.btn-primary {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--teal-dark);
  box-shadow: 0 6px 18px rgba(6, 30, 30, 0.08);
}
.btn-demo:hover,
.btn-demo:focus {
  background: var(--teal-dark);
  box-shadow: 0 6px 18px rgba(6, 30, 30, 0.12);
}

/* .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(13, 20, 20, 0.06);
  border-color: var(--light-gray-30);
} */
.feature-link:hover {
  color: var(--accent);
}

/* .ourClients img:hover {
  transform: scale(1.06);
  filter: none;
  opacity: 1;
} */

.news-title a {
  color: var(--text);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--light-gray-30);
  outline-offset: 2px;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Header: override Bootstrap and use flex layout (moved from custom.css) */
header {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px;
  height: 88px;
}
.logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 64px;
  display: block;
}
/* Махаме browser focus outline-а на логото при клик/tab. Override на bootstrap a:focus. */
.logo-navigation,
.logo-navigation:focus,
.logo-navigation:active,
.logo-navigation:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  -webkit-tap-highlight-color: transparent;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.site-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-menu li {
  display: inline-block;
}
.site-menu li a {
  position: relative;
  color: #334155;
  text-decoration: none;
  padding: 6px 0;
  font-family: "Manrope", "Alexandria", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: color 0.18s ease;
}
.site-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #0d9488;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-menu li a:hover {
  color: #0d9488;
  text-decoration: none;
}
.site-menu li a:hover::after {
  transform: scaleX(1);
}
.site-menu li.active a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 700;
}
.site-menu li.active a::after {
  transform: scaleX(1);
}

.header-actions {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-toggle .menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  /* margin: 4px 0; */
  transition: all 0.3s;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.demo-btn {
  background: linear-gradient(100deg, #0b3d40, #11595d);
  color: #d1fae5;
  padding: 0 22px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 34px -12px rgba(11, 61, 64, 0.5);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.demo-btn::after {
  content: "→";
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.demo-btn:hover {
  text-decoration: none;
  color: #d1fae5;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(11, 61, 64, 0.6);
}
.site-menu li.header-social {
  display: none;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
    width: 45px;
    height: 45px;
    order: 1;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    transition: all 0.3s ease;
    border-radius: 4px;
  }
  .menu-toggle.open {
    background: var(--teal);
    .menu-bar {
      background: var(--white);
    }
    .menu-bar:nth-child(2) {
      width: 24px;
    }
  }

  .demo-btn {
    height: 45px;
    margin-left: auto;
    span {
      display: none;
    }
  }
  .site-header .header-inner {
    padding: 12px 12px;
    height: 69px;
    gap: 12px;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 69px;
    background: var(--white);
    /* keep element in flow but hidden via max-height/opacity for smooth animation */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px 20px;

    z-index: 1000;
    color: var(--text);
    text-align: center;
    overflow: hidden;
    max-height: 0; /* collapsed */
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 360ms ease,
      opacity 240ms ease;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
  }
  .site-nav.open {
    max-height: 520px; /* large enough to show menu contents */
    opacity: 1;
    pointer-events: auto;
  }
  .site-menu {
    flex-direction: column;
    gap: 0px;
    width: 100%;
  }
  .site-menu li {
    width: 100%;
  }
  .site-menu li a {
    display: block;
    width: 100%;
    padding: 8px 6px;
  }
  .site-menu li.header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .site-menu li.header-social a {
    width: fit-content;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 48px;
  }
}

/* Keep page content visible below fixed header */
#wrapper {
  padding-top: 89px;
}

@media (max-width: 991px) {
  #wrapper {
    padding-top: 69px;
  }
}
.footer {
  margin-top: 80px;
}
.footer-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  height: auto;
  margin-bottom: 50px;
  .demo-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
  }
  .hero-img {
    height: 100%;
  }
}
@media (max-width: 480px) {
  .footer-banner {
    height: 300px;
    margin-bottom: 32px;
  }
}

.form-newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 110px;
}
.form-newsletter p {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.form-newsletter input,
input.form-control,
textarea.form-control {
  flex: 1 1 auto;
  min-width: 220px;
  height: 60px;
  padding: 0 12px;
  font-size: 18px;
  border: 1px solid rgba(var(--light-gray-rgb), 0.7);
  background-color: rgba(var(--light-gray-rgb), 0.3);
  border-radius: 4px;
  color: var(--text);
  transition: all 0.3s ease;
  &:focus {
    outline: none;
    border: 1px solid rgba(var(--light-gray-rgb), 1);
    background-color: rgba(var(--light-gray-rgb), 0.7);
  }
}
.form-newsletter button {
  flex: 0 0 auto;
  height: 60px;
  width: fit-content;
  padding: 0 24px;
  font-size: 18px;
  border: none;
  background-color: var(--light-gray);
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  &:hover {
    background-color: var(--text);
    color: var(--light-gray);
  }
}

@media (max-width: 768px) {
  .form-newsletter {
    flex-direction: column;
    gap: 10px;
  }
  .form-newsletter input,
  input.form-control {
    width: 100%;
  }
}
.footer-logo {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
  .logo-img {
    height: 68px;
    margin-bottom: 40px;
  }
  .header-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    svg {
      width: 48px;
      height: 48px;
    }
    svg path {
      transition: all 0.3s ease;
    }
    a:hover svg path:first-child {
      fill: var(--teal-dark);
    }
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

  gap: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;

  a {
    color: var(--text);
    &:hover {
      text-decoration: underline;
      text-underline-offset: 6px;
      color: var(--teal);
    }
  }
}
.copyright {
  font-size: 18px;
  color: var(--white);
  padding: 30px 0;
  background: var(--teal);
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 26px;
    margin-bottom: 200px;
  }
  .copyright {
    text-align: center;
  }
}

.action-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px; /* default, ще се override-ва */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1000;

  /* smoother movement when `bottom` is changed by JS */
  transition:
    bottom 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);

  &.is-visible .move-to-top {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .move-to-top {
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 320ms ease,
      transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      background-color 250ms ease;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #1f2a2a;
    border: none;
    cursor: pointer;
    outline: none;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    &:hover {
      background-color: var(--teal-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    }
  }
  &.is-visible .move-to-top:hover {
    transform: translateY(-3px);
  }
  .call-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--text);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition:
      transform 280ms ease,
      background-color 200ms ease;
    &:hover {
      background-color: var(--teal-dark);
      transform: translateY(-3px);
    }
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 100px 0 120px;
}
.hero-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: var(--teal);
  border-radius: 5px;
  overflow: hidden;
  z-index: -1;
}
.hero-img-container {
  position: absolute;
  width: 60%;
  right: 0;
  top: 0;
  height: 100%;
}
.hero-text {
  max-width: 350px;
  height: 100%;
  color: var(--white);
  h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 200;
    margin-bottom: 38px;
    margin-top: 0;
  }
  p {
    font-size: 27px;
    line-height: 35px;
    font-weight: 300;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding-top: 170px;
    padding-bottom: 0;
  }
  .hero-section.hero-products {
    padding-top: 225px;
  }

  .hero-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    right: auto;
    top: auto;
    img.hero-img {
      height: 100%;
    }
  }
  .hero-products .hero-img-container {
    height: 330px;
  }
  /* .hero-banner {
    height: fit-content;
  } */
  .hero-text {
    background: var(--teal);
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 5px;
    margin: 0 15px;
    min-height: 150px;
    position: relative;
    z-index: 10;
    h1 {
      font-size: 50px;
      margin-bottom: 5px;
    }
    p {
      font-size: 18px;
      line-height: 22px;
      margin-bottom: 0;
    }
  }
}

.hero-section + section {
  margin-top: -90px;
  background: var(--faint);
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-section + section {
    margin-top: -40px;
  }
}

.hero-section.hero-products + section {
  margin-top: -60px;
}
@media (max-width: 768px) {
  .hero-section.hero-products + section {
    margin-top: -80px;
  }
}

.section-content {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section-content {
    padding: 60px 0 40px;
  }
}

.section-content.pricing-content {
  padding-top: 40px;
  padding-bottom: 95px;
}
.pricing-content .section-header {
  max-width: 1045px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 25px;
  p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--text);
  }
  h2 {
    margin: 0;
    font-size: 40px;
    line-height: 70px;
    font-weight: 200;
    color: var(--teal);
  }
}
/* ===== PRICING LAYOUT ===== */
.row.pricing {
  padding: 0 60px;
}

/* ===== CARD BASE ===== */
.pricing-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

/* ===== HEADER ===== */
.pricing-header {
  background: var(--teal);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  position: relative;
}

.pricing-card.standard .pricing-header {
  background: var(--teal);
}
.pricing-card.plus .pricing-header {
  background: var(--teal-dark);
}
.pricing-header img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  object-fit: cover;
  z-index: 0;
}
.pricing-header h3 {
  margin: 0;
  font-size: 35px;
  line-height: 70px;
  font-weight: 200;
  z-index: 1;
  position: relative;
  strong {
    font-weight: 700;
  }
}

.pricing-header p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 300;
  margin: 0;
  z-index: 1;
  position: relative;
}

/* ===== PLUS PACKAGE ===== */

/* .pricing-card.plus .pricing-header {
  background: #0a6d69;
} */

/* Hover highlight only for Plus */
.pricing-card.plus:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.pricing-card.plus:hover .pricing-header {
  background: #084f4c;
}

/* ===== SECTIONS ===== */
.pricing-card {
  background: var(--offwhite-light); /* light cream */
}
.pricing-card.plus {
  background: var(--white);
}

.pricing-section-header {
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.pricing-section h4 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

/* ===== LIST ===== */
.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 20px 40px 20px 115px;
}

.pricing-section li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  display: flex;
  align-items: center;
  padding: 0;
}

/* ===== BUTTON ===== */
.btn-pricing {
  line-height: 50px;
  font-size: 24px;
  font-weight: 300;
  border-radius: 3px;
  background: var(--teal);
  color: #ffffff;
  padding: 0 51px;
  margin: 20px auto 50px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-pricing:hover,
.btn-pricing:focus {
  background: var(--teal-dark);
  color: #ffffff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .pricing-card {
    margin-bottom: 40px;
  }

  .pricing-card.plus {
    transform: none;
  }
}

/* ===== ICONS ===== */
.pricing-section li::before {
  content: url(/assets/img/ok-icon.svg);
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.pricing-section li.no::before {
  content: url(/assets/img/no-icon.svg);
}

.pricing-card {
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .row.pricing {
    padding: 0;
  }
  .section-content.pricing-content {
    padding: 80px 0 60px;
  }

  .pricing-content .section-header {
    gap: 16px;
    h2 {
      font-size: 32px;
    }
  }
  .pricing-section-header {
    min-height: 60px;
  }
  .pricing-section-header img {
    width: 56px;
  }

  .pricing-section ul {
    padding: 30px;
  }
  .pricing-section li {
    font-size: 17px;
    line-height: 30px;
  }
}

.clients-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

/* item */
.client-item {
  display: flex;
  align-items: center;
  gap: 154px;
  position: relative;
  padding-bottom: 63px;
  margin-bottom: 63px;
}
.client-item:last-child {
  margin-bottom: 0;
}
/* icon */
.client-icon {
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.client-icon img {
  width: 164px;
  height: 164px;
  object-fit: contain;
}

/* content */
.client-content {
  padding-left: 20px;
}

.client-content h2 {
  margin: 0 0 28px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: var(--text);
}

.client-content p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text);
}
.client-asset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  border-bottom: 1px solid var(--muted-10);
  display: flex;
  justify-content: flex-end;
}
.client-asset img {
  width: 68px;
  height: 32px;
}

@media (max-width: 767px) {
  .clients-list {
    padding: 0;
  }
  .client-item {
    flex-direction: column;
    padding-left: 0;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .client-content {
    padding-left: 0;
  }

  .client-content h2 {
    text-align: center;
  }
  .client-content p {
    text-align: center;
  }

  .client-asset {
    width: 50%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact-hero .hero-banner,
.contact-hero .hero-text {
  background: var(--text);
}
.contact-content {
  padding: 60px 0;
  font-size: 13px;
  color: var(--text);
}

/* ===== LEFT INFO ===== */
.contact-info p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--teal);
  text-decoration: none;
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 20px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 38px;
}

/* ============================================================================
   AUMET-STYLE REDESIGN — секционни стилове (етапи 11.B – 11.K)
   Виж docs/tasks.md → задача #11
   Всички класове са с префикс .ax-* за изолация от съществуващи стилове.
   ============================================================================ */

/* --- Section header (използва се във всички нови секции) --- */
.ax-section__header {
  max-width: 760px;
  margin: 0 auto var(--ax-space-5);
}
.ax-section__header--center {
  text-align: center;
}
.ax-section__header--with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--ax-space-3);
  max-width: none;
}
.ax-section__see-all {
  color: var(--ax-accent-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--ax-fs-body);
  white-space: nowrap;
}
.ax-section__see-all:hover {
  color: var(--ax-navy);
  text-decoration: none;
}
.ax-btn--lg {
  height: 60px;
  padding: 0 var(--ax-space-4);
  font-size: 18px;
}

/* ============================================================
   11.L HERO SLIDER + DASHBOARD REVEAL (Aumet-style, image-based)
   Замества старите .ax-top-banner и .ax-hero (виж tasks.md #18, #19)
   ============================================================ */
.ax-hero-slider {
  width: 100%;
  aspect-ratio: 2160 / 600;
  position: relative;
  overflow: hidden;
  background: #0b6565;
}
.ax-hero-slider .bx-wrapper,
.ax-hero-slider .bx-viewport,
.ax-hero-slider .bx-viewport > ul,
.ax-hero-slider .bx-loading {
  height: 100% !important;
  background: #0b6565 !important;
}
.ax-hero-slider__list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.ax-hero-slide {
  width: 100%;
  height: 100% !important;
  display: block !important;
  padding: 0;
  background: #0b6565;
  position: relative;
}
/* Hotspot за clickable бутон „Заявете демо" в банер 00 (2160×600).
   Процентни coords → scaling work-ва на всички viewport размери.
   ВРЕМЕННО DEBUG: червена полупрозрачна заливка + z-index 10. */
.ax-hero-slide__hotspot {
  position: absolute;
  top: 10%;
  bottom: 60%;
  left: 76%;
  right: 4%;
  z-index: 10;
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  display: block;
}
.ax-hero-slide__hotspot:focus,
.ax-hero-slide__hotspot:active,
.ax-hero-slide__hotspot:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}
.ax-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Mobile-only CSS banner — скрит по default (показва се само на ≤767px) */
.ax-hero-slide .mb-slide { display: none; }

/* ============================================================
   11.M STACKING CARDS — Aumet-style stair-step stacking.
   Всяка карта sticky на top:40px + transform: translateY(N×28px)
   създава „стълба" — виждаш горните ръбове на по-стари карти зад новата.
   Базирано на aumet.com/wp-content/mu-plugins/aumet-stacked-cards/style.css
   ============================================================ */
.ax-cards {
  max-width: 1200px;
  margin: 64px auto;
  padding: 0 24px 196px;
}
.ax-card {
  position: sticky;
  top: 40px;
  width: 100%;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06), 0 1px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;  /* клипва image-а към rounded corners — без visible бели полета */
  transform-origin: center top;
}
.ax-card:nth-child(1) { transform: translateY(0); }
.ax-card:nth-child(2) { transform: translateY(28px); }
.ax-card:nth-child(3) { transform: translateY(56px); }
.ax-card:nth-child(4) { transform: translateY(84px); }
.ax-card:nth-child(5) { transform: translateY(112px); }
.ax-card:nth-child(6) { transform: translateY(140px); }
.ax-card:nth-child(7) { transform: translateY(168px); }
.ax-card:nth-child(8) { transform: translateY(196px); }
.ax-card:last-child {
  margin-bottom: 0;
}
.ax-card img {
  display: block;
  width: 100%;
  height: auto;
}
/* Hotspot за clickable бутон в карта (например „Свържете се с нас" в card_08).
   Процентни coords → scaling work-ва на всички viewport размери.
   Image native: 2240×1240. Бутонът е ~центрирано долу. */
.ax-card__hotspot {
  position: absolute;
  top: 82%;
  bottom: 5%;
  left: 37%;
  right: 37%;
  z-index: 2;
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  /* За debugging: background: rgba(255,0,0,.3); */
}
.ax-card__hotspot:focus,
.ax-card__hotspot:active,
.ax-card__hotspot:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/* Dashboard картинка под слайдера — tilt reveal при скрол */
.ax-reveal-wrap {
  max-width: 1400px;
  margin: -12px auto 0;
  padding: 0 32px 80px;
  perspective: 2000px;
}
.ax-reveal-wrap img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25), 0 10px 25px rgba(15, 23, 42, 0.15);
  transform-origin: center top;
  will-change: transform;
  transition: none;
}

/* bxSlider overrides — dots + arrows за hero slider */
.ax-hero-slider .bx-wrapper {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.ax-hero-slider .bx-pager {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 5;
  text-align: center;
}
.ax-hero-slider .bx-pager.bx-default-pager a {
  background: rgba(255, 255, 255, 0.5);
  width: 10px; height: 10px; margin: 0 4px;
}
.ax-hero-slider .bx-pager.bx-default-pager a:hover,
.ax-hero-slider .bx-pager.bx-default-pager a.active {
  background: #fff;
}
.ax-hero-slider .bx-controls-direction a {
  width: 44px; height: 44px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  margin-top: -22px;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  outline: none;
  z-index: 5;
}
.ax-hero-slider .bx-controls-direction a:hover { background: rgba(0, 0, 0, 0.5); }
.ax-hero-slider .bx-prev { left: 20px; }
.ax-hero-slider .bx-next { right: 20px; }
.ax-hero-slider .bx-prev::before,
.ax-hero-slider .bx-next::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ax-hero-slider .bx-prev::before {
  transform: translate(-30%, -50%) rotate(135deg);
}

@media (max-width: 767px) {
  /* На mobile: скриваме PNG банера, показваме CSS .mb-slide. Slider става квадратен 1:1.
     !important — за override на bxSlider inline стилове. */
  .ax-hero-slider {
    height: 100vw !important;
    max-height: 100vw !important;
    aspect-ratio: auto !important;
  }
  .ax-hero-slider .bx-wrapper,
  .ax-hero-slider .bx-viewport,
  .ax-hero-slider .ax-hero-slider__list,
  .ax-hero-slide {
    height: 100% !important;
    min-height: 100vw !important;
  }
  .ax-hero-slide__img { display: none !important; }
  .ax-hero-slide__hotspot { display: none !important; }
  .ax-hero-slide .mb-slide { display: flex !important; }
  .ax-reveal-wrap { padding: 0 16px 60px; margin-top: -6px; }
}
/* @media (max-width: 640px) { .ax-hero-slider .bx-controls-direction { display: none; } } — премахнато 2026-05-18: клиентът иска стрелки и на mobile */

/* ============================================================
   MOBILE BANNER STYLES — CSS-only слайдове (показват се само на ≤767px)
   ============================================================ */
.mb-slide {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  padding: 24px 20px;
  color: #fff;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}
.mb-slide__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mb-slide__cross {
  position: absolute;
  font-size: 220px;
  line-height: 1;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}
.mb-slide__cross.tl { top: -40px; left: -30px; }
.mb-slide__cross.br { bottom: -80px; right: -30px; font-size: 280px; }
.mb-slide > *:not(.mb-slide__deco):not(.mb-slide__cross) {
  position: relative;
  z-index: 1;
}
.mb-slide__badge {
  align-self: flex-start;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", "Alexandria", sans-serif;
}
.mb-slide__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eead4;
}
.mb-slide__title {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #fff;
  font-family: "Manrope", "Alexandria", sans-serif;
}
.mb-slide__title em {
  font-style: normal;
  color: #67e8f9;
}
.mb-slide__lead {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
  font-family: "Manrope", "Alexandria", sans-serif;
}
.mb-slide__features {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}
.mb-slide__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  font-size: 12.5px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Manrope", "Alexandria", sans-serif;
}
.mb-slide__features li:first-child { border-top: 0; }
.mb-slide__features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(94, 234, 212, 0.25);
  color: #5eead4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.mb-slide--0 { background: linear-gradient(160deg, #0b3d40 0%, #11595d 50%, #157a73 100%); }
.mb-slide--1 { background: linear-gradient(160deg, #0d8d6b 0%, #11595d 100%); }
.mb-slide--2 { background: linear-gradient(160deg, #1e3a8a 0%, #1e40af 100%); }
.mb-slide--3 { background: linear-gradient(160deg, #6d28d9 0%, #5b21b6 100%); }
.mb-slide--4 { background: linear-gradient(160deg, #be185d 0%, #be123c 100%); }
.mb-slide--5 { background: linear-gradient(160deg, #134e4a 0%, #064e3b 100%); }

/* ============================================================
   11.B HERO
   ============================================================ */
.ax-hero {
  background: linear-gradient(180deg, var(--ax-surface-alt) 0%, var(--ax-surface) 100%);
  padding: var(--ax-space-7) 0 var(--ax-space-6);
  overflow: hidden;
}
.ax-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--ax-space-6);
  align-items: center;
}
.ax-hero__title {
  font-size: var(--ax-fs-display);
  line-height: 1.05;
  font-weight: 800;
  color: var(--ax-navy);
  margin: 0 0 var(--ax-space-3);
  letter-spacing: -0.02em;
}
.ax-hero__lead {
  font-size: var(--ax-fs-lead);
  line-height: 1.5;
  color: var(--ax-text);
  margin: 0 0 var(--ax-space-4);
  max-width: 540px;
}
.ax-hero__ctas {
  display: flex;
  gap: var(--ax-space-2);
  flex-wrap: wrap;
  margin-bottom: var(--ax-space-4);
}
.ax-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
}
.ax-hero__bullets li {
  position: relative;
  padding-left: 22px;
}
.ax-hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ax-accent);
  font-weight: 800;
}
.ax-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ax-radius-lg);
  box-shadow: var(--ax-shadow-lg);
}

/* ============================================================
   11.C TRUST INDICATORS
   ============================================================ */
.ax-trust {
  background: var(--ax-surface);
  padding: var(--ax-space-5) 0;
  border-top: 1px solid var(--ax-border);
  border-bottom: 1px solid var(--ax-border);
}
.ax-trust__label {
  text-align: center;
  font-size: var(--ax-fs-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ax-text-muted);
  margin: 0 0 var(--ax-space-3);
  font-weight: 600;
}
.ax-trust__logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--ax-space-5);
}
.ax-trust__logos li {
  flex: 0 0 auto;
}
.ax-trust__logos img {
  max-height: 40px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.ax-trust__logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   11.D 3-COLUMN PRODUCT MODULES
   ============================================================ */
.ax-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ax-space-4);
}
.ax-module {
  background: var(--ax-surface);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-md);
  padding: var(--ax-space-4);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ax-module:hover {
  transform: translateY(-4px);
  box-shadow: var(--ax-shadow-md);
  border-color: var(--ax-accent);
}
.ax-module__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--ax-radius-md);
  background: var(--ax-accent-soft);
  color: var(--ax-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--ax-space-3);
}
.ax-module__title {
  font-size: var(--ax-fs-h3);
  color: var(--ax-navy);
  margin: 0 0 var(--ax-space-2);
  font-weight: 700;
}
.ax-module__text {
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.55;
  margin: 0 0 var(--ax-space-3);
  flex-grow: 1;
}
.ax-module__link {
  color: var(--ax-accent-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--ax-fs-body);
  align-self: flex-start;
}
.ax-module__link:hover {
  color: var(--ax-navy);
  text-decoration: none;
}

/* ============================================================
   11.E FEATURE HIGHLIGHTS
   ============================================================ */
.ax-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ax-space-4);
}
.ax-features__grid > .ax-feature:nth-child(4),
.ax-features__grid > .ax-feature:nth-child(5) {
  /* 5 елемента: 3 на първия ред, 2 на втория с центриране */
}
.ax-feature {
  background: var(--ax-surface);
  border-radius: var(--ax-radius-md);
  padding: var(--ax-space-4);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ax-feature:hover {
  border-color: var(--ax-border);
  box-shadow: var(--ax-shadow-sm);
  transform: translateY(-2px);
}
.ax-feature__visual {
  width: 48px;
  height: 48px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-accent-soft);
  color: var(--ax-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--ax-space-3);
}
.ax-feature__title {
  font-size: 19px;
  color: var(--ax-navy);
  margin: 0 0 var(--ax-space-1);
  font-weight: 700;
  line-height: 1.3;
}
.ax-feature__text {
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   11.F STATS
   ============================================================ */
.ax-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ax-space-4);
  margin-bottom: var(--ax-space-5);
}
.ax-stat {
  text-align: center;
  padding: var(--ax-space-3);
}
.ax-stat__num {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  font-weight: 800;
  color: var(--ax-accent-dark);
  margin-bottom: var(--ax-space-1);
  letter-spacing: -0.02em;
}
.ax-stat__label {
  font-size: var(--ax-fs-body);
  color: var(--ax-text-muted);
  font-weight: 500;
}
.ax-stats__cta {
  text-align: center;
}

/* ============================================================
   11.G TESTIMONIALS
   ============================================================ */
.ax-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ax-space-4);
}
.ax-testimonial {
  background: var(--ax-surface);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-md);
  padding: var(--ax-space-4);
  display: flex;
  flex-direction: column;
  position: relative;
}
.ax-testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 60px;
  line-height: 1;
  color: var(--ax-accent-soft);
  font-family: Georgia, serif;
}
.ax-testimonial__quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ax-navy-soft);
  margin: 0 0 var(--ax-space-3);
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.ax-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--ax-space-2);
  margin: 0;
  border-top: 1px solid var(--ax-border);
  padding-top: var(--ax-space-3);
}
.ax-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ax-accent-soft);
  color: var(--ax-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ax-testimonial__author strong {
  display: block;
  color: var(--ax-navy);
  font-size: var(--ax-fs-body);
}
.ax-testimonial__author span {
  display: block;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
}

/* ============================================================
   NEWS (Aumet style)
   ============================================================ */
.ax-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ax-space-4);
}
.ax-news-card {
  background: var(--ax-surface);
  border-radius: var(--ax-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ax-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ax-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ax-shadow-md);
  text-decoration: none;
  color: inherit;
}
.ax-news-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ax-surface-alt);
}
.ax-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ax-news-card:hover .ax-news-card__image img {
  transform: scale(1.04);
}
.ax-news-card__body {
  padding: var(--ax-space-3);
}
.ax-news-card__date {
  font-size: var(--ax-fs-small);
  color: var(--ax-text-muted);
  margin: 0 0 var(--ax-space-1);
}
.ax-news-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ax-navy);
  margin: 0;
  line-height: 1.35;
}

/* ============================================================
   11.I FINAL CTA
   ============================================================ */
.ax-final-cta {
  background: linear-gradient(135deg, var(--ax-accent-dark) 0%, var(--ax-accent) 100%);
  padding: var(--ax-space-7) 0;
  color: var(--white);
}
.ax-final-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ax-final-cta__title {
  font-size: var(--ax-fs-h2);
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 var(--ax-space-3);
}
.ax-final-cta__lead {
  font-size: var(--ax-fs-lead);
  line-height: 1.5;
  margin: 0 0 var(--ax-space-4);
  opacity: 0.9;
}
.ax-final-cta .ax-btn--primary {
  background: var(--white);
  color: var(--ax-accent-dark);
}
.ax-final-cta .ax-btn--primary:hover {
  background: var(--ax-navy);
  color: var(--white);
}

/* ============================================================
   11.J FOOTER (Aumet-style: лого горе, 4 колони, долна лента)
   ============================================================ */
.ax-footer {
  /* Гладка 2-цветна преливка: тъмно navy/charcoal горе → меко teal долу.
     Нюансите са подбрани да съвпаднат с Aumet референса. */
  background: linear-gradient(
    to bottom,
    #0a1320 0%,      /* много тъмно navy/charcoal (горе) */
    #0d7572 100%     /* меко teal (долу) */
  );
  color: rgba(255, 255, 255, 0.78);
  padding: var(--ax-space-6) 0 0;
  margin-top: 0;
  font-size: var(--ax-fs-body);
}

/* --- Лого горе --- */
.ax-footer__top {
  padding-bottom: var(--ax-space-5);
}
.ax-footer__logo {
  display: inline-block;
}
.ax-footer__logo img {
  height: 40px;
  width: auto;
  display: block;
  /* Използваме filter за да направим логото бяло на тъмния фон.
     Ако логото изглежда зле, заменете с реална бяла версия (logo-white.svg). */
  filter: brightness(0) invert(1);
}

/* --- 3 колони (соц. колоната скрита 2026-05-19; беше 4-та с 1.5fr) --- */
.ax-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--ax-space-5);
  padding-bottom: var(--ax-space-5);
}

/* --- Заглавия --- */
.ax-footer__heading {
  color: var(--white);
  font-size: var(--ax-fs-body);
  font-weight: 700;
  margin: 0 0 var(--ax-space-2);
}
.ax-footer__heading--mt {
  margin-top: var(--ax-space-4);
}

/* --- Списъци с линкове --- */
.ax-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ax-footer__list li {
  margin-bottom: var(--ax-space-1);
}
.ax-footer__list a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: var(--ax-fs-body);
  padding: 2px 0;
  transition: color 0.2s ease;
}
.ax-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ax-footer__list a:hover {
  color: var(--white);
  text-decoration: none;
}
.ax-footer__list a:hover::after {
  transform: scaleX(1);
}

/* --- Социални икони (5 в редица, бели, без background) --- */
.ax-footer__social {
  display: flex;
  gap: var(--ax-space-3);
  align-items: center;
  margin-bottom: var(--ax-space-2);
}
.ax-footer__social a {
  color: var(--white);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.ax-footer__social a:hover {
  background: var(--white);
  color: var(--ax-navy);
  transform: translateY(-2px);
}

/* --- Mobile App badges (placeholder-и в Aumet стил) --- */
.ax-footer__apps {
  display: flex;
  gap: var(--ax-space-2);
  flex-wrap: wrap;
}
.ax-app-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.ax-app-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  text-decoration: none;
}
.ax-app-badge__top {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
  line-height: 1.1;
}
.ax-app-badge__bottom {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 2px;
}

/* --- Долна лента (Copyright | Privacy | Terms) --- */
.ax-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ax-space-3);
  padding: var(--ax-space-3) 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--ax-fs-small);
  color: rgba(255, 255, 255, 0.85);
}
.ax-footer__copyright {
  margin: 0;
}
.ax-footer__legal {
  display: flex;
  gap: var(--ax-space-5);
}
.ax-footer__legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ax-footer__legal a:hover {
  color: var(--white);
  text-decoration: none;
}

/* „Изпълнено чрез UniversumERP" — добавено 2026-05-19 */
.ax-footer__powered {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ax-footer__powered-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.ax-footer__powered-link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ax-footer__powered-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.35);
}
.ax-footer__powered-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ============================================================
   11.K RESPONSIVE — мобилни и таблет
   ============================================================ */
@media (max-width: 991px) {
  .ax-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--ax-space-4);
    text-align: center;
  }
  .ax-hero__lead { margin-left: auto; margin-right: auto; }
  .ax-hero__ctas { justify-content: center; }
  .ax-hero__bullets { justify-content: center; }

  .ax-modules__grid,
  .ax-features__grid,
  .ax-news__grid,
  .ax-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ax-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ax-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ax-footer__col--social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .ax-section { padding: var(--ax-space-5) 0; }
  .ax-hero { padding: var(--ax-space-5) 0; }

  .ax-modules__grid,
  .ax-features__grid,
  .ax-news__grid,
  .ax-testimonials__grid,
  .ax-stats__grid {
    grid-template-columns: 1fr;
  }

  .ax-section__header--with-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .ax-trust__logos { gap: var(--ax-space-3); }
  .ax-trust__logos img { max-height: 30px; }

  .ax-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--ax-space-4);
  }
  .ax-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .ax-footer__legal {
    gap: var(--ax-space-3);
    flex-wrap: wrap;
  }
  .ax-footer__apps {
    justify-content: flex-start;
  }
  .ax-app-badge {
    min-width: 0;
    flex: 1 1 calc(50% - var(--ax-space-1));
  }

  .ax-btn--lg {
    height: 52px;
    font-size: var(--ax-fs-body);
  }
}


/* ===== FORM ===== */
.contact-form label {
  font-weight: normal;
  font-size: 18px;
  color: var(--text);
  margin: 0px;
  padding: 0;
}

.contact-form textarea.form-control {
  height: auto;
}

/* ===== CHECKBOX ===== */
.contact-form .checkbox {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}
.contact-form .checkbox input {
  display: none;
}
.contact-form .checkbox label:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--text);
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-form .checkbox:has(input:checked) label:before {
  content: "\2714";
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  text-align: center;
  line-height: 16px;
  border: none;
}

.contact-form .checkbox a {
  color: var(--text);
  text-decoration: underline;
}

/* ===== BUTTON ===== */
.btn-submit {
  margin: 40px auto 20px;
  background: var(--light-gray);
  color: var(--text);
  border-radius: 4px;
  padding: 10px 44px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: var(--teal-dark);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .contact-content {
    padding: 68px 0;
  }

  .contact-info {
    margin-bottom: 40px;
  }
}
.form-group {
  margin-bottom: 27px;
}

.has-error .form-control {
  background: #fff;
  border: 1px solid #d9534f;
}

.has-success .form-control {
  border: 1px solid #5cb85c;
}

.help-block {
  font-size: 11px;
  color: #d9534f;
}

.news-list-item {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.news-img-container {
  display: flex;
  align-items: center;
  height: 360px;
  text-decoration: none;
}

.news-description {
  padding-top: 30px;
  padding-top: 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  a {
    color: var(--text);
    transition: all 0.3s ease;
  }

  h3 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
  }
  p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text);
    margin: 0;
  }
  &:hover {
    a {
      color: var(--teal);
    }
    h3 {
      color: var(--teal);
    }
  }
  .see-all {
    margin-top: auto;
  }
}

/* ===== USP SECTION ===== */

.usp-section {
  padding: 80px 0;
  background: #ffffff;
}

.usp-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== USP CARDS ===== */
.usp-card {
  background: #f7f8f8;
  border-radius: 30px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
}

.usp-icon {
  margin-bottom: 25px;
}

.usp-icon img {
  max-width: 150px;
  height: auto;
}

/* ===== TEXT ===== */
.usp-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 15px;
}

.usp-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .usp-section {
    padding: 50px 0;
  }

  .usp-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .usp-card {
    margin-bottom: 30px;
  }
}

.usp-lottie {
  /* width: 150px; */
  height: 150px;
  margin: 0 auto 15px;
}
.usp-row {
  display: flex;
}
@media (max-width: 767px) {
  .usp-row {
    flex-direction: column;
    gap: 20px;
  }
}

.new-hero .hero-text h1 {
  font-size: 27px;
  line-height: 35px;
  font-weight: 300;
  margin-bottom: 20px;
}
.new-hero .hero-text p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 300;
  margin-bottom: 20px;
}

.new-content .date {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 50px;
}
.section-content.new-content {
  padding: 60px 0;
}

/* ============================================================
   12. CONTACTS PAGE — нов redesign (2026-05-17)
   Scoped под .ax-kontakti.
   ============================================================ */
.ax-kontakti {
  --k-teal-dark: #0b3d40;
  --k-teal: #11595d;
  --k-teal-mid: #157a73;
  --k-accent: #14b8a6;
  --k-accent-2: #0d9488;
  --k-mint: #5eead4;
  --k-ink: #0f2e30;
  --k-muted: #5e7a78;
  --k-line: #e6efee;
  --k-bg: #f4f8f7;
  --k-card: #ffffff;
  font-family: "Manrope", "Alexandria", system-ui, sans-serif;
  background: var(--k-bg);
  color: var(--k-ink);
  -webkit-font-smoothing: antialiased;
}

.ax-kontakti__hero {
  position: relative;
  overflow: hidden;
  padding: 70px 24px 150px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 18%, rgba(45, 212, 191, 0.20) 0%, transparent 46%),
    radial-gradient(circle at 8% 90%, rgba(56, 189, 248, 0.12) 0%, transparent 44%),
    linear-gradient(135deg, var(--k-teal-dark) 0%, var(--k-teal) 48%, var(--k-teal-mid) 100%);
}
.ax-kontakti__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 46px 46px;
}
.ax-kontakti__cross {
  position: absolute;
  opacity: 0.06;
  color: #fff;
  pointer-events: none;
}
.ax-kontakti__cross.x1 { top: 30px; left: 8%; transform: rotate(-12deg); }
.ax-kontakti__cross.x2 { top: 60px; right: 6%; transform: rotate(14deg); }
.ax-kontakti__cross.x3 { bottom: 90px; right: 22%; transform: rotate(-8deg); }
.ax-kontakti__hero-in {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.ax-kontakti__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  color: #d6fbf5;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.ax-kontakti__kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--k-mint);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.25);
}
.ax-kontakti__h1 {
  font-family: "Sofia Sans", "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.ax-kontakti__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
}

.ax-kontakti__panel-wrap {
  max-width: 1160px;
  margin: -100px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 3;
}
.ax-kontakti__panel {
  background: var(--k-card);
  border-radius: 28px;
  box-shadow: 0 40px 90px -40px rgba(11, 61, 64, 0.45), 0 0 0 1px rgba(11, 61, 64, 0.04);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
}

.ax-kontakti__find {
  padding: 54px 48px;
  border-right: 1px solid var(--k-line);
  background: linear-gradient(180deg, #fbfdfc, #f6faf9);
}
.ax-kontakti__h2 {
  font-family: "Sofia Sans", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 27px;
  color: var(--k-ink);
  margin-bottom: 12px;
}
.ax-kontakti__intro {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--k-muted);
  margin-bottom: 34px;
}
.ax-kontakti__intro b { color: var(--k-ink); font-weight: 700; }
.ax-kontakti__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--k-line);
}
.ax-kontakti__item:last-of-type { border-bottom: none; }
.ax-kontakti__ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e7f8f4, #d4f0eb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-kontakti__ic svg { width: 21px; height: 21px; }
.ax-kontakti__lbl {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--k-accent-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ax-kontakti__val {
  font-size: 15px;
  color: var(--k-ink);
  font-weight: 600;
  line-height: 1.5;
}
.ax-kontakti__val a {
  color: var(--k-accent-2);
  text-decoration: none;
  font-weight: 800;
}
.ax-kontakti__val a:hover { text-decoration: underline; }

.ax-kontakti__map {
  display: block;
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  height: 170px;
  position: relative;
  background: linear-gradient(135deg, #dff3ef, #cfece6);
  border: 1px solid var(--k-line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ax-kontakti__map:hover {
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.18);
  transform: translateY(-2px);
  text-decoration: none;
}
.ax-kontakti__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.ax-kontakti__road { position: absolute; background: rgba(255, 255, 255, 0.7); }
.ax-kontakti__road.r1 { top: 48%; left: 0; right: 0; height: 8px; }
.ax-kontakti__road.r2 { top: 0; bottom: 0; left: 38%; width: 7px; }
.ax-kontakti__road.r3 { top: 0; bottom: 0; left: 72%; width: 5px; background: rgba(255, 255, 255, 0.5); }
.ax-kontakti__pin {
  position: absolute;
  left: 38%;
  top: 48%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.ax-kontakti__pin svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 6px 8px rgba(11, 61, 64, 0.35));
}
.ax-kontakti__pulse {
  position: absolute;
  left: 38%;
  top: 48%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.18);
  animation: ax-kontakti-pulse 2.4s ease-out infinite;
}
@keyframes ax-kontakti-pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.ax-kontakti__map-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--k-ink);
  box-shadow: 0 6px 16px -6px rgba(11, 61, 64, 0.3);
}

.ax-kontakti__form-side { padding: 54px 52px; }
.ax-kontakti__sub {
  font-size: 14px;
  color: var(--k-muted);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ax-kontakti__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e7f8f4;
  color: var(--k-accent-2);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 7px;
}
.ax-kontakti__badge svg { width: 13px; height: 13px; }
.ax-kontakti__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ax-kontakti__field { margin-bottom: 18px; }
.ax-kontakti__field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--k-ink);
  margin-bottom: 8px;
}
.ax-kontakti__field input,
.ax-kontakti__field textarea {
  width: 100%;
  font-family: "Manrope", "Alexandria", sans-serif;
  font-size: 14.5px;
  color: var(--k-ink);
  background: #f6f9f9;
  border: 1.5px solid var(--k-line);
  border-radius: 11px;
  padding: 14px 16px;
  transition: 0.2s;
  outline: none;
}
.ax-kontakti__field input::placeholder,
.ax-kontakti__field textarea::placeholder { color: #a9bdbb; }
.ax-kontakti__field input:focus,
.ax-kontakti__field textarea:focus {
  border-color: var(--k-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}
.ax-kontakti__field textarea { resize: vertical; min-height: 118px; }
.ax-kontakti__submit {
  width: 100%;
  font-family: "Manrope", "Alexandria", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #063a36;
  border: none;
  cursor: pointer;
  background: linear-gradient(100deg, #34d399, #2dd4bf);
  padding: 17px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 34px -12px rgba(52, 211, 153, 0.55);
  transition: transform 0.15s, box-shadow 0.2s;
}
.ax-kontakti__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(52, 211, 153, 0.65);
}
.ax-kontakti__submit svg { width: 18px; height: 18px; }
.ax-kontakti__privacy {
  margin-top: 15px;
  font-size: 12px;
  color: var(--k-muted);
  text-align: center;
  line-height: 1.5;
}
.ax-kontakti__privacy a {
  color: var(--k-accent-2);
  text-decoration: none;
  font-weight: 700;
}

.ax-kontakti__trust {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 90px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.ax-kontakti__t {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--k-card);
  border: 1px solid var(--k-line);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px -16px rgba(11, 61, 64, 0.3);
}
.ax-kontakti__t-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #e7f8f4, #d4f0eb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-kontakti__t-ic svg { width: 18px; height: 18px; }
.ax-kontakti__t b {
  display: block;
  font-size: 14px;
  color: var(--k-ink);
  font-weight: 800;
}
.ax-kontakti__t span {
  font-size: 12.5px;
  color: var(--k-muted);
  font-weight: 500;
}

@media (max-width: 920px) {
  .ax-kontakti__panel { grid-template-columns: 1fr; }
  .ax-kontakti__find { border-right: none; border-bottom: 1px solid var(--k-line); }
}

/* 13. Disable link drag preview (ghost showing link text + URL on mouse-down + drag) */
a,
a img,
a svg {
  -webkit-user-drag: none;
  user-drag: none;
}

/* 14. Disable focus outline (the black box around link after click) — for ALL <a>. */
a:focus,
a:focus-visible,
a:active {
  outline: none !important;
  outline-offset: 0 !important;
}

/* ============================================================
   15. „ЗА НАС" redesign — Aumet-style, blue palette (added 2026-05-19)
   Скоп: всичко под .ax-about*  (за да не чупим bootstrap)
   ============================================================ */
.ax-about-hero,
.ax-about-block,
.ax-about__band {
  --ax-teal-900: #003d6b;
  --ax-teal-800: #005a8a;
  --ax-teal-700: #0084b5;
  --ax-teal-600: #0096ce;
  --ax-teal-500: #00adee;
  --ax-teal-400: #5bcbec;
  --ax-mint-100: #e0f4fc;
  --ax-mint-50:  #f1faff;
  --ax-ink:      #0a2236;
  --ax-muted:    #5b6b78;
  --ax-line:     #dde9f0;
  --ax-shadow:   0 18px 50px -22px rgba(0,61,107,.35);
  --ax-radius:   22px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.65;
}
.ax-about-hero *,
.ax-about-block *,
.ax-about__band * { box-sizing: border-box; }
.ax-about-hero h1,
.ax-about-hero h2,
.ax-about-hero h3,
.ax-about-block h2,
.ax-about-block h3,
.ax-about__band h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.ax-about-wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* HERO — бял фон, логото е звездата */
.ax-about-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ax-ink);
  padding: 36px 0 60px;
  text-align: center;
}
.ax-about-hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,173,238,.10), transparent 70%);
  top: -300px; right: -200px;
}
.ax-about-hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,173,238,.08), transparent 70%);
  bottom: -240px; left: -160px;
}
.ax-about-hero .ax-about-wrap { position: relative; z-index: 2; }
.ax-about__brand {
  display: block;
  width: 90%;
  max-width: 380px;
  height: auto;
  margin: 0 auto 4px;
  filter: drop-shadow(0 6px 14px rgba(0,173,238,.14));
}
.ax-about__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,173,238,.08);
  border: 1px solid rgba(0,173,238,.25);
  color: var(--ax-teal-700);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ax-about__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-500);
  box-shadow: 0 0 10px var(--ax-teal-500);
}
.ax-about-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ax-ink);
}
.ax-about-hero h1 span { color: var(--ax-teal-500); }
.ax-about-hero p {
  margin: 24px auto 0;
  font-size: 18px;
  max-width: 64ch;
  color: var(--ax-muted);
  font-weight: 400;
}
.ax-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px auto 0;
  max-width: 780px;
}
.ax-about__stat {
  background: var(--ax-mint-50);
  border: 1px solid var(--ax-line);
  border-radius: 16px;
  padding: 28px 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ax-about__stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--ax-shadow);
  border-color: var(--ax-teal-400);
}
.ax-about__stat .num {
  font-size: 42px;
  font-weight: 800;
  color: var(--ax-teal-500);
  line-height: 1.1;
}
.ax-about__stat .lbl {
  font-size: 14px;
  color: var(--ax-muted);
  margin-top: 6px;
  font-weight: 600;
}

/* Section base */
.ax-about-block { padding: 96px 0; }
.ax-about__eyebrow {
  color: var(--ax-teal-600);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ax-about__lead {
  color: var(--ax-muted);
  font-size: 18px;
  max-width: 62ch;
  margin-top: 18px;
}
h2.ax-about__title { font-size: clamp(30px, 4vw, 46px); max-width: 18ch; color: var(--ax-ink); }

/* Who */
.ax-about__who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ax-about__who p { color: var(--ax-muted); font-size: 17px; margin-top: 18px; }
.ax-about__cert-card {
  background: var(--ax-mint-50);
  border: 1px solid var(--ax-line);
  border-radius: var(--ax-radius);
  padding: 40px;
  box-shadow: var(--ax-shadow);
}
.ax-about__cert-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--ax-teal-900); }
.ax-about__cert-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ax-line);
  align-items: flex-start;
}
.ax-about__cert-row:last-child { border-bottom: 0; padding-bottom: 0; }
.ax-about__cert-row .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--ax-teal-600);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.ax-about__cert-row b { display: block; color: var(--ax-ink); font-size: 16px; }
.ax-about__cert-row span { color: var(--ax-muted); font-size: 14px; }

/* QA — въпроси в стил check + heading */
.ax-about__qa { display: flex; flex-direction: column; gap: 54px; max-width: 920px; margin: 0 auto; }
.ax-about__qa-item h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 18px;
  color: var(--ax-ink);
  font-weight: 800;
}
.ax-about__qa-item h2 .qa-check {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 3px solid var(--ax-teal-500);
  color: var(--ax-teal-500);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.ax-about__qa-item p {
  color: var(--ax-muted);
  font-size: 16.5px;
  margin-bottom: 14px;
  line-height: 1.75;
}
.ax-about__qa-item p:last-child { margin-bottom: 0; }

/* Industries */
.ax-about-block--industries {
  background: var(--ax-mint-50);
  border-top: 1px solid var(--ax-line);
  border-bottom: 1px solid var(--ax-line);
}
.ax-about__ind-image { margin-top: 48px; }
.ax-about__ind-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--ax-radius);
}

/* Why */
.ax-about__why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; }
.ax-about__why {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ax-line);
  transition: border-color .25s, box-shadow .25s;
}
.ax-about__why:hover { border-color: var(--ax-teal-400); box-shadow: var(--ax-shadow); }
.ax-about__why .check {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ax-teal-500);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px;
}
.ax-about__why p { color: var(--ax-muted); font-size: 15.5px; }

/* Values */
.ax-about-block--values {
  background: var(--ax-teal-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ax-about-block--values::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,208,189,.18), transparent 70%);
  top: -260px; right: -200px;
}
.ax-about-block--values .ax-about-wrap { position: relative; z-index: 2; }
.ax-about-block--values .ax-about__eyebrow { color: var(--ax-teal-400); }
.ax-about-block--values h2.ax-about__title { color: #fff; }
.ax-about-block--values .ax-about__lead { color: rgba(255,255,255,.8); }
.ax-about__val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.ax-about__val {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 32px;
  transition: background .25s, transform .25s;
}
.ax-about__val:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.ax-about__val h3 { font-size: 21px; margin-bottom: 10px; color: #fff; }
.ax-about__val p { color: rgba(255,255,255,.75); font-size: 15px; }

@media (max-width: 980px) {
  .ax-about__who,
  .ax-about__why-grid,
  .ax-about__val-grid { grid-template-columns: 1fr; }
  .ax-about__stats { grid-template-columns: repeat(2, 1fr); }
  .ax-about-hero { padding: 70px 0 80px; }
}
@media (max-width: 560px) {
  .ax-about__stats { grid-template-columns: 1fr; gap: 14px; }
  .ax-about__stat { padding: 20px 14px; }
  .ax-about__stat .num { font-size: 32px; }
}

/* ============================================================
   16. UniRx ERP — Pricing/Products redesign (added 2026-05-19)
   Скоп: всичко под .ax-prod*  (teal палитра)
   ============================================================ */
.ax-prod-hero,
.ax-prod-intro,
.ax-prod-pricing,
.ax-prod-final {
  --ax-teal-900: #0b3d40;
  --ax-teal-800: #11595d;
  --ax-teal-700: #0d9488;
  --ax-teal-600: #0d9488;
  --ax-teal-500: #14b8a6;
  --ax-teal-400: #2dd4bf;
  --ax-teal-300: #5eead4;
  --ax-cyan-300: #67e8f9;
  --ax-mint-100: #ccfbf1;
  --ax-mint-50:  #f0fdfa;
  --ax-ink:      #0a2236;
  --ax-muted:    #5b6b78;
  --ax-line:     #e2e8f0;
  --ax-no:       #cbd5e1;
  --ax-shadow:    0 18px 50px -22px rgba(13,148,136,.35);
  --ax-shadow-lg: 0 28px 70px -30px rgba(13,148,136,.45);
  --ax-radius:    22px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.65;
}
.ax-prod-hero *,
.ax-prod-intro *,
.ax-prod-pricing *,
.ax-prod-final * { box-sizing: border-box; }
.ax-prod-hero h1,
.ax-prod-intro h2,
.ax-prod-pricing h2,
.ax-prod-pricing h3,
.ax-prod-final h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.ax-prod-wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* HERO — бял фон, центриран */
.ax-prod-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ax-ink);
  padding: 48px 0 60px;
  text-align: center;
}
.ax-prod-hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,.10), transparent 70%);
  top: -300px; right: -200px;
}
.ax-prod-hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,.08), transparent 70%);
  bottom: -240px; left: -160px;
}
.ax-prod-hero .ax-prod-wrap { position: relative; z-index: 2; }
.ax-prod__brand {
  display: block;
  width: 90%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 6px 14px rgba(13,148,136,.18));
}
.ax-prod__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,184,166,.10);
  border: 1px solid rgba(20,184,166,.28);
  color: var(--ax-teal-700);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ax-prod__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-500);
  box-shadow: 0 0 10px var(--ax-teal-500);
}
.ax-prod-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ax-ink);
}
.ax-prod-hero h1 span { color: var(--ax-teal-600); }
.ax-prod-hero .ax-prod__lead {
  margin: 22px auto 0;
  font-size: 18px;
  max-width: 64ch;
  color: var(--ax-muted);
  font-weight: 400;
}

/* INTRO blurb */
.ax-prod-intro { padding: 60px 0 30px; text-align: center; }
.ax-prod-intro p { color: var(--ax-muted); font-size: 17px; max-width: 72ch; margin: 0 auto 14px; }
.ax-prod-intro h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 32px; color: var(--ax-ink); }
.ax-prod-intro h2 span { color: var(--ax-teal-600); }

/* PRICING grid */
.ax-prod-pricing { padding: 30px 0 90px; }
.ax-prod__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
.ax-prod__card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: var(--ax-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.ax-prod__card:hover { transform: translateY(-6px); box-shadow: var(--ax-shadow); border-color: var(--ax-teal-400); }

/* Featured card */
.ax-prod__card--featured {
  border: 2px solid var(--ax-teal-500);
  box-shadow: var(--ax-shadow-lg);
}
.ax-prod__card--featured::before {
  content: "Препоръчан";
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(100deg, var(--ax-teal-500), var(--ax-teal-400));
  color: #063a36;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}

/* Card header */
.ax-prod__head {
  padding: 36px 32px 26px;
  background: linear-gradient(160deg, var(--ax-mint-50) 0%, #fff 70%);
  border-bottom: 1px solid var(--ax-line);
  position: relative;
}
.ax-prod__card--featured .ax-prod__head {
  background: linear-gradient(160deg, #0b3d40 0%, #11595d 50%, #0d9488 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ax-prod__head h3 {
  font-size: 30px;
  color: var(--ax-ink);
  margin-bottom: 10px;
  font-weight: 700;
}
.ax-prod__head h3 strong { color: var(--ax-teal-600); font-weight: 800; }
.ax-prod__card--featured .ax-prod__head h3 { color: #fff; }
.ax-prod__card--featured .ax-prod__head h3 strong { color: var(--ax-cyan-300); }
.ax-prod__head p { color: var(--ax-muted); font-size: 14px; font-weight: 500; }
.ax-prod__card--featured .ax-prod__head p { color: rgba(255,255,255,.8); }
.ax-prod__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.ax-prod__amount { font-size: 34px; font-weight: 800; color: var(--ax-teal-700); line-height: 1; }
.ax-prod__price-note { font-size: 13px; color: var(--ax-muted); font-weight: 500; }
.ax-prod__card--featured .ax-prod__amount { color: #fff; }
.ax-prod__card--featured .ax-prod__price-note { color: rgba(255,255,255,.85); }
.ax-prod__icon {
  position: absolute;
  top: 24px; right: 32px;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: rgba(20,184,166,.08);
  border: 1px solid rgba(20,184,166,.2);
  border-radius: 14px;
}
.ax-prod__card--featured .ax-prod__icon {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
}
.ax-prod__icon svg { width: 32px; height: 32px; color: var(--ax-teal-600); }
.ax-prod__card--featured .ax-prod__icon svg { color: var(--ax-cyan-300); }
/* When 'Препоръчан' badge is shown, push the cloud icon down so they don't collide */
.ax-prod__card--featured .ax-prod__icon { top: 64px; }

/* Section in card */
.ax-prod__section { padding: 28px 32px; border-bottom: 1px solid var(--ax-line); }
.ax-prod__section:last-of-type { border-bottom: 0; }
.ax-prod__sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ax-prod__sec-head .ic {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ax-mint-50);
  border: 1px solid var(--ax-mint-100);
  display: grid; place-items: center;
  color: var(--ax-teal-700);
}
.ax-prod__sec-head .ic svg { width: 20px; height: 20px; }
.ax-prod__sec-head span:not(.ic) {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ax-teal-700);
}
.ax-prod__list { list-style: none; padding: 0; margin: 0; }
.ax-prod__addon {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}
.ax-prod__note {
  margin: 28px auto 0;
  max-width: 760px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
}
.ax-prod__note .ax-prod__addon {
  margin-left: 0;
  margin-right: 8px;
}
.ax-prod__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--ax-ink);
  border-bottom: 1px solid rgba(226,232,240,.6);
}
.ax-prod__list li:last-child { border-bottom: 0; }
.ax-prod__list li::before {
  flex: none;
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.ax-prod__list li.ok::before {
  content: "✓";
  background: rgba(20,184,166,.18);
  color: var(--ax-teal-700);
}
.ax-prod__list li.no::before {
  content: "−";
  background: #f1f5f9;
  color: var(--ax-no);
}
.ax-prod__list li.no { color: #94a3b8; }

/* CTA button at bottom of card */
.ax-prod__cta-wrap { padding: 24px 32px 32px; margin-top: auto; }
.ax-prod__price--bottom {
  justify-content: center;
  align-items: baseline;
  margin-bottom: 16px;
}
/* Долната цена винаги е на бял фон — teal текст и в двете карти */
.ax-prod__price--bottom .ax-prod__amount,
.ax-prod__card--featured .ax-prod__price--bottom .ax-prod__amount { color: var(--ax-teal-700); }
.ax-prod__price--bottom .ax-prod__price-note,
.ax-prod__card--featured .ax-prod__price--bottom .ax-prod__price-note { color: var(--ax-muted); }
.ax-prod__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  background: #fff;
  border: 2px solid var(--ax-teal-500);
  color: var(--ax-teal-700);
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s;
}
.ax-prod__cta:hover {
  background: var(--ax-teal-500);
  color: #fff;
  transform: translateY(-2px);
}
.ax-prod__card--featured .ax-prod__cta {
  background: linear-gradient(100deg, var(--ax-teal-500), var(--ax-teal-400));
  color: #063a36;
  border-color: transparent;
}
.ax-prod__card--featured .ax-prod__cta:hover {
  background: linear-gradient(100deg, var(--ax-teal-600), var(--ax-teal-500));
  color: #fff;
}

/* Bottom CTA strip */
.ax-prod-final {
  background: linear-gradient(120deg, var(--ax-teal-800), var(--ax-teal-600));
  color: #fff;
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.ax-prod-final::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,234,212,.18), transparent 70%);
  top: -260px; right: -200px;
  pointer-events: none;
}
.ax-prod-final .ax-prod-wrap { position: relative; z-index: 2; }
.ax-prod-final h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 22ch; margin: 0 auto; color: #fff; }
.ax-prod-final p { margin: 16px auto 28px; color: rgba(255,255,255,.85); font-size: 17px; max-width: 54ch; }
.ax-prod-final .btn {
  background: #fff;
  color: var(--ax-teal-800);
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.ax-prod-final .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }

@media (max-width: 900px) {
  .ax-prod__grid { grid-template-columns: 1fr; gap: 24px; }
  .ax-prod__icon { width: 54px; height: 54px; top: 20px; right: 24px; }
  .ax-prod__card--featured .ax-prod__icon { top: 60px; }
  .ax-prod__head,
  .ax-prod__section,
  .ax-prod__cta-wrap { padding-left: 24px; padding-right: 24px; }
}

/* ============================================================
   17. Политика за бисквитките (added 2026-05-19)
   Скоп: всичко под .ax-cookies*  (teal палитра — уеднинена с products)
   ============================================================ */
.ax-cookies-hero,
.ax-cookies-content,
.ax-cookies-band {
  --ax-teal-900: #0b3d40;
  --ax-teal-800: #11595d;
  --ax-teal-700: #0d9488;
  --ax-teal-600: #0d9488;
  --ax-teal-500: #14b8a6;
  --ax-teal-400: #2dd4bf;
  --ax-mint-100: #ccfbf1;
  --ax-mint-50:  #f0fdfa;
  --ax-ink:      #0c2624;
  --ax-muted:    #5b7572;
  --ax-line:     #dfeeeb;
  --ax-shadow:   0 18px 50px -22px rgba(11,59,58,.45);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.7;
}
.ax-cookies-hero *,
.ax-cookies-content *,
.ax-cookies-band * { box-sizing: border-box; }
.ax-cookies-hero h1,
.ax-cookies-content h2,
.ax-cookies-content h3,
.ax-cookies-band h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.ax-cookies-content a { color: var(--ax-teal-600); text-decoration: none; }
.ax-cookies-content a:hover { text-decoration: underline; }
.ax-cookies-wrap { max-width: 920px; margin: 0 auto; padding: 0 26px; }

/* HERO */
.ax-cookies-hero {
  background: linear-gradient(135deg, var(--ax-teal-900), var(--ax-teal-700) 60%, var(--ax-teal-600));
  color: #fff;
  padding: 74px 0 90px;
  position: relative;
  overflow: hidden;
}
.ax-cookies-hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.3), transparent 70%);
  top: -220px; right: -130px;
  pointer-events: none;
}
.ax-cookies-hero .ax-cookies-wrap { position: relative; z-index: 2; }
.ax-cookies__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #fff;
}
.ax-cookies__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-400);
  box-shadow: 0 0 9px var(--ax-teal-400);
}
.ax-cookies-hero h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; }
.ax-cookies-hero p.ax-cookies__lead {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
}
.ax-cookies__upd { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.7); }

/* Content card */
.ax-cookies-content { padding: 0 0 90px; background: #fff; }
.ax-cookies__card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 24px;
  box-shadow: var(--ax-shadow);
  padding: 54px 56px;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.ax-cookies__card section { padding: 26px 0; border-bottom: 1px solid var(--ax-line); }
.ax-cookies__card section:first-of-type { padding-top: 0; }
.ax-cookies__card section:last-of-type { border-bottom: 0; padding-bottom: 0; }
.ax-cookies__card h2 {
  font-size: 22px;
  color: var(--ax-teal-900);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ax-cookies__num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--ax-mint-100);
  color: var(--ax-teal-700);
  display: grid; place-items: center;
  font-size: 15px;
  font-weight: 800;
}
.ax-cookies__card h3 { font-size: 17px; color: var(--ax-ink); margin: 18px 0 8px; }
.ax-cookies__card p { color: var(--ax-muted); font-size: 16px; margin-bottom: 12px; }
.ax-cookies__card ul { margin: 8px 0 14px; padding-left: 4px; list-style: none; }
.ax-cookies__card li {
  color: var(--ax-muted);
  font-size: 15.5px;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}
.ax-cookies__card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--ax-teal-500);
}
.ax-cookies__card strong { color: var(--ax-ink); }

/* Table */
.ax-cookies__tbl-wrap {
  overflow-x: auto;
  margin: 16px 0 8px;
  border: 1px solid var(--ax-line);
  border-radius: 14px;
}
.ax-cookies__tbl-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 520px;
}
.ax-cookies__tbl-wrap thead th {
  background: var(--ax-mint-50);
  color: var(--ax-teal-900);
  text-align: left;
  padding: 13px 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--ax-line);
}
.ax-cookies__tbl-wrap tbody td {
  padding: 13px 18px;
  color: var(--ax-muted);
  border-bottom: 1px solid var(--ax-line);
}
.ax-cookies__tbl-wrap tbody tr:last-child td { border-bottom: 0; }
.ax-cookies__tbl-wrap tbody td:first-child { color: var(--ax-ink); font-weight: 600; }

/* Callout */
.ax-cookies__note {
  background: var(--ax-mint-50);
  border: 1px solid var(--ax-line);
  border-left: 4px solid var(--ax-teal-500);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 18px 0;
}
.ax-cookies__note p { margin: 0; color: var(--ax-ink); font-size: 15.5px; }

/* Bottom band */
.ax-cookies-band {
  background: var(--ax-teal-900);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.ax-cookies-band h2 { font-size: clamp(24px, 3.4vw, 34px); color: #fff; }
.ax-cookies-band p {
  margin: 14px auto 26px;
  color: rgba(255,255,255,.85);
  max-width: 48ch;
}
.ax-cookies__cta {
  background: #fff;
  color: var(--ax-teal-800);
  padding: 13px 24px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  transition: background .25s, color .25s, transform .25s;
}
.ax-cookies__cta:hover {
  background: var(--ax-teal-700);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .ax-cookies__card { padding: 34px 24px; margin-top: -40px; }
}

/* ============================================================
   18. За нас — UniRx product page (added 2026-05-19)
   Скоп: всичко под .ax-zanas*  (teal палитра, уеднинена с products)
   ============================================================ */
.ax-zanas-hero,
.ax-zanas-intro,
.ax-zanas-block,
.ax-zanas-stats,
.ax-zanas-closing {
  --ax-teal-900: #0b3d40;
  --ax-teal-800: #11595d;
  --ax-teal-700: #0d9488;
  --ax-teal-600: #0d9488;
  --ax-teal-500: #14b8a6;
  --ax-teal-400: #2dd4bf;
  --ax-teal-300: #5eead4;
  --ax-mint-100: #ccfbf1;
  --ax-mint-50:  #f0fdfa;
  --ax-ink:      #0a2236;
  --ax-muted:    #5b7572;
  --ax-line:     #e2e8f0;
  --ax-shadow-lg: 0 28px 70px -30px rgba(13,148,136,.45);
  --ax-shadow-sm: 0 12px 32px -18px rgba(13,148,136,.35);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.75;
}
.ax-zanas-hero *,
.ax-zanas-intro *,
.ax-zanas-block *,
.ax-zanas-stats *,
.ax-zanas-closing * { box-sizing: border-box; }
.ax-zanas-hero h1,
.ax-zanas-block h2,
.ax-zanas-block h3,
.ax-zanas-stats h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.022em;
}
.ax-zanas-wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.ax-zanas-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* HERO */
.ax-zanas-hero {
  background: linear-gradient(135deg, var(--ax-teal-900) 0%, var(--ax-teal-800) 35%, var(--ax-teal-700) 70%, var(--ax-teal-600) 100%);
  color: #fff;
  padding: 96px 0 150px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ax-zanas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(125deg, rgba(255,255,255,.045) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(55deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px);
}
.ax-zanas-hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.18), transparent 70%);
  top: -240px; right: -150px;
  pointer-events: none;
  z-index: 0;
}
.ax-zanas__crosses { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.ax-zanas__crosses .c { position: absolute; transform: rotate(18deg); }
.ax-zanas__crosses .c i { position: absolute; background: rgba(255,255,255,.055); border-radius: 18px; }
.ax-zanas__crosses .c i.v { left: 50%; top: 0; width: 26%; height: 100%; transform: translateX(-50%); }
.ax-zanas__crosses .c i.h { top: 50%; left: 0; height: 26%; width: 100%; transform: translateY(-50%); }
.ax-zanas__crosses .c1 { width: 300px; height: 300px; right: -70px; top: -90px; }
.ax-zanas__crosses .c2 { width: 200px; height: 200px; right: 160px; top: 120px; opacity: .7; }
.ax-zanas__crosses .c3 { width: 150px; height: 150px; left: -50px; bottom: -30px; opacity: .6; }
.ax-zanas-hero .ax-zanas-wrap { position: relative; z-index: 3; }
.ax-zanas__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #fff;
}
.ax-zanas__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-300);
  box-shadow: 0 0 10px var(--ax-teal-300);
}
.ax-zanas-hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  max-width: 18ch;
  margin: 0 auto;
  color: #fff;
}
.ax-zanas-hero h1 span { color: var(--ax-teal-300); }
.ax-zanas-hero p {
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  max-width: 62ch;
  font-weight: 400;
}

/* INTRO CARD */
.ax-zanas-intro { margin-top: -92px; position: relative; z-index: 6; }
.ax-zanas__card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 26px;
  box-shadow: var(--ax-shadow-lg);
  padding: 58px 64px;
}
.ax-zanas__lead {
  font-size: 21px;
  color: var(--ax-ink);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 22px;
}
.ax-zanas__card p { color: var(--ax-muted); font-size: 16.5px; margin-bottom: 18px; }
.ax-zanas__card p:last-child { margin-bottom: 0; }
.ax-zanas__card strong { color: var(--ax-ink); }
.ax-zanas__card a { color: var(--ax-teal-600); text-decoration: none; }
.ax-zanas__card a:hover { text-decoration: underline; }

/* SECTION */
.ax-zanas-block { padding: 90px 0; background: #fff; }
.ax-zanas__eyebrow {
  color: var(--ax-teal-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.ax-zanas__sec-title {
  font-size: clamp(28px, 3.8vw, 42px);
  text-align: center;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--ax-ink);
}
.ax-zanas__sec-sub {
  color: var(--ax-muted);
  font-size: 17px;
  text-align: center;
  max-width: 60ch;
  margin: 16px auto 0;
}

/* FEATURE GRID */
.ax-zanas__feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ax-zanas__fcard {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 20px;
  padding: 34px 30px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ax-zanas__fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--ax-shadow-sm);
  border-color: var(--ax-teal-400);
}
.ax-zanas__ficon {
  width: 54px; height: 54px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(140deg, var(--ax-teal-600), var(--ax-teal-400));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(13,148,136,.6);
}
.ax-zanas__ficon svg {
  width: 26px; height: 26px;
  stroke: #fff; fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ax-zanas__fcard h3 { font-size: 19px; color: var(--ax-teal-900); margin-bottom: 10px; }
.ax-zanas__fcard p { color: var(--ax-muted); font-size: 15px; line-height: 1.65; }

/* STATS BAND */
.ax-zanas-stats {
  background: linear-gradient(135deg, var(--ax-teal-900), var(--ax-teal-700));
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.ax-zanas-stats::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.16), transparent 70%);
  top: -260px; left: -160px;
  pointer-events: none;
}
.ax-zanas-stats .ax-zanas-wrap { position: relative; z-index: 2; }
.ax-zanas-stats .ax-zanas__eyebrow { color: var(--ax-teal-300); }
.ax-zanas-stats .ax-zanas__sec-title { color: #fff; }
.ax-zanas__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  margin-top: 50px;
}
.ax-zanas__st .n {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.ax-zanas__st .l {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  margin-top: 6px;
}

/* CLOSING */
.ax-zanas-closing { padding: 96px 0; text-align: center; background: #fff; }
.ax-zanas__quote {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ax-teal-900);
  max-width: 24ch;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.ax-zanas__quote span { color: var(--ax-teal-500); }
.ax-zanas-closing p {
  color: var(--ax-muted);
  font-size: 17px;
  max-width: 54ch;
  margin: 0 auto 32px;
}
.ax-zanas__btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ax-zanas__btn-primary {
  background: var(--ax-teal-700);
  color: #fff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  transition: .25s;
}
.ax-zanas__btn-primary:hover {
  background: var(--ax-teal-800);
  transform: translateY(-2px);
}
.ax-zanas__btn-ghost {
  background: #fff;
  color: var(--ax-teal-800);
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  border: 1.5px solid var(--ax-line);
  text-decoration: none;
  transition: .25s;
}
.ax-zanas__btn-ghost:hover {
  border-color: var(--ax-teal-500);
  color: var(--ax-teal-600);
}
.ax-zanas__btn-ghost .arr {
  display: inline-block;
  margin-left: 8px;
  transition: transform .25s;
}
.ax-zanas__btn-ghost:hover .arr { transform: translateX(4px); }

@media (max-width: 860px) {
  .ax-zanas__card { padding: 38px 26px; }
  .ax-zanas__feat { grid-template-columns: 1fr; }
  .ax-zanas__stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
}

/* ============================================================
   19. Функционалности — UniRx product modules (added 2026-05-21)
   Скоп: всичко под .ax-func*  (teal палитра, уеднинена с products)
   ============================================================ */
.ax-func-hero,
.ax-func-intro,
.ax-func-benefits,
.ax-func-list,
.ax-func-closing {
  --ax-teal-900: #0b3d40;
  --ax-teal-800: #11595d;
  --ax-teal-700: #0d9488;
  --ax-teal-600: #0d9488;
  --ax-teal-500: #14b8a6;
  --ax-teal-400: #2dd4bf;
  --ax-teal-300: #5eead4;
  --ax-mint-100: #ccfbf1;
  --ax-mint-50:  #f0fdfa;
  --ax-ink:      #0a2236;
  --ax-muted:    #5b7572;
  --ax-line:     #e2e8f0;
  --ax-shadow-lg: 0 28px 70px -30px rgba(13,148,136,.45);
  --ax-shadow-sm: 0 12px 32px -18px rgba(13,148,136,.35);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.7;
}
.ax-func-hero *,
.ax-func-intro *,
.ax-func-benefits *,
.ax-func-list *,
.ax-func-closing * { box-sizing: border-box; }
.ax-func-hero h1,
.ax-func-benefits h2,
.ax-func-list h2,
.ax-func-list h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.022em;
}
.ax-func-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.ax-func-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* HERO */
.ax-func-hero {
  background: linear-gradient(135deg, var(--ax-teal-900) 0%, var(--ax-teal-800) 35%, var(--ax-teal-700) 70%, var(--ax-teal-600) 100%);
  color: #fff;
  padding: 96px 0 150px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ax-func-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(125deg, rgba(255,255,255,.045) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(55deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px);
}
.ax-func-hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.18), transparent 70%);
  top: -240px; right: -150px;
  pointer-events: none;
}
.ax-func-hero .ax-func-wrap { position: relative; z-index: 3; }
.ax-func__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #fff;
}
.ax-func__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-300);
  box-shadow: 0 0 10px var(--ax-teal-300);
}
.ax-func-hero h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  max-width: 22ch;
  margin: 0 auto;
  color: #fff;
}
.ax-func-hero h1 span { color: var(--ax-teal-300); }
.ax-func-hero p {
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  max-width: 64ch;
  font-weight: 400;
}

/* INTRO CARD */
.ax-func-intro { margin-top: -92px; position: relative; z-index: 6; }
.ax-func__card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 26px;
  box-shadow: var(--ax-shadow-lg);
  padding: 46px 56px;
}
.ax-func__lead {
  font-size: 19px;
  color: var(--ax-ink);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* BENEFITS — „Какво постигате с UniRx" */
.ax-func-benefits { padding: 90px 0; background: #fff; }
.ax-func__eyebrow {
  color: var(--ax-teal-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.ax-func__sec-title {
  font-size: clamp(28px, 3.8vw, 42px);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--ax-ink);
}
.ax-func__sec-sub {
  color: var(--ax-muted);
  font-size: 17px;
  text-align: center;
  max-width: 60ch;
  margin: 16px auto 0;
}
.ax-func__bgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.ax-func__bitem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--ax-mint-50);
  border: 1px solid var(--ax-line);
  border-radius: 12px;
  padding: 16px 14px;
}
.ax-func__bitem .ic {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--ax-teal-600);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
}
.ax-func__bitem p {
  color: var(--ax-ink);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* FUNCTIONALITIES — 7 cards */
.ax-func-list {
  padding: 90px 0;
  background: var(--ax-mint-50);
  border-top: 1px solid var(--ax-line);
  border-bottom: 1px solid var(--ax-line);
}
.ax-func__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.ax-func__fcard {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 20px;
  padding: 30px 30px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ax-func__fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--ax-shadow-sm);
  border-color: var(--ax-teal-400);
}
.ax-func__fhead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ax-func__ficon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--ax-teal-600), var(--ax-teal-400));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(13,148,136,.55);
}
.ax-func__ficon svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ax-func__fcard h3 { font-size: 18px; color: var(--ax-teal-900); margin: 0; }
.ax-func__flist { list-style: none; padding: 0; margin: 0; }
.ax-func__flist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  color: var(--ax-ink);
  font-size: 14.5px;
  line-height: 1.55;
}
.ax-func__flist li::before {
  flex: none;
  content: "✓";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(20,184,166,.18);
  color: var(--ax-teal-700);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 11px;
  margin-top: 2px;
}

/* CLOSING */
.ax-func-closing { padding: 96px 0; text-align: center; background: #fff; }
.ax-func__quote {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ax-teal-900);
  max-width: 26ch;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.ax-func__quote span { color: var(--ax-teal-500); }
.ax-func-closing p {
  color: var(--ax-muted);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto 32px;
}
.ax-func__btn {
  background: var(--ax-teal-700);
  color: #fff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  transition: .25s;
  display: inline-block;
  text-decoration: none;
}
.ax-func__btn:hover {
  background: var(--ax-teal-800);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .ax-func__bgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .ax-func__card { padding: 32px 24px; }
  .ax-func__fcard { padding: 26px 22px; }
}
@media (max-width: 680px) {
  .ax-func__bgrid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   20. Конкурентни предимства (added 2026-05-21)
   Скоп: всичко под .ax-pred*  (teal палитра)
   ============================================================ */
.ax-pred-hero,
.ax-pred-intro,
.ax-pred-list,
.ax-pred-closing {
  --ax-teal-900: #0b3d40;
  --ax-teal-800: #11595d;
  --ax-teal-700: #0d9488;
  --ax-teal-600: #0d9488;
  --ax-teal-500: #14b8a6;
  --ax-teal-400: #2dd4bf;
  --ax-teal-300: #5eead4;
  --ax-mint-100: #ccfbf1;
  --ax-mint-50:  #f0fdfa;
  --ax-ink:      #0a2236;
  --ax-muted:    #5b7572;
  --ax-line:     #e2e8f0;
  --ax-shadow-lg: 0 28px 70px -30px rgba(13,148,136,.45);
  --ax-shadow-sm: 0 12px 32px -18px rgba(13,148,136,.35);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ax-ink);
  line-height: 1.7;
}
.ax-pred-hero *,
.ax-pred-intro *,
.ax-pred-list *,
.ax-pred-closing * { box-sizing: border-box; }
.ax-pred-hero h1,
.ax-pred-list h2,
.ax-pred-list h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.022em;
}
.ax-pred-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.ax-pred-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* HERO */
.ax-pred-hero {
  background: linear-gradient(135deg, var(--ax-teal-900) 0%, var(--ax-teal-800) 35%, var(--ax-teal-700) 70%, var(--ax-teal-600) 100%);
  color: #fff;
  padding: 96px 0 150px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ax-pred-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(125deg, rgba(255,255,255,.045) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(55deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px);
}
.ax-pred-hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.18), transparent 70%);
  top: -240px; right: -150px;
  pointer-events: none;
}
.ax-pred-hero .ax-pred-wrap { position: relative; z-index: 3; }
.ax-pred__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #fff;
}
.ax-pred__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ax-teal-300);
  box-shadow: 0 0 10px var(--ax-teal-300);
}
.ax-pred-hero h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  max-width: 22ch;
  margin: 0 auto;
  color: #fff;
}
.ax-pred-hero h1 span { color: var(--ax-teal-300); }
.ax-pred-hero p {
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  max-width: 64ch;
  font-weight: 400;
}

/* INTRO CARD */
.ax-pred-intro { margin-top: -92px; position: relative; z-index: 6; }
.ax-pred__card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 26px;
  box-shadow: var(--ax-shadow-lg);
  padding: 46px 56px;
}
.ax-pred__lead {
  font-size: 19px;
  color: var(--ax-ink);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ADVANTAGES LIST — 2 cols */
.ax-pred-list { padding: 90px 0; background: #fff; }
.ax-pred__eyebrow {
  color: var(--ax-teal-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.ax-pred__sec-title {
  font-size: clamp(28px, 3.8vw, 42px);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--ax-ink);
}
.ax-pred__sec-sub {
  color: var(--ax-muted);
  font-size: 17px;
  text-align: center;
  max-width: 60ch;
  margin: 16px auto 0;
}
.ax-pred__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.ax-pred__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  padding: 24px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ax-pred__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--ax-shadow-sm);
  border-color: var(--ax-teal-400);
}
.ax-pred__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--ax-teal-600), var(--ax-teal-400));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(13,148,136,.5);
}
.ax-pred__icon svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ax-pred__text h3 { font-size: 16.5px; color: var(--ax-teal-900); margin: 0 0 6px; font-weight: 700; }
.ax-pred__text p { color: var(--ax-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* CLOSING */
.ax-pred-closing { padding: 90px 0; text-align: center; background: #fff; }
.ax-pred__quote {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ax-teal-900);
  max-width: 26ch;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.ax-pred__quote span { color: var(--ax-teal-500); }
.ax-pred-closing p {
  color: var(--ax-muted);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto 32px;
}
.ax-pred__btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ax-pred__btn {
  background: var(--ax-teal-700);
  color: #fff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  transition: .25s;
  display: inline-block;
  text-decoration: none;
}
.ax-pred__btn:hover {
  background: var(--ax-teal-800);
  transform: translateY(-2px);
}
.ax-pred__btn--ghost {
  background: #fff;
  color: var(--ax-teal-800);
  border: 1.5px solid var(--ax-line);
}
.ax-pred__btn--ghost:hover {
  border-color: var(--ax-teal-500);
  color: var(--ax-teal-600);
  background: #fff;
}

@media (max-width: 860px) {
  .ax-pred__grid { grid-template-columns: 1fr; }
  .ax-pred__card { padding: 32px 24px; }
}

/* ============================================================
   21. Fix :visited/:hover text color на CTA бутоните (2026-05-21)
   Браузърите принудително пазят visited color (privacy) — без explicit
   :visited правило тестът се вижда в default синьо/лилаво с подчертаване.
   ============================================================ */

/* PRIMARY (бял текст на teal фон) */
.ax-zanas__btn-primary,
.ax-zanas__btn-primary:link,
.ax-zanas__btn-primary:visited,
.ax-zanas__btn-primary:hover,
.ax-zanas__btn-primary:active,
.ax-func__btn,
.ax-func__btn:link,
.ax-func__btn:visited,
.ax-func__btn:hover,
.ax-func__btn:active,
.ax-pred__btn,
.ax-pred__btn:link,
.ax-pred__btn:visited,
.ax-pred__btn:hover,
.ax-pred__btn:active {
  color: #fff;
  text-decoration: none;
}

/* GHOST (teal текст на бял фон) */
.ax-zanas__btn-ghost,
.ax-zanas__btn-ghost:link,
.ax-zanas__btn-ghost:visited,
.ax-zanas__btn-ghost:active,
.ax-pred__btn--ghost,
.ax-pred__btn--ghost:link,
.ax-pred__btn--ghost:visited,
.ax-pred__btn--ghost:active {
  color: #11595d;
  text-decoration: none;
}
.ax-zanas__btn-ghost:hover,
.ax-pred__btn--ghost:hover {
  color: #0d9488;
  text-decoration: none;
}

/* COOKIES CTA + Cookies band button */
.ax-cookies__cta,
.ax-cookies__cta:link,
.ax-cookies__cta:visited,
.ax-cookies__cta:hover,
.ax-cookies__cta:active {
  text-decoration: none;
}
