/* font — loaded from HTML <link> with display=swap */

/* Skip link — hidden until keyboard focus */
.skip,
a.skip {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  z-index: 10000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  padding: 10px 16px;
  background: #fff;
  color: #121212;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.12);
}
.skip:focus,
.skip:focus-visible,
a.skip:focus,
a.skip:focus-visible {
  left: 0 !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  outline: 2px solid var(--base-color, #f55608);
  outline-offset: 2px;
}

/* ===================================
    Crafto - Marketing strategy
====================================== */

/* variable */
:root {
  --dark-gray: #121212;
  --base-color: #f55608;
  --medium-gray: #5a5a5a;
  --alt-font: "Funnel Display", sans-serif;
  --primary-font: 'Inter', sans-serif;
}

/* Home hero: full width + clear sticky header */
.cabi-home-hero {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  padding-top: 108px;
  background: transparent !important;
  background-image: none !important;
}
/* Continuous page canvas (no section bands) */
body[data-page="home"] {
  background-color: #edece3;
  background-image: none;
}
body[data-page="home"] main#continut {
  background: transparent;
  display: block;
  width: 100%;
}
body[data-page="home"] main#continut > section,
body[data-page="home"] main#continut > div {
  display: block;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}
body[data-page="home"] header {
  background-color: rgba(237, 236, 227, 0.96);
}
.cabi-home-hero .container-fluid {
  width: 100%;
  max-width: none;
}
/* Home hero: image stays fully readable; scales with viewport */
.cabi-home-hero .cabi-stack-split {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
}
.cabi-home-hero .cabi-stack-split-text {
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 56px) clamp(24px, 3vw, 48px) clamp(28px, 3.5vw, 56px) clamp(28px, 3.5vw, 56px);
}
.cabi-home-hero .cabi-stack-split-copy h1,
.cabi-home-hero .cabi-stack-split-copy h1.fs-60,
.cabi-home-hero .cabi-stack-split-copy h1.lg-fs-50 {
  font-size: clamp(1.65rem, 2.1vw, 2.85rem) !important;
  line-height: 1.18 !important;
  margin-bottom: 14px !important;
}
.cabi-home-hero .cabi-stack-split-copy p {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.45;
}
.cabi-home-hero .cabi-stack-split-media {
  position: relative;
  align-self: center;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  background: #1e1e22;
  display: block;
  overflow: hidden;
}
.cabi-home-hero .cabi-stack-split-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Laptop / tablet: stack so the full photo is visible */
@media (max-width: 1199px) {
  .cabi-home-hero {
    padding-top: 96px;
  }
  .cabi-home-hero .cabi-stack-split {
    grid-template-columns: 1fr;
  }
  .cabi-home-hero .cabi-stack-split-text {
    padding: 36px 32px;
  }
  .cabi-home-hero .cabi-stack-split-media {
    align-self: stretch;
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  .cabi-home-hero .cabi-stack-split-copy h1,
  .cabi-home-hero .cabi-stack-split-copy h1.fs-60,
  .cabi-home-hero .cabi-stack-split-copy h1.lg-fs-50 {
    font-size: clamp(1.75rem, 4.2vw, 2.4rem) !important;
  }
}
@media (max-width: 991px) {
  .cabi-home-hero {
    padding-top: 88px;
  }
  .cabi-home-hero .cabi-stack-split-text {
    padding: 32px 24px;
  }
  .cabi-home-hero .cabi-stack-split-media {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }
}
@media (max-width: 575px) {
  .cabi-home-hero {
    padding-top: 78px;
  }
  .cabi-home-hero .cabi-stack-split-text {
    padding: 28px 20px;
  }
  .cabi-home-hero .cabi-stack-split-media {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
  .cabi-home-hero .cabi-stack-split-copy h1 {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
  }
}

/* Pricing hero — abstract brand glow behind copy */
.cabi-pricing-hero .cabi-stack-split-text {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #1a1a1c;
}
.cabi-pricing-hero .cabi-pricing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  pointer-events: none;
  user-select: none;
}
.cabi-pricing-hero .cabi-stack-split-text::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(18, 18, 20, 0.72) 0%,
    rgba(18, 18, 20, 0.38) 48%,
    rgba(18, 18, 20, 0.12) 100%
  );
}
.cabi-pricing-hero .cabi-stack-split-copy,
.cabi-pricing-hero .cabi-stack-split-text > :not(.cabi-pricing-hero-bg) {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .cabi-pricing-hero .cabi-pricing-hero-bg {
    object-position: center 30%;
  }
  .cabi-pricing-hero .cabi-stack-split-text {
    background: #1a1a1c !important;
  }
  .cabi-pricing-hero .cabi-stack-split-text::after {
    background: linear-gradient(
      180deg,
      rgba(18, 18, 20, 0.55) 0%,
      rgba(18, 18, 20, 0.42) 100%
    );
  }
}

/* Contact — real person */
.cabi-contact-person {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 8px 0 24px;
}
.cabi-contact-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  flex-shrink: 0;
  background: #e8e8ea;
}
.cabi-contact-person-copy address {
  font-style: normal;
  margin-bottom: 10px;
}
.cabi-contact-person-copy {
  min-width: 0;
  flex: 1;
}
@media (max-width: 575px) {
  .cabi-contact-person {
    flex-direction: column;
    gap: 18px;
  }
  .cabi-contact-photo {
    width: 112px;
    height: 112px;
  }
}

/* reset */
body {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-gray);
}
a {
  color: var(--dark-gray);
}
/* heading */
h1,
.h1 {
  font-size: 5.125rem;
  line-height: 5rem;
}
h2 {
  font-size: 4.5rem;
  line-height: 4.2rem;
}
h3 {
  font-size: 3.875rem;
  line-height: 3.4rem;
}
h6,
.h6 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
/* button */
.btn-icon i,
.btn-icon .cabi-ico {
  position: relative;
  top: 2px;
}

