@charset "UTF-8";
@font-face {
  font-family: "SezonskiFont";
  src: url("../fonts/sezonski-font.ttf") format("truetype supports variations"), url("../fonts/sezonski-font.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  interpolate-size: allow-keywords;
}

.page-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
}
.page-loading .page-loading__image {
  width: 160px;
  height: auto;
}
@media (min-width: 1024px) {
  .page-loading .page-loading__image {
    width: 200px;
  }
}
.page-loading.loaded .page-loading__image {
  animation: page-loading-hide 0.2s forwards;
}
.page-loading.loaded {
  transform: translateY(-100%);
  transition-delay: 0.2s;
}

@keyframes page-loading-hide {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SezonskiFont", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  text-decoration: none;
  height: 32px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: -moz-max-content;
  width: max-content;
}
.button img {
  transition: transform 0.3s ease;
}
.button.button-secondary {
  color: #0f2335;
  border: 1px solid #e5e5e5;
  background-color: white;
  font-weight: 300;
}
.button.button-secondary:hover {
  background-color: #eaecee;
}
.button.button-primary {
  color: #0f2335;
  border: 1px solid #fcc255;
  background-color: #fcc255;
  font-weight: 500;
}
.button.button-primary:hover {
  background-color: #ffb300;
}
.button:hover img {
  transform: translateX(4px);
}

strong {
  font-weight: 600;
}

.page-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.page-title.hero-section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .page-title.hero-section-title {
    margin-bottom: 50px;
  }
}

h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  h2 {
    margin-bottom: 50px;
  }
}

.light-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 500px;
  margin: 16px auto 24px;
  color: #575757;
  text-align: center;
}
@media (min-width: 1024px) {
  .light-subtitle {
    margin: 20px auto 40px;
  }
}

.desclaimer {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  max-width: 630px;
  margin: 50px auto 0;
  color: #575757;
  font-style: italic;
  text-align: center;
}

header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
header.is-scrolled {
  border-bottom-color: #eaecee;
}
@media (min-width: 1024px) {
  header {
    position: relative;
    top: auto;
    border-bottom: none;
  }
}
header .header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
header .header-content .logo img {
  width: 100%;
  height: 100%;
  max-width: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-content nav {
  display: none;
  justify-self: center;
}
header .header-content nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
header .header-content nav ul li a {
  text-decoration: none;
  color: #0f2335;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}
header .header-content nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #575757;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
header .header-content nav ul li a:hover {
  color: #0f2335;
}
header .header-content nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #0f2335;
}
header .header-content .header-actions {
  display: none;
}
@media (min-width: 1024px) {
  header .header-content .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
}
header .header-content .header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  justify-self: flex-end;
}
header .header-content .header-hamburger:hover {
  background-color: #eaecee;
}
header .header-content .header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0f2335;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
header .header-content .header-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .header-content .header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
header .header-content .header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  header .header-content .header-hamburger {
    display: none;
  }
}
@media (min-width: 1024px) {
  header .header-content {
    grid-template-columns: 1fr auto 1fr;
  }
  header .header-content nav {
    display: block;
  }
}
header .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eaecee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
header .mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  header .mobile-menu {
    display: none;
  }
}
header .mobile-menu__nav {
  padding-top: 8px;
}
header .mobile-menu__nav .mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
}
header .mobile-menu__nav .mobile-nav-menu li {
  border-bottom: 1px solid #eaecee;
}
header .mobile-menu__nav .mobile-nav-menu li:last-child {
  border-bottom: none;
}
header .mobile-menu__nav .mobile-nav-menu li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 300;
  color: #0f2335;
  text-decoration: none;
  transition: color 0.2s ease;
}
header .mobile-menu__nav .mobile-nav-menu li a:hover {
  color: #575757;
}
header .mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 24px;
}
header .mobile-menu__actions .button {
  width: 100%;
  height: 44px;
  justify-content: center;
  font-size: 15px;
  gap: 6px;
}
header .mobile-menu__actions .button img {
  width: 16px;
  height: 16px;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-section {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-section {
    padding: 100px 0;
  }
}
.hero-section .hero-section-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 8px;
}
.hero-section .hero-section-buttons .button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
}
.hero-section .hero-section-buttons .button img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-section .hero-section-buttons-description {
  font-size: 14px;
  font-weight: 300;
  color: #575757;
}

