@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
:root {
  --color-primary: #2877bd;
  --color-primary-dark: #2b4578;
  --color-white: #ffffff;
  --color-gray: #CCC;
  --color-gray-light: #EEE;
  --color-text-primary: #272727;
  --color-text-light: #777;
  --color-text-lighter: #999;
  --font-primary: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-text-primary);
  background: #EEE;
}

.flash-messages {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}
.flash-messages .flash-message {
  padding: 20px;
}
.flash-messages .flash-message + .flash-message {
  margin-top: 10px;
}
.flash-messages .flash-message--success {
  background: #d4edda;
  color: #155724;
}
.flash-messages .flash-message--danger {
  background: #f8d7da;
  color: #721c24;
}

.app-nav__top {
  background: #333;
  color: #EEE;
}
@media (min-width: 576px) {
  .app-nav__top {
    display: flex;
  }
}
.app-nav__main {
  padding: 10px 10px;
  margin: auto;
  max-width: 1000px;
}
.app-nav__logo {
  display: inline-block;
}
.app-nav__logo img {
  width: 200px;
}
.app-nav__user-menu {
  list-style: none;
  padding: 0;
  font-size: 0.8em;
  margin: 0;
}
@media (min-width: 576px) {
  .app-nav__user-menu {
    margin-left: auto;
    display: flex;
  }
}
.app-nav__user-menu li {
  margin-right: 10px;
}
.app-nav__user-menu li span {
  display: inline-block;
  text-decoration: none;
  padding: 12px 10px;
  font-weight: 400;
  border-right: 1px solid rgba(255, 255, 255, 0.2705882353);
  color: rgba(255, 255, 255, 0.3803921569);
}
.app-nav__user-menu li a {
  display: inline-block;
  text-decoration: none;
  color: #EEE;
  padding: 12px 10px;
  font-weight: 400;
}
.app-nav__user-menu li a:hover {
  color: #FFF;
  text-decoration: underline;
}

body {
  background: #fff;
}