/* Homepage: inline SVG icons (no icon font CSS/files) */
.cabi-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.cabi-ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.icon-extra-medium .cabi-ico,
.cabi-ico-wrap.icon-extra-medium .cabi-ico {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.feature-box-icon .cabi-ico,
.feature-box-icon .icon-extra-medium {
  display: inline-flex;
  color: var(--base-color, #F55608);
}
.video-icon .cabi-ico {
  width: 18px;
  height: 18px;
  position: relative;
  left: 1px;
}
.cabi-card-planner-zoom .cabi-ico {
  width: 16px;
  height: 16px;
}
.accordion-title .cabi-ico-chevron {
  transition: transform 0.25s ease;
}
.accordion-item.active-accordion .cabi-ico-chevron {
  transform: rotate(180deg);
}
.scroll-top-arrow .cabi-ico {
  width: 20px;
  height: 20px;
  display: block;
  margin: 16px auto 0;
}
.btn {
  letter-spacing: 0;
  text-transform: none;
}
.btn.btn-large {
  font-size: 16px;
  padding: 18px 34px;
}
.btn.btn-rounded.btn-large {
  padding: 12px 28px;
}
.btn.btn-rounded.btn-extra-large {
  padding: 16px 34px;
}
/* header */
header .navbar-brand img {
  max-height: 26px;
  height: 26px;
  width: auto;
}
header {
  z-index: 1030;
  overflow: visible;
}
header .navbar {
  width: 100%;
  left: 0;
  right: 0;
  padding-left: 40px;
  padding-right: 40px;
  overflow: visible;
}
header.sticky .navbar.sticky-header,
header.sticky.sticky-active .navbar.sticky-header {
  background-color: rgba(237, 236, 227, 0.94) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(18, 18, 18, 0.08);
  border-bottom-color: rgba(18, 18, 18, 0.08) !important;
}
header.sticky .navbar.sticky-header .navbar-brand {
  padding: 16px 0;
}
header .header-icon {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: visible;
  gap: 4px;
}

header nav.navbar.sticky-header {
  flex-wrap: nowrap;
}
header nav.navbar > .cabi-nav-bar {
  flex: 1 1 100%;
  width: 100%;
}

html.cabi-app,
html.cabi-app body.cabi-app {
  height: 100%;
  height: 100dvh;
  margin: 0;
  overflow: hidden;
}
body.cabi-app {
  display: flex;
  flex-direction: column;
  background: #edede3;
}
body.cabi-app header {
  flex: 0 0 auto;
  position: relative !important;
  z-index: 20;
  background: rgba(237, 236, 227, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
body.cabi-app header .navbar {
  position: relative !important;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}
body.cabi-app header .cabi-nav-bar {
  min-height: 52px;
  gap: 8px 12px;
}
body.cabi-app header .navbar-brand {
  padding: 8px 0 !important;
}
body.cabi-app header .navbar-brand img {
  height: 26px;
  width: auto;
}
body.cabi-app header ul.cabi-nav > li > a {
  padding: 6px 12px 14px;
  font-size: 13px;
}
body.cabi-app header .cabi-nav-demo {
  padding: 6px 14px !important;
  font-size: 13px;
}
.cabi-app-main {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  background: #edede3;
}
.cabi-app-main iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #edede3;
}
@media (max-width: 1199px) {
  body.cabi-app header .cabi-nav-bar {
    min-height: 0;
  }
}
header .cabi-nav-bar {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 12px 16px;
  min-height: 72px;
}
header .cabi-nav-bar .navbar-brand {
  width: auto !important;
  margin: 0 !important;
  justify-self: start;
}
header ul.cabi-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  justify-self: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0 0 2px;
  width: auto;
  max-width: none;
  position: relative;
}
header ul.cabi-nav > li {
  display: inline-flex !important;
  width: auto !important;
  float: none !important;
  margin: 0;
  padding: 0;
}
header ul.cabi-nav > li > a {
  display: inline-flex !important;
  align-items: center;
  padding: 8px 13px 16px;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.2;
  color: var(--dark-gray);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  position: relative;
  transition: color .25s ease;
}
header ul.cabi-nav > li > a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: auto;
  bottom: 2px;
  width: 1px;
  height: 11px;
  background: rgba(18, 18, 18, .28);
  transform: rotate(-38deg);
  transform-origin: 50% 55%;
  transition: height .28s cubic-bezier(.22, 1, .36, 1), background .25s, bottom .28s;
  z-index: 2;
}
header ul.cabi-nav > li > a::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 11px;
  bottom: 8px;
  height: 1px;
  background: rgba(18, 18, 18, .22);
  transform: none;
  transform-origin: left center;
  transition: background .25s ease;
  z-index: 1;
}
header ul.cabi-nav > li > a:hover {
  color: var(--dark-gray);
  background: transparent;
  box-shadow: none;
}
header ul.cabi-nav > li > a:hover::before,
header ul.cabi-nav > li > a.is-current::before {
  background: var(--base-color);
}
header ul.cabi-nav > li > a:hover::after,
header ul.cabi-nav > li > a.is-current::after {
  height: 13px;
  bottom: 1px;
  background: var(--base-color);
  transform: rotate(-38deg);
}
header ul.cabi-nav > li > a.is-current {
  color: var(--base-color);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}
header ul.cabi-nav > li.cabi-nav-planner {
  margin-left: 8px;
  margin-right: 2px;
  padding-left: 12px;
  padding-right: 8px;
  border-left: 1px solid rgba(18, 18, 18, .14);
  border-right: 1px solid rgba(18, 18, 18, .14);
  align-items: flex-end;
  gap: 0;
}
header ul.cabi-nav > li.cabi-nav-planner > a:not(.cabi-planner-pop) {
  padding-right: 8px;
}
header ul.cabi-nav > li.cabi-nav-planner > a:not(.cabi-planner-pop)::after {
  right: 8px;
}
header a.cabi-planner-pop {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 2px 10px 0;
  padding: 0 !important;
  border-radius: 8px;
  color: var(--dark-gray);
  text-decoration: none;
  opacity: .72;
  transition: color .2s ease, background .2s ease, opacity .2s ease;
}
header a.cabi-planner-pop::before,
header a.cabi-planner-pop::after {
  display: none !important;
  content: none !important;
}
header a.cabi-planner-pop:hover {
  color: var(--base-color);
  background: rgba(245, 86, 8, .08);
  opacity: 1;
}
.cabi-overlay-planner-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 22px auto 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease .32s, transform .4s ease .32s;
}
html.cabi-nav-open .cabi-overlay-planner-row {
  opacity: 1;
  transform: none;
}
.cabi-overlay .cabi-overlay-planner {
  display: block;
  width: fit-content;
  margin: 0;
  padding: 10px 18px;
  border-top: 1px solid rgba(18, 18, 18, .12);
  border-bottom: 1px solid rgba(18, 18, 18, .12);
  border-radius: 0;
  background: transparent;
  color: var(--dark-gray) !important;
  font-family: "Funnel Display", sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.35rem) !important;
  font-weight: 500;
  text-decoration: none;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: color .2s;
}
html.cabi-nav-open .cabi-overlay .cabi-overlay-planner {
  opacity: 1;
  transform: none;
}
.cabi-overlay .cabi-overlay-planner.is-current,
.cabi-overlay .cabi-overlay-planner:hover {
  color: var(--base-color) !important;
  background: transparent;
  box-shadow: none;
}
.cabi-overlay-planner-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, .16);
  color: var(--dark-gray);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.cabi-overlay-planner-pop:hover {
  color: var(--base-color);
  border-color: var(--base-color);
}
header .cabi-nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
header .cabi-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18,18,18,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
header .cabi-nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--dark-gray);
  border-radius: 2px;
}
@media (max-width: 1199px) {
  header .cabi-nav-bar {
    grid-template-columns: 1fr auto;
  }
  header ul.cabi-nav {
    display: none !important;
  }
  .cabi-burger {
    display: inline-flex !important;
  }
}
.header-push-button .push-button span {
  background: var(--dark-gray);
}
.header-button .btn.btn-transparent-light-gray {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-gray);
  border-width: 1px;
  white-space: nowrap;
}
.header-button .btn .indicator {
  height: 8px;
  width: 8px;
  background-color: var(--base-color);
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.header-button .btn .indicator:after {
  content: "";
  background: rgba(245, 86, 8, 0.5);
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  border-radius: 50%;
  -webkit-animation: indicatorwave 1.6s linear infinite;
  animation: indicatorwave 1.6s linear infinite;
}
.hamburger-menu-simple .menu-item-list .nav-link {
  font-size: 50px;
  line-height: 30px;
  padding-right: 0;
}
/* background color */
.bg-narvik {
  background-color: #edece3;
}
.bg-dark-gray-transparent-medium {
  background-color: rgba(18, 18, 18, 0.4);
}
.bg-base-transparent-extra-light {
  background-color: rgba(245, 86, 8, 0.1);
}
.bg-white-transparent-medium {
  background-color: rgba(255, 255, 255, 0.5);
}
/* gradient background color */
.bg-gradient-top-green {
  background-image: linear-gradient(to top, #edece3, #c9c4b5);
}
/* border color */
.border-color-transparent-dark-light {
  border-color: rgba(18, 18, 18, 0.15) !important;
}
/* top */
.top-minus-180px {
  top: -180px;
}
.right-minus-250px {
  right: -250px
}
/* margin top minus */
.mt-minus-300px {
  margin-top: -300px;
}
/* padding */
@media (min-width: 1400px) {
  .p-80px {
    padding: 80px !important;
  }
}
/* accordion style 02 */
.accordion-style-02 .accordion-item .accordion-header {
  padding: 25px 0;
}
/* progress bar style 02 */
.progress-bar-style-02 .progress {
  height: 35px;
}
.progress-bar-style-02 .progress .progress-bar-title,
.progress-bar-style-02 .progress .progress-bar-percent {
  top: 50%;
  transform: translateY(-50%);
}
/* Contact form style 03 */
.contact-form-style-03 .form-group .form-icon {
  right: 0;
}
.contact-form-style-03 .form-control,
.contact-form-style-03 .form-control {
  font-size: 17px;
  letter-spacing: -0.5px;
}
/* animation rotation */
.animation-rotation-slow {
  -webkit-animation: rotation 16s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}
@-webkit-keyframes indicatorwave {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 86, 8, 0.05);
    box-shadow: 0 0 0 0px rgba(245, 86, 8, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
}
@keyframes indicatorwave {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 86, 8, 0.05);
    box-shadow: 0 0 0 0px rgba(245, 86, 8, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
}
.h-100vh {
  height: 100vh;
}
/* overflow */
.overflow-x-clip {
  overflow-x: clip;
}
/* footer */
footer {
  border-radius: 20px 20px 0 0;
  padding-bottom: 50px;
  padding-top: 50px;
  letter-spacing: 0;
}
footer.footer-dark,
footer.bg-dark-gray {
  background-color: #2a2a32 !important;
  background-image: linear-gradient(180deg, #3a3a44 0%, #25252c 55%, #1e1e24 100%) !important;
}
footer .nav-link {
  padding-left: 25px;
  padding-right: 25px;
}
footer .footer-logo img {
  max-height: 28px;
  height: 28px;
  width: auto;
  opacity: 0.72;
  filter: brightness(0) invert(1);
}
footer .footer-logo:hover img {
  opacity: 0.95;
}
footer .social li {
  margin-bottom: 0;
}
/* Anime.js line reveals — avoid inline perspective on every heading */
.anime-lines,
[data-anime*='"el": "lines"'] {
  perspective: 400px;
}
a.anime-lines,
a[data-anime*='"el": "lines"'] {
  display: inline-block;
}
.footer-dark,
.footer-dark a,
.footer-dark p {
  color: #898989;
}
.footer-navbar li a:hover,
.footer-dark a:hover {
  color: var(--white);
}
.html-video {
  pointer-events: none;
  background-color: transparent;
  mix-blend-mode: multiply;
}


.cabi-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.cabi-hero-photo {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
  .cabi-hero-photo {
    max-width: 520px;
  }
}
h1.cabi-hero-title {
  font-size: clamp(2.05rem, 3vw, 3.15rem);
  line-height: 1.14;
  font-weight: 500;
  max-width: 100%;
}
.cabi-hero-seo {
  max-width: 22rem;
  opacity: 0.72;
}
.cabi-hero-side {
  background: none;
  min-width: 0;
}
.cabi-hero-side > p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 28rem;
}

/* Hero A — lifestyle full-bleed */
.cabi-hero-life {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1816;
}
.cabi-hero-life-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.cabi-hero-life-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(12, 10, 9, 0.88) 0%,
    rgba(12, 10, 9, 0.62) 34%,
    rgba(12, 10, 9, 0.22) 58%,
    rgba(12, 10, 9, 0) 78%
  );
}
.cabi-hero-life-content {
  position: relative;
  z-index: 2;
  width: min(640px, 92vw);
  padding: 120px 0 72px 72px;
  color: #fff;
}
.cabi-hero-life-brand {
  font-family: inherit;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: #fff;
}
.cabi-hero-life-content .cabi-hero-title {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 18px;
}
.cabi-hero-life-lead {
  max-width: 34rem;
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.cabi-hero-life-foot {
  padding: 28px 72px 36px;
  background: #f4f1ea;
}
@media (max-width: 1199px) {
  .cabi-hero-life-content {
    padding: 100px 0 56px 48px;
  }
  .cabi-hero-life-foot {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 991px) {
  .cabi-hero-life {
    min-height: 0;
    display: block;
  }
  .cabi-hero-life-bg {
    position: relative;
    height: min(58vw, 420px);
    object-position: center center;
  }
  .cabi-hero-life-shade {
    display: none;
  }
  .cabi-hero-life-content {
    width: 100%;
    padding: 36px 28px 40px;
    background: #141210;
  }
  .cabi-hero-life-content .cabi-hero-title {
    max-width: none;
  }
  .cabi-hero-life-foot {
    padding: 24px 28px 32px;
  }
}
@media (max-width: 575px) {
  .cabi-hero-life-bg {
    height: 56vw;
    min-height: 220px;
  }
  .cabi-hero-life-content {
    padding: 28px 20px 32px;
  }
}
.cabi-devices {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16 / 11.2;
  margin: 0 auto;
}
.cabi-monitor {
  position: absolute;
  width: 72%;
  left: 14%;
  top: 0;
  margin: 0;
  z-index: 1;
  transform: perspective(1600px) rotateY(-6deg) rotateX(3deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 26px rgba(18, 18, 18, .16));
}
.cabi-monitor-body {
  position: relative;
  background:
    linear-gradient(155deg, #ecece8 0%, #c5c5c0 20%, #9e9e99 48%, #b7b7b2 72%, #e4e4df 100%);
  border-radius: 14px 14px 12px 12px;
  padding: 5px 5px 14px;
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -1px 0 rgba(40,40,38,.18),
    0 0 0 1px #6f6f6b,
    0 0 0 2px #deded9,
    0 0 0 3px #8a8a85;
}
.cabi-monitor-body:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3a3a3a, #111 70%);
  box-shadow: 0 0 0 1.5px #cfcfc9, 0 0 0 2.5px rgba(245,86,8,.55);
}
.cabi-monitor-screen {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f4f2eb;
  box-shadow: inset 0 0 0 1px rgba(40,40,38,.18);
}
.cabi-monitor-screen img {
  display: block;
  width: 122%;
  max-width: none;
  height: auto;
  margin: -3% -11% -1%;
}
.cabi-monitor-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.08) 28%, rgba(255,255,255,0) 52%, rgba(255,255,255,.07) 100%);
  pointer-events: none;
}
.cabi-monitor-neck {
  display: block;
  width: 62px;
  height: 34px;
  margin: -1px auto 0;
  background:
    linear-gradient(90deg, #9b9b97 0%, #ecece8 38%, #ffffff 50%, #d2d2cd 62%, #8f8f8b 100%);
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 8px 10px rgba(255,255,255,.35);
}
.cabi-monitor-base {
  display: block;
  width: 176px;
  height: 11px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3f3ef, #b0b0ab 55%, #8a8a86);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 10px 16px rgba(18,18,18,.16);
}
.cabi-tablet {
  position: absolute;
  width: 38%;
  left: -2%;
  bottom: 2%;
  z-index: 2;
  transform: perspective(1600px) rotateY(4deg);
  filter: drop-shadow(0 16px 22px rgba(18, 18, 18, .2));
}
.cabi-tablet-body {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  background:
    linear-gradient(145deg, #efefe9 0%, #c8c8c3 22%, #9a9a95 50%, #c2c2bd 78%, #ecece6 100%);
  border-radius: 14px;
  padding: 5px 4px 5px 5px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 1px #6f6f6b,
    0 0 0 2px #deded9;
}
.cabi-tablet-screen {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #f4f2eb;
  aspect-ratio: 4 / 3;
  width: 100%;
  flex: 1 1 auto;
}
.cabi-tablet-screen img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 45%;
}
.cabi-tablet-home {
  display: block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin: 0 5px 0 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f3f3ef 0%, #c5c5c0 42%, #8d8d88 100%);
  box-shadow:
    inset 0 0 0 2px #5c5c58,
    0 0 0 1px rgba(255,255,255,.55);
}
.cabi-phone {
  position: absolute;
  width: 14.5%;
  right: -1%;
  bottom: 0;
  z-index: 3;
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
  filter: drop-shadow(0 14px 18px rgba(18, 18, 18, .22));
}
.cabi-phone-body {
  position: relative;
  background:
    linear-gradient(160deg, #f2f2ee 0%, #c6c6c1 28%, #8e8e89 52%, #d0d0cb 80%, #f4f4ef 100%);
  border-radius: 18px;
  padding: 10px 5px 12px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 1px #5e5e5a,
    0 0 0 2px #d8d8d3;
}
.cabi-phone-island {
  display: block;
  width: 38%;
  height: 6px;
  margin: 0 auto 6px;
  border-radius: 8px;
  background: #1a1a1a;
}
.cabi-phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f2eb;
  aspect-ratio: 9 / 16;
}
.cabi-phone-screen img {
  display: block;
  width: 280%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 45% 40%;
  margin-left: -70%;
}
.cabi-phone-bar {
  display: block;
  width: 34%;
  height: 3px;
  margin: 7px auto 0;
  border-radius: 4px;
  background: #3a3a3a;
}
@media (max-width: 991px) {
  .cabi-devices {
    max-width: 420px;
    aspect-ratio: 16 / 12;
  }
  .cabi-monitor {
    width: 74%;
    left: 13%;
    transform: perspective(1200px) rotateX(6deg);
  }
}
/* responsive css */
@media (max-width: 1600px) {
  /* heading */
  h1,
  .h1 {
    font-size: 4.875rem;
    line-height: 4.75rem;
  }
  h2 {
    font-size: 4.125rem;
    line-height: 4rem;
  }
  h3 {
    font-size: 3.2rem;
    line-height: 3.125rem;
  }
  h6,
  .h6 {
    line-height: 2.25rem;
  }  
}
@media (max-width: 1399px) {
  header .navbar {
    padding-left: 30px;
    padding-right: 30px;
  }
  footer .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 3.375rem;
    line-height: 3.8rem;
  }
  h3 {
    font-size: 2.775rem;
  }
  h4 {
    font-size: 2rem;
    line-height: 2.3rem;
  }
  header .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .nav-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .md-order-minus-1 {
    order: -1;
  }
  header .navbar {
    width: 100%;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .hamburger-menu-simple .menu-item-list .nav-link {
    font-size: 42px;
  }
  .video-icon-large .video-icon {
    width: 70px;
    height: 70px;
  }
  .video-icon-large .video-icon .video-icon-sonar .video-icon-sonar-bfr {
    width: 120px;
    height: 120px;
  }
  footer {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  header .navbar-brand img {
    max-height: 24px;
    height: 24px;
  }
  .footer-navbar li .nav-link {
    padding-left: .7rem;
    padding-right: .7rem;
  }
}
@media (min-width: 1600px) {
  .fs-150 {
    line-height: 8.4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .xxl-w-75 {
    width: 80% !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .xl-h-700px {
    height: 700px !important;
  }
}

/* Cabi Plan extras */
.header-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 12px;
  position: relative;
  flex-wrap: wrap;
  max-width: 220px;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .header-lang { max-width: 120px; }
  .header-lang a:nth-child(n+4) { display: none; }
}
.header-lang a, .header-lang button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--dark-gray);
}
.header-lang a.is-active, .header-lang button.is-active {
  background: var(--dark-gray);
  color: #fff;
}
.compare-row .lose { color: #a04030; }
.compare-row .win { color: var(--base-color); font-weight: 600; }
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f55608;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(245, 86, 8, 0.7);
  animation: cabiPulse 1.8s infinite;
}
@keyframes cabiPulse {
  70% { box-shadow: 0 0 0 12px rgba(245, 86, 8, 0); }
}

/* Language dropdown */
.cabi-lang {
  position: relative;
  display: inline-block;
  margin-right: 14px;
  z-index: 1040;
  vertical-align: middle;
  flex-shrink: 0;
}
.cabi-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  min-width: 0;
  width: auto !important;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--dark-gray);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.cabi-lang-btn [data-lang-code] {
  display: inline-block;
  min-width: 0;
  text-align: left;
}
.cabi-lang-btn:hover,
.cabi-lang.is-open .cabi-lang-btn {
  border-color: var(--base-color);
  background: #fff;
}
.cabi-lang-flag {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(18,18,18,.12);
}
.cabi-lang-flag svg {
  width: 20px;
  height: 14px;
  display: block;
}
.cabi-lang-code-flag {
  width: 20px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  background: #121212;
}
.cabi-lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18,18,18,.1);
  box-shadow: 0 24px 50px rgba(245,86,8,.14);
}
.cabi-lang.is-open .cabi-lang-menu { display: grid; gap: 2px; }
.cabi-lang-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  cursor: pointer;
}
.cabi-lang-item[hidden] { display: none !important; }
.cabi-lang-item:hover,
.cabi-lang-item.is-active {
  background: #f3f1e8;
}
.cabi-lang-item.is-active { color: var(--base-color); }