.clients-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .clients-section {
    padding: 80px 0;
  }
}
.clients-section .clients-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.clients-section-sliders {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.slider-row {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
          mask: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
@media (min-width: 1024px) {
  .slider-row {
    -webkit-mask: linear-gradient(to right, transparent 0, black 160px, black calc(100% - 160px), transparent 100%);
            mask: linear-gradient(to right, transparent 0, black 160px, black calc(100% - 160px), transparent 100%);
  }
}
.slider-row--narrow {
  margin: 0 120px;
  -webkit-mask: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
          mask: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
@media (min-width: 1024px) {
  .slider-row--narrow {
    -webkit-mask: linear-gradient(to right, transparent 0, black 160px, black calc(100% - 160px), transparent 100%);
            mask: linear-gradient(to right, transparent 0, black 160px, black calc(100% - 160px), transparent 100%);
  }
}

.logo-slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 60s linear infinite;
}
.slider-row--narrow .logo-slider-track {
  animation-direction: reverse;
}
.logo-slider-track:hover {
  animation-play-state: paused;
}

.logo-slider-list {
  display: flex;
  align-items: center;
}
.logo-slider-list .logo-slider-item {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.logo-slider-list .logo-slider-item img {
  height: 30px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(0);
}
.logo-slider-list .logo-slider-item--shop {
  min-width: 100px;
  padding: 0 24px;
}
.logo-slider-list .logo-slider-item--shop img {
  height: 20px;
  filter: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.dashboard-section {
  position: relative;
}
.dashboard-section img,
.dashboard-section video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaecee;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.02);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.dashboard-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .dashboard-section::after {
    height: 300px;
  }
}
.dashboard-section img:hover,
.dashboard-section video:hover {
  transform: translateY(-4px);
}
.dashboard-section:has(img:hover)::after, .dashboard-section:has(video:hover)::after {
  opacity: 0;
}

.features-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .features-section {
    padding: 80px 0;
  }
}
.features-section .features-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) {
  .features-section .features-section-cards {
    grid-template-columns: repeat(9, 1fr);
  }
}
.features-section .feature-card {
  background-color: #fff;
  border: 1px solid #eaecee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.features-section .feature-card--wide, .features-section .feature-card--narrow {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .features-section .feature-card--wide {
    grid-column: span 5;
  }
  .features-section .feature-card--narrow {
    grid-column: span 4;
  }
}
.features-section .feature-card .feature-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f2335;
  margin-bottom: 8px;
  line-height: 1;
}
.features-section .feature-card .feature-card-description {
  font-size: 16px;
  font-weight: 300;
  color: #575757;
  line-height: 22px;
  margin-bottom: 15px;
  max-width: 420px;
}
.features-section .feature-card {
  position: relative;
}
.features-section .feature-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaecee;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.02);
  padding: 10px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.features-section .feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.features-section .feature-card img:hover {
  transform: translateY(-4px);
}
.features-section .feature-card:has(img:hover)::after {
  opacity: 0;
}

