/* Make content full-width sections inside the content box */
.pPage--contact .pContent{ padding: 0; overflow:hidden; }
.pPage--contact .pContent > section{ padding: 18px; }
.pPage--contact .pContent > section + section{ border-top: 1px solid rgba(11,31,51,.08); }

.ctH2{
  margin: 0 0 10px;
  font-weight: 1000;
  color: var(--navy);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.25;
}
.ctH3{
  margin: 0 0 8px;
  font-weight: 1000;
  color: rgba(11,31,51,.92);
  font-size: 15px;
}
.ctP, .ctLead{
  margin: 0;
  color: rgba(43,46,52,.78);
  font-weight: 900;
  line-height: 1.95;
  font-size: 14px;
}
.ctLead{ margin-bottom: 12px; }

/* Actions / Buttons */
.ctActions{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }
.ctActions--center{ justify-content:center; }

.ctBtn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 18px;
  text-decoration:none;
  font-weight: 1000;
  border: 1px solid rgba(11,31,51,.12);
  background: rgba(11,31,51,.04);
  color: rgba(11,31,51,.92);
}
.ctBtn--gold{
  border:0;
  background: linear-gradient(135deg, rgba(201,162,77,1), rgba(160,126,55,1));
  color:#0b1f33;
}
.ctBtn--ghost{
  background: rgba(255,255,255,.86);
}

.ctLink{
  display:inline-flex;
  align-items:center;
  margin-inline-start: 10px;
  font-weight: 1000;
  text-decoration:none;
  color: rgba(11,31,51,.92);
  border-bottom: 1px dashed rgba(201,162,77,.55);
}
.ctLink:hover{ border-bottom-style: solid; }

.ctPills{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
.ctPill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,31,51,.04);
  border: 1px solid rgba(11,31,51,.10);
  font-weight: 1000;
  font-size: 12.5px;
  color: rgba(11,31,51,.86);
}

/* Intro grid */
.ctIntro__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 980px){
  .ctIntro__grid{ grid-template-columns: 1fr; }
}

/* Card */
.ctCard{
  border-radius: 26px;
  background: rgba(11,31,51,.96);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 120px rgba(0,0,0,.14);
  padding: 16px;
}
.ctCard .ctH3{ color: rgba(255,255,255,.96); }
.ctRow{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ctRow:last-of-type{ border-bottom:0; }
.ctK{ color: rgba(255,255,255,.72); font-weight: 1000; font-size: 13px; }
.ctV{ color: rgba(255,255,255,.92); font-weight: 1000; font-size: 13px; text-decoration:none; }
.ctV:hover{ color: rgba(201,162,77,.95); }

.ctMicro{
  margin: 12px 0 0;
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 900;
}
.ctMiniLinks{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }
.ctMiniLinks a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight: 1000;
  font-size: 12.5px;
  border-bottom: 1px dashed rgba(201,162,77,.45);
}
.ctMiniLinks a:hover{ border-bottom-style: solid; }

/* Checklist grid */
.ctGrid3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
@media (max-width: 980px){ .ctGrid3{ grid-template-columns: 1fr; } }
.ctItem{
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11,31,51,.10);
  box-shadow: 0 22px 80px rgba(0,0,0,.08);
  padding: 14px;
}

.ctInlineCta{ display:flex; flex-wrap:wrap; align-items:center; gap: 10px; margin-top: 12px; }

/* Mini form */
.ctForm{
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,31,51,.10);
  box-shadow: 0 26px 90px rgba(0,0,0,.10);
  padding: 16px;
}
.ctFields{ display:grid; gap: 12px; }
.ctField{ display:grid; gap: 8px; }
.ctLabel{ font-weight: 1000; font-size: 12.5px; color: rgba(11,31,51,.86); }
.ctInput{
  width:100%;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(11,31,51,.12);
  background: rgba(11,31,51,.03);
  outline: none;
  font-weight: 900;
  color: rgba(11,31,51,.92);
}
.ctTextarea{ min-height: 90px; resize: vertical; }

.ctRow2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px){ .ctRow2{ grid-template-columns: 1fr; } }

.ctSubmit{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }
@media (max-width: 520px){ .ctSubmit{ grid-template-columns: 1fr; } }

/* Areas */
.ctAreaGrid{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 12px; }
@media (max-width: 780px){ .ctAreaGrid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px){ .ctAreaGrid{ grid-template-columns: 1fr; } }

.ctArea{
  padding: 12px 14px;
  border-radius: 20px;
  text-decoration:none;
  font-weight: 1000;
  color: rgba(11,31,51,.92);
  border: 1px solid rgba(11,31,51,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 80px rgba(0,0,0,.08);
}

/* FAQ */
.ctFaqGrid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
@media (max-width: 780px){ .ctFaqGrid{ grid-template-columns: 1fr; } }
.ctFaq{
  border-radius: 22px;
  background: rgba(201,162,77,.07);
  border: 1px solid rgba(201,162,77,.18);
  padding: 14px;
}

/* Final CTA */
.ctFinal__box{
  border-radius: 26px;
  border: 1px solid rgba(11,31,51,.10);
  background: radial-gradient(800px 420px at 80% 10%, rgba(201,162,77,.12), transparent 55%),
              rgba(255,255,255,.84);
  box-shadow: 0 26px 90px rgba(0,0,0,.10);
  padding: 16px;
  text-align:center;
}
