@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/* VARIABLES */
:root {
  --color-primary: #112A9A;
  --color-text-dark: #313131;
  --color-bg-dark: #313131;
  --color-bg-medium: #ECEFF1;
  --color-bg-light: #f5f5f5;
  --card-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* GLOBAL STYLES */
* {
  scroll-margin-top: 72px;
}

.pricing {
  scroll-margin-top: 240px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-text-primary);
  background: var(--color-bg-medium);
  margin: 0;
}

h1, h2, h3, h4, p, ul {
  margin-top: 0;
}

h2 {
  font-size: clamp(20px, 6vw, 32px);
  font-weight: bold;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

ul {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1208px;
  margin: auto;
}
@media (max-width: 1208px) {
  .container {
    max-width: 90%;
  }
}

/* HEADER */
nav {
  background: var(--color-bg-medium);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  nav .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
nav .logo {
  display: block;
}
@media screen and (max-width: 767px) {
  nav .logo {
    margin-bottom: 0;
  }
}
nav ul.menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  nav ul.menu {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  nav ul.menu li {
    margin-bottom: 24px;
  }
}
nav ul.menu li.submenu {
  position: relative;
}
nav ul.menu li.submenu ul li a {
  font-weight: unset;
}
nav ul.menu li.submenu:hover ul {
  display: block;
}
@media screen and (max-width: 767px) {
  nav ul.menu li.submenu:hover ul {
    display: none;
  }
}
nav ul.menu li.submenu ul {
  list-style: none;
  padding-left: 0;
  position: absolute;
  display: none;
  background: #fff;
  padding: 24px;
  -moz-columns: 2;
       columns: 2;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  z-index: 2;
}
nav ul.menu li.submenu ul li {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  nav ul.menu li.pricing-link {
    display: none;
  }
}
nav a {
  font-weight: 600;
  line-height: 24px;
  color: var(--color-text-dark);
  margin: 0 16px;
}
nav a:hover, nav a.active {
  color: var(--color-primary);
}
nav .mobile-menu {
  cursor: pointer;
  padding: 40px 20px;
  display: none;
}
nav .mobile-menu:checked ~ .menu {
  max-height: 100%;
  padding-top: 24px;
}
nav .menu-icon {
  position: absolute;
  right: 24px;
  top: 36px;
}
nav .menu-line {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
@media screen and (min-width: 768px) {
  nav .menu-line {
    display: none;
  }
}
nav .menu-line:before, nav .menu-line:after {
  background: #333;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}
nav .menu-line:before {
  top: 8px;
}
nav .menu-line:after {
  top: -8px;
}

.hero {
  background: url("https://d3vqihv3i2rm4c.cloudfront.net/hero-bg.jpg") center center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 24px;
    margin-top: 72px;
  }
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero h1 {
  background: var(--color-bg-medium);
  margin-bottom: 0;
  padding: 24px;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero h1 {
    display: none;
  }
}
.hero h1 img {
  max-width: 168px;
  margin-bottom: 80px;
}

/* PRODUCTS */
.products {
  display: grid;
  gap: 40px;
  padding: 80px 0;
}

.product-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin: auto;
}
.product-card .header {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 8px 8px 0 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-card .header {
    gap: 16px;
  }
}
.product-card .header .title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .product-card .header .title {
    flex-direction: column;
  }
}
.product-card .header img.app-icon {
  max-width: 80px;
}
@media screen and (max-width: 767px) {
  .product-card .header img.app-icon {
    max-width: 60px;
  }
}
.product-card .header img.button {
  max-height: 68px;
}
@media screen and (max-width: 767px) {
  .product-card .header img.button {
    max-height: 52px;
  }
}
.product-card .content {
  padding: 24px;
  display: grid;
  gap: 24px;
}
.product-card .content .pricing-cards {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .product-card .content .pricing-cards {
    flex-direction: column;
  }
}
.product-card .content .pricing-card {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  flex-grow: 1;
  max-width: 320px;
}
.product-card .price {
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}
.product-card .price small {
  font-size: 16px;
  font-weight: normal;
}
.product-card .cta a {
  font-weight: 600;
}
.product-card .title a img {
  max-height: 68px;
}
@media (min-width: 768px) {
  .product-card .title .meta {
    width: 75%;
  }
  .product-card .title a {
    text-align: right;
    width: 25%;
  }
}

/* REVIEWS */
.review-card {
  display: flex;
  gap: 24px;
  background: #fff;
  padding: 24px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}
@media (max-width: 767px) {
  .review-card {
    flex-direction: column;
  }
}
.review-card .image {
  width: 25%;
}
@media (max-width: 767px) {
  .review-card .image {
    max-width: 100%;
  }
}
.review-card .image img {
  border-radius: 8px;
}

.review-card .content {
  width: 75%;
}
@media (max-width: 767px) {
  .review-card .content {
    width: 100%;
  }
}

.review-card .name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

ul.rating {
  list-style: none;
  padding-left: 0;
  display: flex;
}
ul.rating li {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
ul.rating li.full {
  background: url(../images/star-full.svg) no-repeat;
}
ul.rating li.empty {
  background: url(../images/star-empty.svg) no-repeat;
}
ul.rating li.half {
  background: url(../images/star-half.svg) no-repeat;
}

/* FOOTER */
footer {
  background: var(--color-bg-dark);
  color: var(--color-bg-medium);
  margin-top: 80px;
}
footer p, footer ul {
  margin-bottom: 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
@media (max-width: 767px) {
  footer .container {
    flex-direction: column;
  }
}
footer ul.footer-menu {
  list-style: none;
  display: flex;
}
@media (max-width: 767px) {
  footer ul.footer-menu {
    text-align: center;
    margin-bottom: 24px;
    list-style-type: none;
    padding-left: 0;
    justify-content: center;
  }
}
footer ul.footer-menu a {
  color: var(--color-bg-medium);
  margin-right: 20px;
}
footer .copyright {
  text-align: right;
}
@media (max-width: 767px) {
  footer .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */