.hero {
  padding-bottom: 64px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .section-title {
  max-width: 540px;
}
.hero .search-form {
  margin-top: 24px;
  margin-bottom: 64px;
}

.web-tools {
  width: 100%;
  padding: 128px 0;
}
.web-tools .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.web-tools-header {
  display: flex;
  gap: 64px;
  width: 100%;
}
.web-tools-header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex: 1;
}
.web-tools-header-inner ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 432px;
}
.web-tools-header-inner ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.web-tools-header-inner ul li strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #202d3d;
}
.web-tools-header-inner ul li span {
  font-size: 14px;
  line-height: 24px;
  color: #64748b;
}
.web-tools-header-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 454px;
  background-color: var(--slate-100);
  border-radius: 8px;
  overflow: hidden;
}
.web-tools-header-showcase-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.web-tools-header-showcase-row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow:
    0 4.185px 7.637px 0 rgba(32, 45, 61, 0.05),
    0 -2.092px 0 0 #e3ecf6 inset;
  white-space: nowrap;
}
.web-tools-header-showcase-row-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background-color: var(--slate-100);
  border-radius: 6px;
}
.web-tools-header-showcase-row-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #000;
}
.web-tools-header-showcase::before,
.web-tools-header-showcase::after {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.web-tools-header-showcase::before {
  left: 0;
  background: linear-gradient(
    86deg,
    #f1f5f9 11.65%,
    rgba(241, 245, 249, 0) 97.84%
  );
}
.web-tools-header-showcase::after {
  right: 0;
  background: linear-gradient(
    86deg,
    rgba(241, 245, 249, 0) 2.16%,
    #f1f5f9 97.84%
  );
}
.web-tools-header-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.web-tools-header-showcase--cover::before,
.web-tools-header-showcase--cover::after {
  display: none;
}
@media (max-width: 991px) {
  .web-tools-header {
    flex-direction: column;
  }
  .web-tools-header-inner {
    align-items: center;
    text-align: center;
  }
  .web-tools-header-inner ul,
  .web-tools-header-inner ul li {
    align-items: center;
  }
  .web-tools-header-showcase {
    padding: 40px 0;
    max-width: 100%;
  }
  .web-tools-header-showcase--cover {
    padding: 0;
  }
}

.web-tools-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.web-tools-inner-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
}
.web-tools-inner-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.web-tools-inner-item-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: var(--slate-100);
  border-radius: 6px;
}
.web-tools-inner-item-header strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  color: #0f172a;
}
.web-tools-inner-item ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.web-tools-inner-item ul li a:not(.show-more) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 0;
  color: #020617;
  border-bottom: 1px solid var(--slate-200);
  transition: border-color 0.2s ease-in-out;
}
.web-tools-inner-item ul li:last-child a:not(.show-more) {
  border-bottom: none;
}
.web-tools-inner-item ul li a:not(.show-more) span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.web-tools-inner-item ul li a:not(.show-more) svg {
  transition: transform 0.2s ease-in-out;
}
.web-tools-inner-item ul li a:not(.show-more):hover svg {
  transform: translateX(2px) translateY(-2px);
}
.web-tools-inner-item ul li a:not(.show-more):hover {
  border-color: var(--slate-300);
}
.web-tools-inner-item ul li .show-more {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}
.web-tools-inner-item ul li .show-more span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--azure-radiance-500);
}
.web-tools-inner-item ul li .show-more:hover span {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .web-tools-inner {
    grid-template-columns: repeat(2,1fr);
  }
  .web-tools-inner-item:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .web-tools-inner {
    grid-template-columns: 1fr;
  }
  .web-tools-inner-item:last-child {
    grid-column: span 1;
  }
  .web-tools-inner-item {
    padding: 24px;
  }
  .web-tools-inner-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .web-tools-inner-item-header-icon {
    width: 32px;
  }
  .web-tools-inner-item ul li a:not(.show-more) {
    padding: 12px 0;
  }
  .web-tools-inner-item ul li .show-more {
    padding: 12px 0;
  }
}

.guides {
  width: 100%;
  padding-bottom: 128px;
}
.guides .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
.guides .section-title {
  max-width: 596px;
}
.guides-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guides-list .blog-card span {
  font-size: 16px;
  line-height: 24px;
  color: var(--azure-radiance-500);
}
@media (max-width: 767px) {
  .guides-list {
    grid-template-columns: 1fr;
  }
}

.faq {
  padding-top: 0;
}
