.contact-page {
  background: #0b1020;
  color: #cfd7e7;
}

.contact-shell {
  color: #cfd7e7;
}

.contact-hero {
  background: radial-gradient(circle at 18% 22%, rgba(0, 194, 199, 0.16), transparent 36%), radial-gradient(circle at 82% 18%, rgba(202, 154, 228, 0.14), transparent 30%), linear-gradient(170deg, #0c2f4e 0%, #0a1f39 46%, #081227 100%);
  padding: 0px 0 0px;
  text-align: left;
}

.hero-content--center {
  margin: 0 auto;
}

.hero-contact-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(207, 215, 231, 0.2);
  display: flex;
  gap: 32px;
  justify-content: flex-start;
}

.hero-contact-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.hero-contact-info a {
  color: #00c2c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero-contact-info a:hover {
  color: #ca9ae4;
}

.contact-hero .hero-title {
  font-size: 42px;
}

.contact-options {
  background: #0b1020;
  padding: 64px 0 78px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  position: relative;
  background: #0f1729;
  border: 1px solid #1f2a40;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

.contact-card.mint { border-color: rgba(0, 194, 199, 0.28); }
.contact-card.lilac { border-color: rgba(181, 141, 213, 0.24); }
.contact-card.blue { border-color: rgba(0, 150, 214, 0.26); }
.contact-card.navy { border-color: rgba(79, 168, 255, 0.22); }
.contact-card.dark { border-color: rgba(255, 255, 255, 0.08); }
.contact-card.light { border-color: rgba(255, 255, 255, 0.18); }

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00C2A8;
  font-weight: 800;
  font-size: 18px;
}

.contact-icon__svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #8ea2c0;
  font-size: 12px;
  font-weight: 800;
}

.contact-card h3 {
  margin: 2px 0 6px;
  font-size: 22px;
  color: #f7f9fb;
  font-weight: 800;
}

.contact-copy {
  margin: 0;
  color: #cfd7e7;
  line-height: 1.6;
  min-height: 56px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid var(--accent-teal);
  color: #041423;
  background: var(--accent-teal);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #00d6db;
  border-color: #00d6db;
  transform: translateY(-1px);
}

.contact-btn__icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.contact-btn.ghost {
  background: transparent;
  color: #f7f9fb;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

.contact-faq {
  background: #0b1020;
  padding: 72px 0 88px;
}

.faq-title {
  margin: 0 0 28px;
  font-size: 30px;
  color: #f7f9fb;
  text-align: center;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.faq-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-teal);
}

.faq-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero .hero-title {
    font-size: 34px;
  }
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-hero {
    padding: 72px 0 82px;
  }

  .contact-hero .hero-title {
    font-size: 30px;
  }
}
