* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #18141C;
  color: #fff;
}

header {
  margin-bottom: 38px;
  padding: 20px 0;
}

footer {
  padding: 20px 0 60px 0;
}

header .container,
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  flex: 1;
}

section {
  margin: 0 auto;
}

section:not(:last-child) {
  margin-bottom: 164px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.menu {
  margin-right: 40px;
}

.menu ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
}

.menu ul li {
  display: inline;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}

.menu ul li a:hover {
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.title {
  font-family: "Gabarito", sans-serif;
  font-size: 48px;
  margin: 0 auto;
  font-weight: 400;
  margin-bottom: 16px;
}

.subtitle {
  font-weight: 200;
  font-size: 20px;
  max-width: 604px;
  margin: 0 auto;
  margin-bottom: 40px;
  color: #D4CCDC;
  line-height: 30px;
  letter-spacing: 0.3px;
}

.main-title {
  font-size: 56px;
  max-width: 740px;
  text-align: center;
}

.btn {
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.contact-btn {
  padding: 12px 16px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  transition: outline 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  outline: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.download-btn {
  font-size: 18px;
  padding: 16px 30px;
  color: #fff;
  background: linear-gradient(to right,#3C38F1 0%,#90B4F9 100%);
  box-shadow: 0px 0px 9px 0px #FFFFFF40 inset;
}

.download-btn.mobile {
  display: none;
}

.download-btn:hover {
  box-shadow: none;
  background: linear-gradient(to right,#3C38F1 10%,#90B4F9 160%);
}

.protection-section {
  max-width: 996px;
  text-align: center;
}

.popup {
  padding: 12px 12px 0 12px;
  background-color: #241F29;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 10px;
}

.popup-info {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.popup-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-item:not(:last-child)::after {
  content: '•';
  margin-right: 22px;
  margin-left: 12px;
  color: #45404A;
  font-size: 9px;
}

.popup-item span {
  font-weight: 200;
  font-size: 20px;
  line-height: 28px;
  color: #F7F7F7;
  letter-spacing: 0.3px;
}

.popup img {
  max-width: 972px;
  flex-shrink: 0;
}

.security-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.security-info {
  max-width: 508px;
}

.image-container {
  max-width: 540px;
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 213px;
}

.image-zoom img {
  max-width: 213px;
  height: auto;
  object-fit: cover;
}

.why-choose-section, 
.ready-to-protect-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  max-width: 1377px;
  background-color: #241F29;
  border-radius: 10px;
  padding: 105px 0;
}

.why-choose-info {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-choose-info .item {
  max-width: 300px;
  text-align: center;
}

.why-choose-info .item-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 41px;
  margin-top: 8px;
}

.why-choose-info .item-subtitle {
  font-weight: 200;
  font-size: 16px;
  line-height: 23px;
  color: #D4CCDC;
  margin-top: 8px;
}

.how-it-works-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 164px;
}

.how-it-works-section .image-container img {
  height: 480px;
}

.how-it-works-info {
  max-width: 508px;
}

.steps {
  list-style: none;
  margin-bottom: 40px;
  margin-top: 24px;
}

.steps div {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 200;
  cursor: pointer;
  position: relative;
  color: #D4CCDC;
}

.steps div:not(.active):hover,
.steps div.active {
  color: #fff;
}

.steps div::before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.step-indicator {
  display: block;
  width: 2px;
  height: 30px;
  background-color: #342D3C;
  margin-right: 20px;
  transition: background-color 0.3s ease;
}

.steps div:hover::before {
  background-color: #584D63;
}

.steps div.active::before {
  width: 4px;
  background-color: #3C38F1;
}

.faq-section {
  max-width: 840px;
  text-align: center;
}

.faq {
  text-align: left;
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid #342D3C;
  padding: 24px 32px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0 transparent;
}

.no-border {
  border-bottom: none;
}

.faq-item:hover {
  box-shadow: 0 1px 0 #342D3C;
}

.no-hover:hover {
  box-shadow: none;
}

.faq-item p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: #D4CCDC;
  line-height: 24px;
}

summary {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  list-style: none;
}

.faq-icon {
  transition: transform 0.5s ease;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

details[open] {
  border: none;
  background-color: #241F29;
  border-radius: 10px;
}

details[open]:hover {
  box-shadow: none;
}

summary::-webkit-details-marker {
  display: none;
}

.ready-to-protect-section {
  position: relative;
  margin: 0 auto;
  padding-top: 250px;
  padding-bottom: 80px;
  max-width: 1377px;
  background-color: #241F29;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 60px;
}

.ready-to-protect-section .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/circle.png');
  background-size: 17%;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  transition: transform 1.0s ease-out;
}

.ready-to-protect-section .content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 14px;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #18141C;
  z-index: 999;
}

.overlay-content {
  text-align: center;
}

.overlay-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
}

.overlay-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.menu-overlay.open {
  display: flex;
  flex-direction: column;
  padding-bottom: 68px;
}

.overlay-menu ul {
  list-style: none;
  padding: 0;
}

.overlay-menu ul li {
  margin: 30px 0;
}

.overlay-menu ul li a {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
}