.cabi-account {
  position: relative;
  z-index: 1040;
  flex-shrink: 0;
}
.cabi-account-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cabi-account-btn svg {
  flex-shrink: 0;
}
header .cabi-account .btn.cabi-account-btn:hover,
header .cabi-account.is-open .btn.cabi-account-btn {
  background: var(--base-color) !important;
  background-color: var(--base-color) !important;
  border-color: var(--base-color) !important;
  color: #fff !important;
}
header .cabi-account .btn.cabi-account-btn:hover span,
header .cabi-account.is-open .btn.cabi-account-btn span {
  color: #fff !important;
}
.cabi-account-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18,18,18,.1);
  box-shadow: 0 24px 50px rgba(245,86,8,.14);
  z-index: 1041;
}
.cabi-account.is-open .cabi-account-menu {
  display: grid;
  gap: 2px;
}
.cabi-account-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  line-height: 1.3;
}
.cabi-account-menu a:hover {
  background: #f3f1e8;
  color: var(--base-color);
}

.cabi-overlay {
  position: fixed;
  inset: 0;
  z-index: 1045;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 32px;
  background: rgba(237, 236, 227, .97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .35s ease, visibility .35s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}
html.cabi-nav-open .cabi-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
html.cabi-nav-open,
html.cabi-nav-open body {
  overflow: hidden;
}
html.cabi-nav-open header {
  z-index: 1050 !important;
}
html.cabi-nav-open body.cabi-app header {
  z-index: 1050 !important;
}
.cabi-overlay-nav {
  width: min(420px, 100%);
  text-align: center;
}
.cabi-overlay-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.cabi-overlay-list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
html.cabi-nav-open .cabi-overlay-list li {
  opacity: 1;
  transform: none;
}
html.cabi-nav-open .cabi-overlay-list li:nth-child(1) { transition-delay: .05s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(2) { transition-delay: .09s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(3) { transition-delay: .13s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(4) { transition-delay: .17s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(5) { transition-delay: .21s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(6) { transition-delay: .25s; }
html.cabi-nav-open .cabi-overlay-list li:nth-child(7) { transition-delay: .29s; }
.cabi-overlay-list a {
  display: inline-block;
  padding: 10px 0;
  font-family: "Funnel Display", sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark-gray);
  text-decoration: none;
  letter-spacing: -.02em;
}
.cabi-overlay-list a.is-current,
.cabi-overlay-list a:hover {
  color: var(--base-color);
}
.cabi-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .85);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.cabi-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s;
}
html.cabi-nav-open .cabi-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
html.cabi-nav-open .cabi-burger span:nth-child(2) {
  opacity: 0;
}
html.cabi-nav-open .cabi-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.cabi-overlay .cabi-overlay-account {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 28px;
  opacity: 0;
  transition: opacity .4s ease .38s;
}
html.cabi-nav-open .cabi-overlay .cabi-overlay-account {
  opacity: 1;
}
.cabi-overlay .cabi-overlay-account a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 18, 18, .2);
  padding-bottom: 2px;
}
.cabi-overlay .cabi-overlay-account a:hover {
  color: var(--base-color);
  border-color: var(--base-color);
}
@media (min-width: 1200px) {
  .cabi-overlay {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  header ul.cabi-nav > li > a::before,
  header ul.cabi-nav > li > a::after,
  .cabi-burger span,
  .cabi-overlay,
  .cabi-overlay-list li,
  .cabi-overlay .cabi-overlay-planner,
  .cabi-overlay .cabi-overlay-account {
    transition: none;
  }
}

.compare-row .col-4:nth-child(3) { background: rgba(245,86,8,.06); }
.compare-row { font-size: 15px; }
.compare-row .col-4 { padding: 12px 16px !important; }

.compare-scroll {
  max-width: 880px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.35;
}
.compare-table th,
.compare-table td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(18,18,18,.1);
}
.compare-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: 14px;
  padding-bottom: 14px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  width: 18%;
  font-weight: 600;
  color: var(--dark-gray);
}
.compare-table td.lose { color: #6a6a6a; font-weight: 400; }
.compare-table td.mid { color: #3a3a3a; }
.compare-table thead th:last-child,
.compare-table td.win {
  background: rgba(245,86,8,.07);
  color: var(--base-color);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.page-card { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.page-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(245,86,8,.08); }
.cabi-mkt-card {
  border: 1px solid rgba(18,18,18,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.cabi-mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(245,86,8,.08);
}

.price-incl-row .col {
  position: relative;
  font-weight: 500;
}
.price-incl-row .col::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 2px;
  background: var(--base-color);
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 42px 36px 36px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(18,18,18,.06);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(245,86,8,.12);
}
.price-card.is-best {
  background: #121212;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 28px 60px rgba(18,18,18,.22);
}
.price-card.is-best:hover {
  box-shadow: 0 32px 70px rgba(245,86,8,.22);
}
.price-idx {
  display: block;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -2px;
  opacity: .18;
  margin-bottom: 18px;
  font-family: var(--alt-font);
}
.price-card.is-best .price-idx { opacity: .28; color: #fff; }
.price-amount {
  font-family: var(--alt-font);
  font-size: 4.25rem;
  line-height: .95;
  letter-spacing: -2px;
  font-weight: 500;
  color: var(--dark-gray);
  margin: 4px 0 6px;
}
.price-card.is-best .price-amount { color: var(--base-color); }
.price-vat {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  opacity: .7;
}
.price-meta {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  opacity: .75;
}
.price-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--base-color);
  background: rgba(245,86,8,.1);
  border-radius: 50px;
  padding: 6px 12px;
  margin-bottom: 18px;
}
.price-card.is-best .price-save {
  background: rgba(245,86,8,.18);
  color: #ffb48a;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.price-list li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  font-size: 14px;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--base-color);
}
.price-card.is-best .price-list li {
  border-color: rgba(255,255,255,.12);
}
.price-card .btn { margin-top: auto; }
.price-card.is-best .btn-base-color {
  background: var(--base-color);
  border-color: var(--base-color);
  color: #fff;
}
.price-card.is-best .btn-base-color:hover {
  background: #d44804;
  border-color: #d44804;
  color: #fff;
}
.price-custom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.55fr);
  gap: 28px 40px;
  align-items: center;
  padding: 40px 42px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(18,18,18,.06);
  box-shadow: 0 18px 40px rgba(18,18,18,.04);
}
.price-custom-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--base-color);
}
.price-custom-lead {
  max-width: 42rem;
  color: rgba(18,18,18,.78);
}
.price-custom-list {
  margin: 0 0 18px;
  max-width: 40rem;
}
.price-custom-note {
  font-size: 14px;
  color: rgba(18,18,18,.55);
}
.price-custom-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.price-custom-threshold {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.price-custom-threshold-num {
  font-family: var(--alt-font);
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: -2px;
  color: var(--base-color);
}
.price-custom-threshold-lbl {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(18,18,18,.55);
}
@media (max-width: 991px) {
  .price-custom {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .price-custom-aside {
    align-items: stretch;
  }
  .price-custom-aside .btn {
    width: 100%;
    text-align: center;
  }
}
.price-best {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--base-color);
  border-radius: 50px;
  padding: 7px 14px;
}
.opt-card {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(18,18,18,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.opt-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.opt-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(18,18,18,.08);
  font-size: 14px;
  line-height: 1.35;
}
.opt-price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.opt-price-list li:first-child {
  padding-top: 0;
}
.opt-price-label {
  color: rgba(18,18,18,.78);
}
.opt-price-value {
  flex-shrink: 0;
  font-weight: 600;
  color: #121212;
  text-align: right;
  white-space: nowrap;
}
.opt-price-meta {
  display: block !important;
  justify-content: flex-start !important;
  font-size: 13px !important;
  color: rgba(18,18,18,.55) !important;
  border-bottom: 0 !important;
  padding-top: 4px !important;
}
.opt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(245,86,8,.08);
}
.opt-k {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--base-color);
  margin-bottom: 14px;
}
.top-space-margin h1.alt-font {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.05;
}
@media (max-width: 991px) {
  .price-amount { font-size: 3.4rem; }
}

