/* =========================================================
   CONTACT PAGE — tuned to the 780 rail
   ========================================================= */

#contact.contact-page {
  padding: 0; /* gutter comes from #middle_column */
}
/* Stack cards with proper breathing room from nav */
#contact .contact-panels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.8rem; /* small space under nav */
}
/* Card look matches rest of site (heavier border) */
#contact .contact-card {
  background: #fff;
  border: 0.2rem solid #000;
  border-radius: 1.6rem;
    padding: 1.2rem 3rem 2.2rem; /* top, left/right, bottom */*/
  box-sizing: border-box;
}
/* Titles */
#contact .contact-card__title {
  font-size: 3rem;
  font-weight: 900;
 /* margin-bottom: 1.2rem;*/
}
/* Helper text */
#contact .contact-helper {
  font-size: 1.9rem;
  line-height: 2.6rem;
  margin-bottom: 1.2rem;
}
/* Email */
#contact .contact-email {
  font-size: 2.2rem;
  font-weight: 900;
}
/* List spacing feels better */
#contact .contact-list {
  margin: 0.6rem 0 0 2.4rem;
}
#contact .contact-list li {
  font-size: 1.9rem;
  line-height: 2.6rem;
  margin: 0.8rem 0;
}
/* CTA separation */
#contact .contact-actions {
  margin-top: 2.4rem;
}
/* Button matches homepage button feel */
#contact .contact-cta {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.6rem 2.4rem;
  border-radius: 1rem;
  background: #007acc;
  color: #fff !important;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
}
#contact .contact-cta:hover {
  background: #005fa3;
}
/* allow copying email */
#contact, #contact * {
  user-select: text !important;
}

/* =========================================================
   EXTERNAL HOMEPAGE (marketing)
   ========================================================= */

.section {
  text-align: center;
  padding: 3rem 2rem;
  margin: 0 auto 1rem;
}
.section h1 {
  font-size: 3.8rem;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.section h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.subhead {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #444;
}
.sub-description {
  font-size: 2rem;
  max-width: 60rem;
  margin: 0 auto 0.5rem;
  line-height: 1.4;
  color: #333;
}
.support-line {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.cta-button {
  display: inline-block;
  background-color: #0070c1;
  color: #fff !important;
  padding: 1.4rem 2.8rem;
  font-size: 2.5rem;
  font-weight: 600;
  border: none;
  border-radius: 0.8rem;
  text-decoration: none;
  margin: 2rem auto;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #005fa3;
}
.trial-note {
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.section-divider {
  border: none;
  height: 0.1rem;
  background-color: #ddd;
  margin: 1rem auto;
  width: 80%;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  text-align: left;
  margin: 0 auto;
  max-width: 80rem;
  font-size: 1.8rem;
  line-height: 1.6;
}
.faq-item, .faq-item p, .faq-item strong {
  font-size: 2rem;
  line-height: 1.8;
}
.faq-item {
  margin-bottom: 2rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
.faq-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #222;
}
.faq-item p {
  margin: 0;
  color: #444;
}
.faq-subhead {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 0.1rem solid #e2e2e2;
}

/* =========================================================
   TOP PANELS
   ========================================================= */

.home_panels {
  width: 100%;
  margin: 0 auto 1.6rem auto;
  box-sizing: border-box;
}

.home_panel {
  width: 100%;
  /*border: 0.2rem solid #000;
  border-radius: 1.4rem;*/
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
}

/* Bullets = primary content */
.home_panel__bullets {
  margin: 0 0 2rem 0;
  padding-left: 2rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

.home_panel__bullets li {
  margin-bottom: 0.6rem;
}

/* CTA centered cleanly */
.home_panel__cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.home_panel h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
}
.home_panel__intro{
  font-size: 1.9rem;
  margin-bottom: 2rem;
}

/* Trial note under CTA (kept later so it wins over earlier .trial-note) */
.trial-note{
  margin-top: 1.2rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 800
}