.pricing-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .pricing-section {
    padding: 80px 0;
  }
}
.pricing-section .container {
  text-align: center;
}
.pricing-section .pricing-section-title {
  margin-bottom: 0;
}
.pricing-section .pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  background-color: #eef0f1;
  border-radius: 100px;
  padding: 4px;
  margin: 32px auto 40px;
  gap: 2px;
  justify-self: center;
}
.pricing-section .pricing-billing-toggle__segment {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "SezonskiFont", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #575757;
  padding: 6px 18px;
  border-radius: 100px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.4;
}
.pricing-section .pricing-billing-toggle__segment--active {
  background-color: #fff;
  color: #0f2335;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.pricing-section .pricing-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) {
  .pricing-section .pricing-plan-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 16px;
  }
}
.pricing-section .pricing-plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  border: 1px solid #eaecee;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  text-align: left;
}
@media (min-width: 1024px) {
  .pricing-section .pricing-plan-card {
    grid-row: span 4;
    display: grid;
    grid-template-rows: subgrid;
    align-content: start;
    padding: 28px 24px;
    gap: 0;
  }
}
.pricing-section .pricing-plan-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.pricing-section .pricing-plan-card--recommended {
  border-color: #fcc255;
  border-width: 2px;
}
.pricing-section .pricing-plan-card__ribbon {
  position: absolute;
  top: 18px;
  right: -26px;
  background-color: #fcc255;
  color: #0f2335;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 36px;
  transform: rotate(35deg);
  transform-origin: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-section .pricing-plan-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-section .pricing-plan-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f2335;
  line-height: 1.2;
}
.pricing-section .pricing-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-section .pricing-plan-card__price .price {
  display: none;
}
.pricing-section .pricing-plan-card__price .price strong {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2335;
  line-height: 1;
}
.pricing-section .pricing-plan-card__price .price em {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 400;
  color: #575757;
}
.pricing-section .pricing-plan-card__price .price--monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-section .pricing-plan-card__description {
  font-size: 13px;
  font-weight: 300;
  color: #575757;
  margin: 0;
}
.pricing-section .pricing-plan-card__short-desc {
  font-size: 14px;
  font-weight: 400;
  color: #575757;
  line-height: 1.5;
  margin: 0;
}
.pricing-section .pricing-plan-card__cta {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #eaecee;
  color: #0f2335;
  font-size: 14px;
  font-weight: 500;
  font-family: "SezonskiFont", sans-serif;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 10px 0 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.pricing-section .pricing-plan-card__cta:hover {
  background-color: #dcdfe3;
}
.pricing-section .pricing-plan-card--recommended .pricing-section .pricing-plan-card__cta {
  background-color: #fcc255;
  border-color: #fcc255;
}
.pricing-section .pricing-plan-card--recommended .pricing-section .pricing-plan-card__cta:hover {
  background-color: #ffb300;
  border-color: #ffb300;
}
.pricing-section .pricing-plan-card__features {
  border-top: 1px solid #eaecee;
  padding-top: 18px;
}
.pricing-section .pricing-plan-card__features-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f2335;
  margin-bottom: 12px;
}
.pricing-section .pricing-plan-card__features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-section .pricing-plan-card__features-list li {
  font-size: 13px;
  font-weight: 400;
  color: #0f2335;
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}
.pricing-section .pricing-plan-card__features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-section .pricing-plan-card__features-list li.feature--yes::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e7d32' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.pricing-section .pricing-plan-card__features-list li.feature--no {
  color: #575757;
}
.pricing-section .pricing-plan-card__features-list li.feature--no::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}
.pricing-section.billing--yearly .price--monthly {
  display: none;
}
.pricing-section.billing--yearly .price--yearly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.blog-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .blog-section {
    padding: 80px 0;
  }
}
.blog-section .blog-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .blog-section .blog-section-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.blog-section .blog-section-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eaecee;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.blog-section .blog-section-card .blog-section-card-thumbnail {
  display: flex;
  position: relative;
  overflow: hidden;
}
.blog-section .blog-section-card .blog-section-card-thumbnail img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-section .blog-section-card .blog-section-card-thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.blog-section .blog-section-card .blog-section-card-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.blog-section .blog-section-card .blog-section-card-body .blog-section-card-date {
  font-size: 14px;
  font-weight: 300;
  color: #575757;
  line-height: 16px;
  margin-bottom: 12px;
}
.blog-section .blog-section-card .blog-section-card-body .blog-section-card-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #0f2335;
  line-height: 22px;
  text-decoration: none;
  display: webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-section .blog-section-card .blog-section-card-body .blog-section-card-description {
  font-size: 16px;
  font-weight: 300;
  color: #575757;
  line-height: 22px;
  margin-bottom: 15px;
}
.blog-section .blog-section-card .blog-section-card-body .card-body-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.blog-section .blog-section-card .blog-section-card-body .card-body-footer .blog-section-card-link {
  font-size: 14px;
  font-weight: 500;
  color: #0f2335;
  line-height: 1.2;
  text-decoration: none;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.blog-section .blog-section-card .blog-section-card-body .card-body-footer .blog-section-card-link img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.blog-section .blog-section-card:hover .blog-section-card-thumbnail img {
  transform: scale(1.05);
}
.blog-section .blog-section-card:hover .blog-section-card-link img {
  transform: translateX(4px);
}

.faq-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 80px 0;
  }
}
.faq-section .faq-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px 16px 20px;
  border: 1px solid #eaecee;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 1024px) {
  .faq-section .faq-section-cards {
    padding: 22px 30px 30px;
  }
}
.faq-section .faq-section-cards .faq-section-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-bottom: 1px dashed #eaecee;
  padding-bottom: 20px;
}
.faq-section .faq-section-cards .faq-section-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-section .faq-section-cards .faq-section-card .faq-section-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f2335;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
}
.faq-section .faq-section-cards .faq-section-card .faq-section-card-title::after {
  content: "";
  display: block;
  align-self: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("../images/arrow-right-small.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.faq-section .faq-section-cards .faq-section-card .faq-section-card-body {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease-out, height 0.25s ease-out, display 0.25s ease-out allow-discrete;
}
.faq-section .faq-section-cards .faq-section-card .faq-section-card-description {
  font-size: 16px;
  font-weight: 300;
  color: #575757;
  line-height: 22px;
  padding-top: 12px;
}
.faq-section .faq-section-cards .faq-section-card--open .faq-section-card-title::after {
  transform: rotate(-90deg);
}
.faq-section .faq-section-cards .faq-section-card--open .faq-section-card-body {
  display: block;
  opacity: 1;
  height: auto;
}
@starting-style {
  .faq-section .faq-section-cards .faq-section-card--open .faq-section-card-body {
    opacity: 0;
    height: 0;
  }
}

.call-to-action-section {
  padding: 60px 0 80px;
}
@media (min-width: 1024px) {
  .call-to-action-section {
    padding: 80px 0 120px;
  }
}
.call-to-action-section .container {
  text-align: center;
}
.call-to-action-section .call-to-action-section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  max-width: 740px;
  margin: 0 auto;
}
.call-to-action-section .button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  margin: 0 auto 10px;
}
.call-to-action-section .button img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.call-to-action-section .call-to-action-section-description-small {
  font-size: 14px;
  font-weight: 300;
  color: #575757;
}