.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--base-color);
}

.cabi-lang-menu { z-index: 1041; }
header .header-lang { overflow: visible; max-width: none; }

@media (max-width: 767px) {
  .cabi-lang { margin-right: 0; }
  .cabi-account-btn { padding: 6px 12px !important; font-size: 13px; }
}

.top-space-margin .page-card,
.top-space-margin .bg-white.border-radius-20px {
  box-shadow: 0 18px 50px rgba(245,86,8,.06);
}
form.bg-white input.form-control,
form.bg-white textarea.form-control {
  border: 1px solid rgba(18,18,18,.12);
  border-radius: 12px;
  padding: 12px 14px;
}
form.bg-white label { display: block; margin-bottom: 6px; }

/* Hide Crafto "buy theme" / pre-built sites panel */
.theme-demos {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Back to top — replaces the demo switcher, same corner */
.scroll-top-arrow {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: none;
  border-radius: 12px;
  background: var(--base-color);
  color: #fff;
  box-shadow: 0 12px 28px rgba(245, 86, 8, 0.35);
  text-decoration: none;
  text-align: center;
  line-height: 52px;
}
.scroll-top-arrow:hover,
.scroll-top-arrow:focus {
  color: #fff;
  background: #d44804;
}
.scroll-top-arrow i {
  font-size: 20px;
  line-height: 52px;
}
.scroll-top-arrow .cabi-ico {
  margin-top: 16px;
}
.scroll-top-arrow .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cabi-gal {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: minmax(220px, 28vh) minmax(220px, 28vh);
  gap: 14px;
}
.cabi-gal .is-hero { grid-row: span 2; }
.cabi-gal .is-wide { grid-column: 1 / -1; min-height: 260px; }
.cabi-gal .gallery-box {
  height: 100%;
  margin: 0;
}
.cabi-gal a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #121212;
}
.cabi-gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.cabi-gal a:hover img,
.cabi-gal a:focus img {
  transform: scale(1.07);
}
.cabi-gal-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 22px 18px;
  background: linear-gradient(transparent, rgba(18,18,18,.78));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  pointer-events: none;
}
.cabi-gal-cap small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cabi-gal-speed {
  color: var(--base-color, #ef991f);
  font-weight: 600;
}

/* Clear section bands after gallery — full content width */
.cabi-section-band {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}
.cabi-section-band > .container-fluid {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}
.cabi-benefit-block {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px 36px;
  border: 1px solid rgba(35, 35, 35, 0.07);
}
.cabi-benefit-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: var(--base-color, #f55608);
  border-radius: 50px;
  padding: 10px 25px;
  margin-bottom: 18px;
}
.cabi-benefit-title {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}
.cabi-benefit-lead {
  display: block;
  width: 100%;
  max-width: 52rem;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
  color: #4a4a4a;
}
.cabi-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: none;
}
.cabi-benefit-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cabi-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 20px 22px;
  border-radius: 14px;
  background: #f7f4ef;
  border: 1px solid rgba(35, 35, 35, 0.05);
}
.cabi-benefit-item strong {
  display: block;
  font-family: var(--alt-font, "Funnel Display", sans-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #232323;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.cabi-benefit-item span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #5c5c5c;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
@media (max-width: 991px) {
  .cabi-benefit-block {
    padding: 28px 24px;
  }
  .cabi-benefit-grid,
  .cabi-benefit-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cabi-section-band {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cabi-benefit-block {
    padding: 22px 18px;
    border-radius: 16px;
  }
}

/* Stack cards — frosted glass (legacy parallax cards) */
.stack-item .skrollr-parallax {
  isolation: isolate;
  overflow: hidden;
}
/* Variant C: two zones — text left + photo right (no crop) */
.cabi-stack-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
  align-items: stretch;
  width: 100%;
  min-height: 520px;
  background: #2a2a2e;
  overflow: hidden;
}
.cabi-stack-split-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 56px 40px 56px 56px;
  background: linear-gradient(
    90deg,
    #2c2c32 0%,
    #35353c 40%,
    #3f3f48 70%,
    #4a4a55 100%
  );
}
.cabi-stack-split-text .cabi-stack-split-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cabi-stack-split-text .cabi-stack-split-copy {
  width: 100%;
  max-width: 34rem;
}
.cabi-stack-split-text a.fs-60,
.cabi-stack-split-text a.lg-fs-50 {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.cabi-stack-split-media {
  position: relative;
  min-height: 280px;
  min-width: 0;
  background: #1e1e22;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cabi-stack-split-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cabi-stack-split {
    min-height: 600px;
  }
  .cabi-stack-split-text {
    padding: 72px 48px 72px 72px;
  }
}
@media (max-width: 1199px) {
  .cabi-stack-split {
    min-height: 480px;
  }
  .cabi-stack-split-text {
    padding: 44px 32px;
  }
}
@media (max-width: 991px) {
  .cabi-stack-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cabi-stack-split-text {
    padding: 36px 28px;
    background: #2c2c32;
  }
  .cabi-stack-split-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 575px) {
  .cabi-stack-split-text {
    padding: 28px 20px;
  }
  .cabi-stack-split-media {
    aspect-ratio: 4 / 3;
  }
}
.stack-item .stack-glass {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(720px, 48%);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(
    to right,
    rgba(18, 18, 18, 0.55) 0%,
    rgba(18, 18, 18, 0.4) 62%,
    rgba(255, 255, 255, 0.08) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 75%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 75%, transparent 100%);
}
.stack-item .stack-glass-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .stack-item .stack-glass {
    width: min(580px, 52%);
  }
}
@media (max-width: 991px) {
  .stack-item .stack-glass {
    width: min(480px, 68%);
  }
}
@media (max-width: 767px) {
  .stack-item .stack-glass {
    width: min(420px, 88%);
  }
}

