:root {
  --bg-primary-light: #F4F1FF;
}

/* Hero Section */

/* Features Section */
.features-section {
  background-color: #FFFFFF;
  padding: 80px 150px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.features-header {
  max-width: 768px;
  text-align: center;
}

.features-title {
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #181D27;
  margin-bottom: 20px;
}

.features-subtitle {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #535862;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-content {
  text-align: center;
}

.feature-title {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #181D27;
  margin-bottom: 8px;
}

.feature-description {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #535862;
}

/* FAQ Section */
.faq-section {
  background-color: #FFFFFF;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.faq-header {
  max-width: 768px;
  text-align: center;
}

.faq-title {
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #181D27;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #535862;
}

.faq-list {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 24px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.faq-question h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  color: #181D27;
}

.faq-answer {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #535862;
  margin-top: 8px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  color: #714DFF;
}

/* SLA Section */
.sla-section {
  background-color: rgba(113, 77, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.avatar-group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 32px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  margin-right: -16px;
}

.avatar:nth-child(2) {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
}

.sla-title {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #181D27;
  margin-bottom: 8px;
}

.sla-description {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
  color: #9497A1;
  margin-bottom: 32px;
}

.sla-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background-color: #714DFF;
  border: 1px solid #714DFF;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  transition: background-color 0.3s ease;
}

.sla-button:hover {
  background-color: #5B3ECC;
}

/* Contact Support Section */
.contact-support-section {
  background-color: rgba(245, 245, 245, 0.5);
  padding: 96px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-support-section .container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-support-section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.contact-support-section .text-content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-support-section .heading {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-align: center;
  color: #181D27;
  width: 100%;
}

.contact-support-section .supporting-text {
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #535862;
  max-width: 768px;
}

@media (max-width: 768px) {
  .contact-support-section {
    padding: 64px 0;
  }

  .contact-support-section .container {
    padding: 0 16px;
  }

  .contact-support-section .heading {
    font-size: 28px;
  }

  .contact-support-section .supporting-text {
    font-size: 16px;
  }
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin-top: 32px;
}

.contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.contact-info h3 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #181D27;
  margin: 0;
}

.contact-info p {
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #535862;
  margin: 0;
}

.contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #714DFF;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: rgba(113, 77, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 24px;
  }

  .contact-card {
    width: 100%;
  }

  .contact-info h3 {
    font-size: 18px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-button {
    width: 100%;
  }
}

.world-map path {
  fill: #D5D7DA;
  fill-rule: evenodd;
  clip-rule: evenodd;
  transition: fill 0.3s ease;
  will-change: transform;
}

.world-map path:hover {
  fill: #714dff;
}

.world-map {
  position: relative;
}

.world-map img {
  width: 1024px;
  height: auto;
  margin: 0 auto;
}

.map-marker {
  width: 40px;
  height: 40px;
  position: absolute;
  background: url('../assets/map-marker.png') no-repeat center center / contain;
  cursor: pointer;
}

.marker1 {
  bottom: 160px;
  right: 220px;
}

.marker2 {
  bottom: 190px;
  right: 230px;
}

.marker-dropdown img {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  display: block;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.15);
  border-radius: 50%;
}

.marker-dropdown {
  background-color: #fff;
  border-radius: 6px;
  padding: 12px 16px;
  width: 196px;
  text-align: center;
  box-shadow: 0px 2px 5px rgba(10, 13, 18, 0.1);
  position: absolute;
  bottom: 40px;
  transform: translate(-50%);
  left: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.marker-dropdown:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.marker-dropdown h4 {
  margin: 8px 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: #181d27;
}

.marker-dropdown p {
  font-size: 12px;
  color: #9497a1;
  line-height: 18px;
  margin: 0;
}

.marker1:hover .marker-dropdown,
.marker2:hover .marker-dropdown {
  opacity: 1;
  pointer-events: auto;
}