/* ============================================================
   VERIXID — ABOUT & CONTACT PAGE CSS
   ============================================================ */

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section {
  width     : 100%;
  max-width : 620px;
  margin    : 2.5rem auto 0;
}

.about-label {
  font-size     : 0.75rem;
  font-weight   : 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color         : #0067b8;
  margin        : 0 0 0.375rem;
}

.about-title {
  font-size  : 1.1875rem;
  font-weight: 700;
  color      : #171717;
  margin     : 0 0 1.25rem;
}

.about-prose p {
  font-size  : 0.9rem;
  line-height: 1.8;
  color      : rgb(74, 74, 74);
  margin     : 0 0 1rem;
}

.about-prose p:last-child { margin-bottom: 0; }

/* Values grid */
.about-values {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 1rem;
  margin-top           : 1.25rem;
}

@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
}

.about-value {
  background   : #fff;
  border       : 1px solid var(--slate-200);
  border-radius: 10px;
  padding      : 1.25rem;
}

.about-value-title {
  font-size  : 0.875rem;
  font-weight: 700;
  color      : #171717;
  margin     : 0 0 0.5rem;
}

.about-value-desc {
  font-size  : 0.8375rem;
  line-height: 1.65;
  color      : rgb(74, 74, 74);
  margin     : 0;
}

/* CTA */
.about-cta {
  width        : 100%;
  max-width    : 620px;
  margin       : 3rem auto 0;
  text-align   : center;
  padding      : 2.5rem 1.5rem;
  background   : #fff;
  border       : 1px solid var(--slate-200);
  border-radius: 14px;
}

.about-cta-title {
  font-size  : 1.125rem;
  font-weight: 700;
  color      : #171717;
  margin     : 0 0 0.5rem;
}

.about-cta-desc {
  font-size : 0.875rem;
  color     : rgb(74, 74, 74);
  margin    : 0 0 1.5rem;
}

.about-cta-actions {
  display        : flex;
  justify-content: center;
  align-items    : center;
  gap            : 0.75rem;
  flex-wrap      : wrap;
}

.btn-cta-ghost {
  display        : inline-block;
  padding        : 0.75rem 1.5rem;
  background     : #0067b8;
  color          : #fff;
  font-weight    : 600;
  font-size      : 0.875rem;
  border         : 1px solid var(--slate-200);
  border-radius  : 8px;
  text-decoration: none;
  transition     : opacity 0.15s ease, transform 0.1s ease;
}

.btn-cta-ghost:hover {
  opacity   : 0.88;
  transform : translateY(-1px);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section {
  width     : 100%;
  max-width : 620px;
  margin    : 2rem auto 0;
}

.contact-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 1rem;
}

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

.contact-card {
  display        : flex;
  flex-direction : column;
  gap            : 0.375rem;
  background     : #fff;
  border         : 1px solid var(--slate-200);
  border-radius  : 12px;
  padding        : 1.25rem;
  text-decoration: none;
  transition     : border-color 0.15s ease, transform 0.1s ease;
}

.contact-card-icon {
  width        : 1.5rem;
  height       : 1.5rem;
  color        : #0067b8;
  margin-bottom: 0.5rem;
}

.contact-card-icon svg {
  width : 100%;
  height: 100%;
}

.contact-card-title {
  font-size  : 0.9rem;
  font-weight: 700;
  color      : #171717;
  margin     : 0;
}

.contact-card-email {
  font-size   : 0.8rem;
  font-family : 'JetBrains Mono', monospace;
  color       : #0067b8;
  margin      : 0;
}

.contact-card-desc {
  font-size  : 0.8375rem;
  line-height: 1.6;
  color      : rgb(74, 74, 74);
  margin     : 0.25rem 0 0;
  flex       : 1;
}

.contact-card-sla {
  font-size  : 0.75rem;
  color      : var(--color-text-muted, #555);
  margin     : 0.375rem 0 0;
  padding-top: 0.375rem;
  border-top : 1px solid rgb(182, 182, 182));
}

/* Notice */
.contact-notice {
  width     : 100%;
  max-width : 620px;
  margin    : 1.5rem auto 0;
  text-align: center;
}

.contact-notice p {
  font-size  : 0.8rem;
  line-height: 1.7;
  color      : var(--color-text-muted, #555);
  margin     : 0;
}

/* Contact grid — 2 card centered */
.contact-grid--centered {
  max-width : 520px;
  margin    : 0 auto;
}

/* WA icon — green */
.contact-card-icon--wa {
  color: #25D366;
}