/* Duo cards: showroom + support — CSS grid (Bootstrap+anime was stacking on wide screens) */
.cabi-duo-cards {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.7fr);
  gap: 24px;
  align-items: stretch;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cabi-duo-cards > [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-width: 0;
  /* keep CSS grid layout when anime.js applies transform */
  transform-box: border-box;
}
.cabi-showroom-card {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.cabi-support-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 420px;
  padding-bottom: 40px;
}
.cabi-support-card-body {
  position: relative;
  z-index: 2;
  width: 58%;
  max-width: 100%;
  padding-right: 20px;
}
.cabi-support-card-body h3 {
  max-width: none;
}

/* Card planner preview + lightbox (same group as .cabi-gal) */
.cabi-card-planner {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 38%;
  max-width: 420px;
  margin: 0;
  height: auto;
  line-height: 0;
}
.cabi-card-planner > a {
  position: relative;
  display: block;
  cursor: zoom-in;
  border-radius: 16px 0 0 0;
  overflow: hidden;
  box-shadow: -10px -6px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cabi-card-planner > a:hover,
.cabi-card-planner > a:focus-visible {
  transform: scale(1.015);
  box-shadow: -14px -8px 36px rgba(0, 0, 0, 0.14);
}
.cabi-card-planner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: left top;
}
.cabi-card-planner-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #232323;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cabi-card-planner > a:hover .cabi-card-planner-zoom {
  transform: scale(1.08);
  background: #fff;
}

/* Tablet / mid: keep side-by-side grid, stack image under text to avoid overlap */
@media (max-width: 1199px) {
  .cabi-support-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
  }
  .cabi-support-card-body {
    width: 100%;
    padding-right: 0;
  }
  .cabi-card-planner {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin-left: auto;
  }
  .cabi-card-planner > a {
    border-radius: 16px;
  }
}

@media (max-width: 991px) {
  .cabi-duo-cards {
    grid-template-columns: 1fr;
  }
  .cabi-showroom-card {
    min-height: 360px;
  }
  .cabi-support-card {
    min-height: 0;
  }
  .cabi-support-card-body h3 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  .cabi-card-planner {
    width: 100%;
    max-width: 480px;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .cabi-showroom-card {
    min-height: 320px;
  }
  .cabi-support-card {
    padding: 24px !important;
    gap: 20px;
  }
}

.cabi-tut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cabi-tut-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 18px 50px rgba(245,86,8,.06);
  height: 100%;
}
.cabi-tut-card .nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--base-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.cabi-tut-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.cabi-tut-card ol {
  margin: 0;
  padding-left: 18px;
}
.cabi-tut-card li {
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .cabi-gal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cabi-gal .is-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }
  .cabi-gal a { min-height: 200px; }
  .cabi-tut-grid { grid-template-columns: 1fr; }
}

.cabi-vids {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cabi-vid-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(245,86,8,.06);
}
.cabi-vid-row.is-flip .cabi-vid { order: 2; }
.cabi-vid-row.is-flip .cabi-vid-copy { order: 1; }
.cabi-vid {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #121212;
  aspect-ratio: 16 / 9;
  min-height: 0;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}