footer {
  padding: 40px 0;
  background-color: #f5f6f7;
}
@media (min-width: 1024px) {
  footer {
    padding: 60px 0;
  }
}
footer {
  border-radius: 30px 30px 0 0;
  border: 1px solid #eaecee;
}
footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  footer .footer-content {
    flex-direction: row;
  }
}
footer .footer-content .custom-logo-link {
  width: 200px;
  display: flex;
}
footer .footer-content .custom-logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-content nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  footer .footer-content nav {
    flex-direction: row;
  }
}
footer .footer-content nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .footer-content nav ul li a {
  text-decoration: none;
  color: #0f2335;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}
footer .footer-content nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #575757;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
footer .footer-content nav ul li a:hover {
  color: #0f2335;
}
footer .footer-content nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #0f2335;
}
footer .footer-content nav .button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  margin: 0 auto;
}
footer .footer-content nav .button img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  footer .footer-bottom {
    flex-direction: row;
  }
}
footer .footer-bottom {
  margin-top: 30px;
}
footer .footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: #575757;
}
footer .footer-bottom a {
  text-decoration: none;
  color: #575757;
  font-size: 12px;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}
footer .footer-bottom a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #575757;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
footer .footer-bottom a:hover {
  color: #0f2335;
}
footer .footer-bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #0f2335;
}

.page-title-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .page-title-section {
    padding: 80px 0;
  }
}