.header {
  padding: 5px;
}
.header__inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-areas: "logo" "nav";
  align-items: center;
}
@media (min-width: 750px) {
  .header__inner {
    grid-template-areas: "logo nav";
  }
}
.header__logo {
  grid-area: logo;
  margin: 10px auto;
  display: flex;
  text-decoration: none;
  width: 150px;
}
@media (min-width: 750px) {
  .header__logo {
    margin: 10px;
  }
}
.header__logo img {
  max-width: 100%;
}
.header__nav-toggle {
  text-decoration: none;
  font-size: 70px;
  position: absolute;
  color: var(--color-text);
  top: -8px;
  right: 10px;
  line-height: 1;
}
@media (min-width: 750px) {
  .header__nav-toggle {
    display: none;
  }
}
.header__nav {
  grid-area: nav;
}
@media (max-width: 750px) {
  .header__nav.hidden {
    display: none;
  }
}
.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 750px) {
  .header__nav {
    display: flex;
    margin-left: auto;
  }
  .header__nav ul {
    display: flex;
  }
  .header__nav li {
    display: flex;
    align-items: center;
  }
}
.header__nav-item {
  text-decoration: none;
  color: var(--color-text);
  padding: 5px 10px;
  display: block;
  text-align: center;
}
.header__nav-item:hover {
  color: #000;
}
.header__nav-item--highlight {
  cursor: pointer;
  align-items: center;
  background-image: linear-gradient(144deg, #2877bd, #3e28c2 50%, #6e0780);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  padding: 15px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}
.header__nav-item--highlight:active, .header__nav-item--highlight:hover {
  outline: 0;
  background-image: linear-gradient(144deg, #153d5e, #3e28c2 50%, #35053a);
  color: #CCC;
}

.hero {
  display: flex;
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
  align-items: center;
  padding: 10px;
}
@media (min-width: 1000px) {
  .hero {
    padding: 20px;
  }
}
.hero__update-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero__text {
  background: #FFF;
  border-radius: 30px;
  padding: 30px 40px;
  z-index: 1000;
  max-width: 600px;
  margin: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (min-width: 1000px) {
  .hero__text {
    position: absolute;
    width: 480px;
  }
}
.hero__image {
  display: none;
}
@media (min-width: 1000px) {
  .hero__image {
    display: block;
    border-radius: 50px;
    overflow: hidden;
    height: 600px;
    width: 80%;
    margin-left: auto;
  }
  .hero__image img {
    width: 100%;
  }
}
.hero__cta {
  cursor: pointer;
  align-items: center;
  background-image: linear-gradient(144deg, #2877bd, #3e28c2 50%, #6e0780);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  padding: 15px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}
.hero__cta:active, .hero__cta:hover {
  outline: 0;
  background-image: linear-gradient(144deg, #153d5e, #3e28c2 50%, #35053a);
  color: #CCC;
}

.pricing {
  margin: 10px;
  display: flex;
  flex-direction: column;
}
.pricing .pricing-table {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  padding: 50px 10px;
}
.pricing .pricing-table .subscriptions {
  display: inline-flex;
  justify-content: center;
  margin: auto;
}
.pricing .pricing-table .subscriptions .subscription__option {
  min-width: 170px;
  border: 1px solid var(--color-gray-light);
  padding: 40px 20px;
  text-align: center;
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 0;
}
.pricing .pricing-table .subscriptions .subscription__option:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.pricing .pricing-table .subscriptions .subscription__option:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.pricing .pricing-table .subscriptions .subscription__option--highlighted {
  background: #315bad;
  color: #FFF;
}
.pricing .pricing-table .subscriptions .subscription__option-name {
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
}
.pricing .pricing-table .subscriptions .subscription__option-max-products {
  margin-top: 10px;
}
.pricing .pricing-table .subscriptions .subscription__option-price {
  margin-top: 10px;
  font-size: 1.5em;
  font-weight: bold;
}
.pricing .pricing-table .subscriptions .subscription__option-price small {
  font-size: 0.8rem;
  display: block;
  font-weight: 200;
}
.pricing .pricing-table .subscriptions .subscription__option-cta {
  cursor: pointer;
  align-items: center;
  background-image: linear-gradient(144deg, #2877bd, #3e28c2 50%, #6e0780);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  padding: 15px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  margin: 50px auto;
}
.pricing .pricing-table .subscriptions .subscription__option-cta:active, .pricing .pricing-table .subscriptions .subscription__option-cta:hover {
  outline: 0;
  background-image: linear-gradient(144deg, #153d5e, #3e28c2 50%, #35053a);
  color: #CCC;
}
.pricing .pricing__vat {
  padding: 10px 5px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}

.home .about {
  padding: 10px;
  max-width: 800px;
  margin: 100px auto;
  line-height: 1.4;
}
.home__blog-posts {
  max-width: 800px;
  margin: 100px auto;
  padding: 10px;
}
.home__blog-posts article {
  margin-bottom: 60px;
}
.home__blog-posts article h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
}
.home__blog-posts article h1 a {
  color: var(--color-text);
  text-decoration: none;
}
.home__blog-posts article h1 a:hover {
  color: var(--color-primary);
}
.home__blog-posts article p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.home__blog-posts article .read-more {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.home__blog-posts article .read-more:hover {
  text-decoration: underline;
}

.page {
  max-width: 800px;
  margin: 50px auto;
  letter-spacing: 0.012em;
  line-height: 1.4;
  padding: 10px;
}

.blog-post {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}
.blog-post h1 {
  font-size: 2.2em;
  margin-bottom: 30px;
  line-height: 1.3;
}
.blog-post h2 {
  font-size: 1.6em;
  margin: 40px 0 20px;
}
.blog-post p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1em;
}
.blog-post ul {
  margin: 20px 0;
  padding-left: 20px;
}
.blog-post ul li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1.1em;
}
.blog-post .list-unstyled {
  list-style: none;
  padding-left: 0;
}
.blog-post .list-unstyled li {
  padding-left: 0;
}
.blog-post strong {
  font-weight: bold;
}

.footer {
  color: #FFF;
  background: #525252;
  align-items: center;
  display: flex;
}
.footer__inner {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  line-height: 1.4;
  font-size: 0.8em;
  align-items: center;
}
@media (min-width: 750px) {
  .footer__inner {
    display: flex;
  }
}
.footer__company-name {
  font-weight: bold;
}
.footer__nav ul {
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul a:hover {
  text-decoration: underline;
  color: #EEE;
}
@media (min-width: 750px) {
  .footer__nav ul {
    display: flex;
  }
}

/*# sourceMappingURL=web.output.css.map */