.cabi-vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.cabi-vid:hover img,
.cabi-vid:focus img {
  transform: scale(1.06);
}
.cabi-vid-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f55608;
  box-shadow: 0 16px 40px rgba(245,86,8,.55), 0 0 0 10px rgba(255,255,255,.16);
  z-index: 2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cabi-vid-play:after {
  content: "";
  position: absolute;
  left: 31px;
  top: 26px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.cabi-vid:hover .cabi-vid-play,
.cabi-vid:focus .cabi-vid-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 20px 50px rgba(245,86,8,.7), 0 0 0 14px rgba(255,255,255,.22);
}
.cabi-vid-copy {
  padding: 12px 28px 12px 8px;
}
.cabi-vid-row.is-flip .cabi-vid-copy {
  padding: 12px 8px 12px 28px;
}
.cabi-vid-copy .nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--base-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.cabi-vid-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--base-color);
}
.cabi-vid-copy h3 {
  font-size: 2.15rem;
  line-height: 1.15;
  margin: 0 0 14px;
}
.cabi-vid-copy > p:not(.cabi-vid-kicker) {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--medium-gray);
}
.cabi-vid-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--base-color);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(245,86,8,.28);
  transition: transform .15s ease, background .15s ease;
}
.cabi-vid-cta:hover,
.cabi-vid-cta:focus {
  background: #ff6a1a;
  color: #fff !important;
  transform: translateY(-1px);
}
.cabi-vid-mfp {
  position: relative;
  width: min(1100px, calc(100vw - 96px));
  margin: 0 auto;
  background: #111;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.cabi-vid-mfp video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  border-radius: 20px 20px 0 0;
}
.cabi-vid-mfp-title {
  margin: 0;
  padding: 14px 20px 16px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  background: #111;
}
.cabi-vid-x {
  position: absolute;
  top: -8px;
  right: -54px;
  z-index: 6;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #121212;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
}
.cabi-vid-x:before {
  content: "\00d7";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: #121212;
}
.cabi-vid-x:hover,
.cabi-vid-x:focus {
  background: #f55608;
}
.cabi-vid-x:hover:before,
.cabi-vid-x:focus:before {
  color: #fff;
}
.mfp-wrap.cabi-vid-popup {
  overflow: visible !important;
}
.mfp-wrap.cabi-vid-popup .mfp-container {
  padding: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  overflow: visible !important;
}
.mfp-wrap.cabi-vid-popup .mfp-container:before {
  display: none !important;
  content: none !important;
}
.mfp-wrap.cabi-vid-popup .mfp-content {
  width: auto !important;
  max-width: min(1100px, calc(100vw - 96px)) !important;
  margin: 0 auto !important;
  position: relative;
  overflow: visible !important;
}
.mfp-wrap.cabi-vid-popup button.mfp-close {
  display: none !important;
}

@media (max-width: 991px) {
  .cabi-vid-row,
  .cabi-vid-row.is-flip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  .cabi-vid-row .cabi-vid,
  .cabi-vid-row.is-flip .cabi-vid {
    order: 1;
  }
  .cabi-vid-row .cabi-vid-copy,
  .cabi-vid-row.is-flip .cabi-vid-copy {
    order: 2;
    padding: 18px 10px 12px;
  }
  .cabi-vid-copy h3 { font-size: 1.65rem; }
  .cabi-vid-x {
    position: fixed;
    top: 16px;
    right: 16px;
  }
}
@media (max-width: 1399px) {
  header ul.cabi-nav > li > a { padding: 8px 11px; font-size: 13px; }
}
@media (max-width: 767px) {
  .scroll-top-arrow {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
  }
  .scroll-top-arrow i { line-height: 46px; }
  .scroll-top-arrow .cabi-ico { margin-top: 13px; width: 18px; height: 18px; }
}

.mfp-container {
  padding: 0 108px;
}
button.mfp-arrow {
  width: 72px !important;
  height: 72px !important;
  margin: -36px 0 0 !important;
  top: 50% !important;
  opacity: 1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #f55608 !important;
  box-shadow: 0 16px 40px rgba(245, 86, 8, .55), 0 0 0 7px rgba(255, 255, 255, .22);
  overflow: visible !important;
  z-index: 1050 !important;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
button.mfp-arrow:hover,
button.mfp-arrow:focus {
  opacity: 1 !important;
  background: #ff6a1a !important;
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(245, 86, 8, .7), 0 0 0 9px rgba(255, 255, 255, .28);
}
button.mfp-arrow:active {
  margin-top: -36px !important;
  transform: scale(.96);
}
button.mfp-arrow:after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}
button.mfp-arrow:before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 3.5px solid #fff !important;
  border-right: 3.5px solid #fff !important;
  background: transparent !important;
  font-size: 0 !important;
  font-family: inherit !important;
  color: transparent !important;
  line-height: 0 !important;
  opacity: 1 !important;
  box-sizing: border-box !important;
}
button.mfp-arrow-left {
  left: 28px !important;
  right: auto !important;
}
button.mfp-arrow-right {
  right: 28px !important;
  left: auto !important;
}
button.mfp-arrow-left:before {
  transform: translate(-35%, -50%) rotate(-135deg) !important;
}
button.mfp-arrow-right:before {
  transform: translate(-65%, -50%) rotate(45deg) !important;
}
.mfp-figure .mfp-close,
.mfp-image-holder .mfp-close,
button.mfp-close {
  width: 52px !important;
  height: 52px !important;
  line-height: 1 !important;
  left: auto !important;
  opacity: 1 !important;
  background: #fff !important;
  color: #121212 !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  font-weight: 400 !important;
  padding: 0 !important;
  text-align: center !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  cursor: pointer !important;
}
.mfp-wrap > button.mfp-close {
  right: 24px !important;
  top: 20px !important;
}
.mfp-figure .mfp-close,
.mfp-image-holder .mfp-close {
  right: 12px !important;
  top: 12px !important;
}
.mfp-wrap:has(.mfp-figure .mfp-close) > button.mfp-close {
  display: none !important;
}
.mfp-close:before,
button.mfp-close:before {
  content: "\00d7" !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 34px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  color: #121212 !important;
  display: block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  background: none !important;
  transform: none !important;
  opacity: 1 !important;
}
.mfp-close:after,
button.mfp-close:after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}
.mfp-figure .mfp-close:hover,
.mfp-image-holder .mfp-close:hover,
button.mfp-close:hover {
  background: #f55608 !important;
  color: #fff !important;
}
.mfp-figure .mfp-close:hover:before,
.mfp-image-holder .mfp-close:hover:before,
button.mfp-close:hover:before {
  background: none !important;
  color: #fff !important;
}
.mfp-counter {
  top: auto !important;
  bottom: 28px !important;
  right: 28px !important;
  color: #fff !important;
  font-size: 14px !important;
  background: rgba(18, 18, 18, .6);
  padding: 6px 14px;
  border-radius: 999px;
}
.mfp-title {
  color: #fff !important;
  font-size: 15px !important;
  padding-right: 80px;
}
@media (max-width: 767px) {
  .mfp-container { padding: 0 64px; }
  button.mfp-arrow {
    width: 52px !important;
    height: 52px !important;
    margin-top: -26px !important;
  }
  button.mfp-arrow-left { left: 10px !important; }
  button.mfp-arrow-right { right: 10px !important; }
  button.mfp-arrow:before {
    width: 13px !important;
    height: 13px !important;
  }
}

/* cookie consent */
.cabi-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  display: none;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #121212;
  color: #fff;
  border-radius: 0;
  border-top: 4px solid #f55608;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, .35);
  padding: 0;
}
.cabi-cookie.is-open { display: block; }
.cabi-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 65px;
}
.cabi-cookie p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-width: 820px;
}
.cabi-cookie a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cabi-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.cabi-cookie-actions button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  font-family: inherit;
}
.cabi-cookie-accept {
  background: #f55608;
  color: #fff;
}
.cabi-cookie-reject {
  background: #fff;
  color: #121212;
}
@media (max-width: 1199px) {
  .cabi-cookie-inner { padding: 20px 45px; }
}
@media (max-width: 991px) {
  .cabi-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px;
    gap: 16px;
  }
  .cabi-cookie-actions button { flex: 1; }
}
@media (max-width: 575px) {
  .cabi-cookie-inner { padding: 16px 16px; }
  .cabi-cookie-actions { flex-direction: column; }
  .cabi-cookie-actions button { width: 100%; }
}

.cabi-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  border: none;
}
.cabi-btn-whatsapp:hover,
.cabi-btn-whatsapp:focus {
  background: #1ebe57;
  color: #fff !important;
}
.cabi-btn-whatsapp .cabi-wa-ico {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  margin-right: 0.45em;
  vertical-align: -0.15em;
  fill: currentColor;
}
.cabi-wa-badge {
  color: #25d366;
}
.cabi-wa-card-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  fill: #25d366;
}
.cabi-feat-app {
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  height: 100%;
}
.cabi-feat-app-media {
  background: #e8e8ea;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: auto;
  position: relative;
}
.cabi-feat-app-media img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  box-shadow: none;
}
.cabi-feat-app-copy strong {
  font-weight: 600;
}
#app-configurator,
#app-planner,
#app-editor {
  scroll-margin-top: 100px;
}
#apps-overview,
#faq,
#cta-mid {
  scroll-margin-top: 120px;
}

