.miner-coin-section {
  width: 100%;
  padding: 120px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.miner-coin-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 38px;
  margin-top: 0;
  width: 100%;
  letter-spacing: -1px;
}

.miner-coin-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
  width: 100%;
  justify-content: center;
}

.miner-coin-image {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.miner-coin-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  background: #0e1621;
}

.miner-coin-content {
  width: 100%;
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
}

.miner-coin-box {
  background: rgba(20, 24, 32, 0.35);
  border-radius: 22px;
  padding: 38px 36px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  color: #fff;
  max-width: 540px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.miner-coin-box h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.miner-coin-box .highlight {
  color: #4ad7ff;
  font-weight: 700;
}

.miner-coin-box p {
  font-size: 1.08rem;
  color: #d1d7e0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .miner-coin-title {
    font-size: 1.9rem;
    margin-bottom: 24px;
  }
  .miner-coin-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .miner-coin-image {
    justify-content: center;
    margin-bottom: 0;
  }
  .miner-coin-content {
    align-items: center;
    text-align: center;
  }
  .miner-coin-box {
    padding: 24px 12px;
    max-width: 100%;
  }
}

.testimonials-section {
  width: 100%;
  background: none;
  padding: 90px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 36px auto;
  padding: 0 24px;
  text-align: center;
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.testimonials-subtitle {
  font-size: 1.18rem;
  color: #bfc3c9;
  font-weight: 400;
  margin-bottom: 0;
}

.testimonials-cards {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 36px;
  padding: 0 24px;
}

.testimonial-card {
  background: rgba(30, 32, 38, 0.32);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border: 1.2px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.testimonial-text {
  color: #e6e8ec;
  font-size: 1.08rem;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #23272f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.testimonial-name {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
}

.testimonial-desc {
  color: #bfc3c9;
  font-size: 0.98rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonials-title {
    font-size: 2rem;
  }
}

.footer-section {
  width: 100%;
  background: #181818;
  padding: 56px 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 0 32px 0 32px;
  flex-wrap: wrap;
}

.footer-newsletter {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 220px;
}

.footer-title {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0;
}

.footer-label {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-input {
  background: #232323;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 1rem;
  flex: 1 1 120px;
  outline: none;
  transition: box-shadow 0.2s;
}

.footer-input:focus {
  box-shadow: 0 0 0 2px #4ad7ff44;
}

.footer-submit {
  background: linear-gradient(90deg, #232323 60%, #444 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s;
  pointer-events: none;
}

.footer-submit:hover {
  background: linear-gradient(90deg, #444 60%, #232323 100%);
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #232323;
  border-radius: 50%;
  transition: background 0.2s;
  pointer-events: none;
}

.footer-social-icon img {
  width: 20px;
  height: 20px;
}

.footer-social-icon:hover {
  background: #222b3a;
}

.footer-links {
  flex: 2 1 340px;
  display: flex;
  gap: 64px;
  justify-content: center;
  min-width: 220px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-link {
  color: #e0e0e0;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
  pointer-events: none;
}

.footer-link:hover {
  color: #4ad7ff;
}

.footer-logo-area {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 120px;
}

.footer-logo-img {
  width: 142px;

  object-fit: contain;
}

.footer-logo-text {
  display: none;
}

.footer-logo-social {
  display: flex;
  gap: 16px;
}

.footer-logo-social svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transition: fill 0.2s;
}

.footer-logo-social svg:hover {
  fill: #4ad7ff;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 0 12px;
  }
  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
  .footer-logo-area {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 18px 0 10px 0;
  }
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 2px;
    text-align: center;
  }
  .footer-label {
    text-align: center;
    font-size: 0.98rem;
  }
  .footer-logo-img {
    max-width: 90px;
    margin: 10px auto 0 auto;
    display: block;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-link-group {
    width: 100%;
    gap: 2px;
    align-items: center;
  }
  .footer-link-title {
    font-size: 1rem;
  }
  .footer-link {
    font-size: 0.93rem;
  }
  .footer-form {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 2px;
    align-items: center;
  }
  .footer-input {
    width: 100%;
    font-size: 0.98rem;
    padding: 10px 12px;
  }
  .footer-submit {
    width: 100%;
    font-size: 0.98rem;
    padding: 10px 0;
  }
  .footer-social {
    justify-content: center;
    margin-top: 8px;
    gap: 18px;
  }
  .footer-social-icon {
    width: 38px;
    height: 38px;
  }
  .footer-social-icon svg,
  .footer-social-icon img {
    width: 24px;
    height: 24px;
  }
} 