/* ==================== SUPPORT HERO SECTION ==================== */
.support-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 100px;
  text-align: center;
}

.support-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-hero-title {
  font-family: var(--font-space-grotesk);
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.support-hero-subtitle {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* ==================== LEGAL CONTENT SECTION ==================== */
.legal-content-section {
    background: #FFF;
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-main-title {
    font-family: var(--font-space-grotesk);
    font-size: 32px;
    font-weight: 700;
    line-height: 128%;
    letter-spacing: -0.5px;
    color: #000;
    margin-bottom: 24px;
}

.legal-meta {
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #4F565E;
    margin-bottom: 8px;
}

.legal-meta strong {
    color: #000;
    font-weight: 600;
}

.legal-content h1 {
    font-family: var(--font-space-grotesk);
    font-size: 32px;
    font-weight: 700;
    line-height: 128%;
    letter-spacing: -0.5px;
    color: #000;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-family: var(--font-space-grotesk);
    font-size: 20px;
    font-weight: 700;
    line-height: 128%;
    color: #000;
    margin: 32px 0 12px;
}

.legal-content h3 {
    font-family: var(--font-space-grotesk);
    font-size: 18px;
    font-weight: 600;
    line-height: 128%;
    color: #000;
    margin: 24px 0 8px;
}

.legal-content p {
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #4F565E;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 24px;
    list-style-type: disc;
}

.legal-content li {
    font-family: var(--font-dm-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    color: #4F565E;
    margin-bottom: 8px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: #f6f6ff;
  border: 1px solid #e2e1f6;
  border-radius: 12px;
  box-shadow: 0 4px 40px 0 rgba(167, 167, 167, 0.08);
  padding: 24px 32px;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
}

.contact-card-title {
  font-family: var(--font-space-grotesk);
  font-size: 18px;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: 0.5px;
  color: #000;
  margin: 0;
}

.contact-card-subtitle {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.32px;
  color: #4f565e;
  margin: 0 0 48px 0;
}

.contact-card-link {
  font-family: var(--font-space-grotesk);
  font-size: 24px;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.5px;
  color: #5b55ff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-card-link:hover {
  color: #5b55ff;
  opacity: 0.8;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #F6F6FF; */
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background: #e8e8ff;
}

.social-icon-link img {
  width: 36px;
  height: 36px;
}

/* Contact Form */
.contact-form-wrapper {
  background: #f8f9fd;
  border: 1px solid #e1e6f1;
  border-radius: 12px;
  padding: 32px;
}

.contact-form-title {
  font-family: var(--font-space-grotesk);
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.32px;
  color: #000;
  margin-bottom: 0;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px 24px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #807fa1;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #5b55ff;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23807FA1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #5b55ff;
  cursor: pointer;
}

.checkbox-label {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.28px;
  color: #4f565e;
  cursor: pointer;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(270deg, #5b55ff 0%, #b38dff 100%);
  box-shadow: 0 -4px 2px 0 rgba(0, 0, 0, 0.25) inset,
    0 2px 1px 0 rgba(255, 255, 255, 0.25) inset;
  color: #fff;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.36px;
  padding: 16px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-submit img {
  width: 20px;
  height: 20px;
}

/* ==================== SUPPORT HERO RESPONSIVE ==================== */
@media (max-width: 991px) {
  .support-hero {
    padding: 150px 0 80px;
  }

  .support-hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }
}

@media (max-width: 767px) {
  .support-hero {
    padding: 120px 0 60px;
  }

  .support-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .support-hero-subtitle {
    font-size: 16px;
  }

  .contact-section {
    padding: 40px 0;
  }
  .contact-wrapper {
    gap: 24px;
  }
  .contact-card-subtitle {
    margin: 0 0 24px 0;
  }
  .contact-info {
    gap: 16px;
  }
  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-form-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card-link {
    font-size: 20px;
  }
}