/* App zones: mini hero (same language as page hero) + full-width funcs */
.cabi-app-block {
  width: 100%;
}
.cabi-app-block .container-fluid {
  width: 100%;
  max-width: none;
}
.cabi-app-unit {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 8px 28px rgba(18, 18, 18, 0.04);
}
.cabi-app-unit .cabi-app-hero.cabi-stack-split {
  border-radius: 0;
}
.cabi-app-hero.cabi-stack-split {
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  align-items: stretch;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
}
.cabi-app-hero .cabi-stack-split-text {
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 36px) clamp(18px, 2.2vw, 36px);
}
.cabi-app-hero .cabi-stack-split-copy {
  max-width: 26rem;
}
.cabi-app-hero .cabi-stack-split-copy .cabi-app-hero-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}
.cabi-app-hero .cabi-stack-split-copy h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.85rem) !important;
  line-height: 1.2 !important;
  color: #fff;
  margin-bottom: 12px !important;
}
.cabi-app-hero .cabi-stack-split-copy p {
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}
/* Full screenshot visible — scale to width, never crop */
.cabi-app-hero .cabi-stack-split-media {
  position: relative;
  align-self: stretch;
  width: 100%;
  aspect-ratio: auto;
  height: auto !important;
  max-height: none;
  min-height: 0 !important;
  background: #1e1e22;
  display: block;
  overflow: hidden;
}
.cabi-app-hero .cabi-stack-split-media img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
@media (min-width: 1400px) {
  .cabi-app-hero .cabi-stack-split-media {
    height: auto !important;
  }
}
@media (min-width: 1600px) {
  .cabi-app-hero .cabi-stack-split-media {
    height: auto !important;
  }
}
/* Flip only swaps sides — same column sizes as the others */
.cabi-app-hero--flip {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  direction: rtl;
}
.cabi-app-hero--flip > * {
  direction: ltr;
}
.cabi-app-hero--flip .cabi-stack-split-text {
  background: linear-gradient(
    270deg,
    #2c2c32 0%,
    #35353c 40%,
    #3f3f48 70%,
    #4a4a55 100%
  );
}
.cabi-app-funcs {
  width: 100%;
  margin-top: 0;
  background: #fff;
  border-radius: 0;
  padding: clamp(22px, 2.5vw, 36px) clamp(18px, 2vw, 32px);
  border: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}
.cabi-app-funcs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(245, 86, 8, 0.28);
}
.cabi-app-funcs-tag {
  flex-shrink: 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f55608;
  background: rgba(245, 86, 8, 0.1);
  border-radius: 6px;
  padding: 6px 10px;
  line-height: 1.2;
}
.cabi-app-funcs-head p {
  font-size: 0.95rem;
  color: #555;
  flex: 1 1 12rem;
}
.cabi-app-funcs-head p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.cabi-app-funcs .cabi-btn-guide {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.cabi-app-funcs + .cabi-app-funcs,
.cabi-app-funcs--sub {
  margin-top: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  background: #fafaf8;
}
@media (max-width: 1199px) {
  .cabi-app-hero.cabi-stack-split,
  .cabi-app-hero--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .cabi-app-hero--flip .cabi-stack-split-text {
    background: #2c2c32;
  }
  .cabi-app-hero .cabi-stack-split-media {
    align-self: stretch;
    width: 100%;
    height: auto !important;
  }
}
@media (max-width: 991px) {
  .cabi-app-hero .cabi-stack-split-text {
    padding: 28px 24px;
  }
  .cabi-app-hero .cabi-stack-split-media {
    height: auto !important;
  }
  .cabi-app-funcs {
    padding: 22px 18px;
  }
}
@media (max-width: 575px) {
  .cabi-app-hero .cabi-stack-split-text {
    padding: 24px 18px;
  }
  .cabi-app-hero .cabi-stack-split-media {
    height: auto !important;
  }
  .cabi-app-hero .cabi-stack-split-copy h2 {
    font-size: 1.3rem !important;
  }
}
.cabi-btn-guide {
  border: 1px solid rgba(18, 18, 18, 0.06);
}
.cabi-btn-dl {
  margin: 0;
  padding: 0;
}
.cabi-btn-dl > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.cabi-btn-dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cabi-btn-dl > div:first-child {
  padding-top: 0;
}
.cabi-btn-dl dt {
  font-weight: 600;
  color: #121212;
  margin: 0 0 4px;
  font-size: 15px;
}
.cabi-btn-dl dd {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.45;
}
.cabi-faq-body {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 32px 48px;
  width: 100%;
}
.cabi-faq-body > .cabi-faq-col-media {
  flex: 0 0 auto;
  width: min(380px, 38%);
  max-width: 380px;
  margin: 0;
  padding: 0;
}
.cabi-faq-body > .cabi-faq-col-list {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.cabi-faq-visual {
  max-width: 100%;
  margin: 0;
}
.cabi-faq-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.cabi-faq-body .accordion-style-02 {
  margin-top: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cabi-faq-body {
    flex-wrap: wrap;
  }
  .cabi-faq-body > .cabi-faq-col-media,
  .cabi-faq-body > .cabi-faq-col-list {
    width: 100%;
    max-width: 100%;
  }
  .cabi-faq-visual {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Features page: sticky TOC + mid CTA */
.cabi-feat-toc {
  position: sticky;
  top: 72px;
  z-index: 50;
  margin-bottom: 28px;
}
.cabi-feat-toc-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 6px;
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid rgba(245, 86, 8, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(245, 86, 8, 0.08),
    0 10px 28px rgba(18, 18, 18, 0.08);
}
.cabi-feat-toc-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f55608;
  margin-right: 6px;
  padding-right: 14px;
  border-right: 1px solid rgba(245, 86, 8, 0.25);
}
.cabi-feat-toc-inner a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2a2a2e;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease;
}
.cabi-feat-toc-inner a:hover,
.cabi-feat-toc-inner a:focus-visible {
  background: rgba(245, 86, 8, 0.12);
  color: #f55608;
}
.cabi-feat-mid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  width: 100%;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 36px);
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(18, 18, 18, 0.04);
}
.cabi-feat-mid-cta-copy {
  flex: 1 1 16rem;
  min-width: 0;
  max-width: 36rem;
}
.cabi-feat-mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cabi-feat-toc {
    top: 64px;
  }
  .cabi-feat-toc-label {
    width: 100%;
    border-right: 0;
    margin: 0 0 6px;
    padding: 0;
    text-align: center;
  }
  .cabi-feat-toc-inner {
    padding: 14px 12px;
    justify-content: center;
  }
  .cabi-feat-toc-inner a {
    font-size: 12px;
    padding: 6px 10px;
  }
  .cabi-feat-mid-cta-actions {
    width: 100%;
  }
}

.cabi-feat-final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 36px;
  width: 100%;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3vw, 40px);
  background: linear-gradient(120deg, #2c2c32 0%, #3a3a42 55%, #4a3a30 100%);
  border-radius: 20px;
  overflow: hidden;
}
.cabi-feat-final-cta-kicker {
  color: rgba(255, 255, 255, 0.7);
}
.cabi-feat-final-cta-copy {
  flex: 1 1 16rem;
  min-width: 0;
  max-width: 34rem;
}
.cabi-feat-final-cta-copy .opacity-85 {
  opacity: 0.85;
}
.cabi-feat-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cabi-feat-final-cta-actions {
    width: 100%;
  }
}

/* GEO answer lead: available to crawlers/AI, not shown in layout */
p.cabi-geo-answer.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