.page-template-znacajke .features-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-section {
    padding: 120px 0 60px;
  }
}
.page-template-znacajke .features-section .features-section-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-section .features-section-rows {
    gap: 120px;
    padding-top: 40px;
  }
}
.page-template-znacajke .features-section .features-section-rows .features-section-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-section .features-section-rows .features-section-row {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 80px;
  }
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-content h3 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  font-weight: 600;
  color: #0f2335;
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-content p {
  font-size: 16px;
  font-weight: 300;
  color: #575757;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-content p {
    font-size: 18px;
  }
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-content p em {
  font-size: 14px;
  margin-top: 20px;
  display: block;
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-image {
  position: relative;
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaecee;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.02);
  padding: 10px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-image img:hover {
  transform: translateY(-4px);
}
.page-template-znacajke .features-section .features-section-rows .features-section-row .features-section-row-image:has(img:hover)::after {
  opacity: 0;
}
.page-template-znacajke .features-grid-section {
  padding: 40px 0 60px;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-grid-section {
    padding: 60px 0 80px;
  }
}
.page-template-znacajke .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-template-znacajke .features-grid .features-grid-card {
  padding: 24px 0;
  border-bottom: 1px solid #eaecee;
  transition: background-color 0.2s ease;
}
.page-template-znacajke .features-grid .features-grid-card:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .page-template-znacajke .features-grid .features-grid-card {
    padding: 30px;
    border-bottom: none;
    border-right: 1px solid #eaecee;
  }
  .page-template-znacajke .features-grid .features-grid-card:last-child {
    border-bottom: none;
  }
  .page-template-znacajke .features-grid .features-grid-card:first-child, .page-template-znacajke .features-grid .features-grid-card:nth-child(2), .page-template-znacajke .features-grid .features-grid-card:nth-child(3) {
    border-bottom: 1px solid #eaecee;
  }
  .page-template-znacajke .features-grid .features-grid-card:nth-child(3n) {
    border-right: none;
    padding-right: 0;
  }
  .page-template-znacajke .features-grid .features-grid-card:nth-child(1), .page-template-znacajke .features-grid .features-grid-card:nth-child(4) {
    padding-left: 0;
  }
}
.page-template-znacajke .features-grid .features-grid-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.page-template-znacajke .features-grid .features-grid-card-header svg {
  flex-shrink: 0;
  color: #0f2335;
}
.page-template-znacajke .features-grid .features-grid-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f2335;
}
.page-template-znacajke .features-grid .features-grid-card-description {
  font-size: 14px;
  font-weight: 300;
  color: #575757;
  line-height: 1.5;
}

.page-template-cjenik .pricing-comparison-section {
  padding: 40px 0;
  background-color: #fafafa;
}
@media (min-width: 1024px) {
  .page-template-cjenik .pricing-comparison-section {
    padding: 80px 0;
  }
}
.page-template-cjenik .pricing-comparison-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #0f2335;
  margin-bottom: 40px;
}
.page-template-cjenik .pricing-comparison-table {
  overflow-x: auto;
}
.page-template-cjenik .pricing-comparison-table__header, .page-template-cjenik .pricing-comparison-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #eaecee;
  padding: 14px 0;
  align-items: center;
  gap: 8px;
}
.page-template-cjenik .pricing-comparison-table__header {
  font-size: 13px;
  font-weight: 600;
  color: #575757;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-template-cjenik .pricing-comparison-table__label {
  font-size: 14px;
  font-weight: 400;
  color: #0f2335;
}
.page-template-cjenik .pricing-comparison-table__row:last-child {
  border-bottom: none;
}
.page-template-cjenik .pricing-comparison-table__row div:not(.pricing-comparison-table__label) {
  font-size: 14px;
  font-weight: 500;
  color: #0f2335;
  text-align: center;
}
.page-template-cjenik .pricing-comparison-table__plan {
  text-align: center;
}
.page-template-cjenik .pricing-comparison-table__plan--highlighted {
  font-weight: 700;
  color: #0f2335;
}
.page-template-cjenik .pricing-comparison-table [data-value=yes]::after {
  content: "✓";
  color: #22c55e;
  font-weight: 600;
}
.page-template-cjenik .pricing-comparison-table [data-value=no]::after {
  content: "—";
  color: #575757;
}
.page-template-cjenik .pricing-addons-section {
  padding: 40px 0;
  border-top: 1px solid #eaecee;
  border-bottom: 1px solid #eaecee;
}
@media (min-width: 1024px) {
  .page-template-cjenik .pricing-addons-section {
    padding: 80px 0;
  }
}
.page-template-cjenik .pricing-addons-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #0f2335;
  margin: 8px 0 4px;
}
.page-template-cjenik .pricing-addons-description {
  margin-bottom: 0;
}
.page-template-cjenik .pricing-addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .page-template-cjenik .pricing-addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-template-cjenik .pricing-addon-card {
  border: 1px solid #eaecee;
  border-radius: 16px;
  padding: 28px 24px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}
.page-template-cjenik .pricing-addon-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.page-template-cjenik .pricing-addon-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f2335;
  margin-bottom: 8px;
}
.page-template-cjenik .pricing-addon-card__description {
  font-size: 14px;
  font-weight: 300;
  color: #575757;
  line-height: 1.5;
}
.page-template-cjenik .pricing-addons-image-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .page-template-cjenik .pricing-addons-image-container {
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
  }
}
.page-template-cjenik .pricing-addons-image-container__image {
  position: relative;
}
.page-template-cjenik .pricing-addons-image-container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaecee;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.02);
  padding: 10px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.page-template-cjenik .pricing-addons-image-container__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.page-template-cjenik .pricing-addons-image-container__image img:hover {
  transform: translateY(-4px);
}
.page-template-cjenik .pricing-addons-image-container__image:has(img:hover)::after {
  opacity: 0;
}
.page-template-cjenik .pricing-addons-image-container__image:first-child img {
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f5f6f7;
}

.error404 {
  min-height: 100vh;
}
.error404 .error-404-section {
  padding: 60px 0 80px;
  text-align: center;
}
@media (min-width: 1024px) {
  .error404 .error-404-section {
    padding: 100px 0 120px;
  }
}
.error404 .error-404-section .button {
  justify-self: center;
}

.page-template-zatrazi-demo .demo-section {
  padding: 40px 0 60px;
}
@media (min-width: 1024px) {
  .page-template-zatrazi-demo .demo-section {
    padding: 60px 0 100px;
  }
}
.page-template-zatrazi-demo .demo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .page-template-zatrazi-demo .demo-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 80px;
  }
}
.page-template-zatrazi-demo .demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-template-zatrazi-demo .demo-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .page-template-zatrazi-demo .demo-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.page-template-zatrazi-demo .demo-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-template-zatrazi-demo .demo-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #0f2335;
}
.page-template-zatrazi-demo .demo-form-optional {
  font-weight: 300;
  color: #575757;
}
.page-template-zatrazi-demo .demo-form-input,
.page-template-zatrazi-demo .demo-form-textarea {
  font-family: "SezonskiFont", sans-serif;
  font-size: 14px;
  color: #0f2335;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 14px;
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}
.page-template-zatrazi-demo .demo-form-input:focus,
.page-template-zatrazi-demo .demo-form-textarea:focus {
  outline: none;
  border-color: #0f2335;
}
.page-template-zatrazi-demo .demo-form-input::-moz-placeholder, .page-template-zatrazi-demo .demo-form-textarea::-moz-placeholder {
  color: #575757;
  font-weight: 300;
}
.page-template-zatrazi-demo .demo-form-input::placeholder,
.page-template-zatrazi-demo .demo-form-textarea::placeholder {
  color: #575757;
  font-weight: 300;
}
.page-template-zatrazi-demo .demo-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.page-template-zatrazi-demo .demo-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 24px;
  background-color: #fcc255;
  border: 1px solid #fcc255;
  border-radius: 10px;
  font-family: "SezonskiFont", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0f2335;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: -moz-max-content;
  width: max-content;
}
.page-template-zatrazi-demo .demo-form-submit:hover {
  background-color: #ffb300;
  border-color: #ffb300;
}
.page-template-zatrazi-demo .demo-form-submit img {
  width: 16px;
  height: 16px;
}
.page-template-zatrazi-demo .demo-form-error {
  font-size: 14px;
  color: #dc2626;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
}
.page-template-zatrazi-demo .demo-form-success {
  font-size: 16px;
  font-weight: 500;
  color: #16a34a;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 24px;
}
.page-template-zatrazi-demo .demo-form-success p + p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #0f2335;
}
.page-template-zatrazi-demo .demo-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-template-zatrazi-demo .demo-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-template-zatrazi-demo .demo-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f2335;
}
.page-template-zatrazi-demo .demo-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-template-zatrazi-demo .demo-info-list li {
  font-size: 15px;
  font-weight: 300;
  color: #0f2335;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.page-template-zatrazi-demo .demo-info-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.page-template-zatrazi-demo .demo-info-text {
  font-size: 15px;
  font-weight: 300;
  color: #0f2335;
  line-height: 1.6;
}
.page-template-zatrazi-demo .demo-info-contact {
  padding-top: 24px;
  border-top: 1px solid #eaecee;
  font-size: 14px;
  font-weight: 300;
  color: #575757;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-template-zatrazi-demo .demo-info-contact a {
  color: #0f2335;
  text-decoration: none;
  font-weight: 400;
}
.page-template-zatrazi-demo .demo-info-contact a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=sezonski-poslovi.css.map */